diff --git a/miniconda3/bin/normalizer b/miniconda3/bin/normalizer new file mode 100644 index 0000000000000000000000000000000000000000..4395cb4b536f769a2427dd7b380abcb8c9531ac2 --- /dev/null +++ b/miniconda3/bin/normalizer @@ -0,0 +1,11 @@ +#!/mnt/bn/bohanzhainas1/jiashuo/miniconda3/bin/python + +# -*- coding: utf-8 -*- +import re +import sys + +from charset_normalizer.cli import cli_detect + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(cli_detect()) diff --git a/miniconda3/bin/pcre2-config b/miniconda3/bin/pcre2-config new file mode 100644 index 0000000000000000000000000000000000000000..e2a1a1946d6fc4b6074e3906c33789ab0c43155a --- /dev/null +++ b/miniconda3/bin/pcre2-config @@ -0,0 +1,121 @@ +#!/bin/sh + +prefix=/mnt/bn/bohanzhainas1/jiashuo/miniconda3 +exec_prefix=${prefix} +exec_prefix_set=no + +cflags="[--cflags]" +libs= + +if test yes = yes ; then + libs="[--libs16] $libs" +fi + +if test yes = yes ; then + libs="[--libs32] $libs" +fi + +if test yes = yes ; then + libs="[--libs8] [--libs-posix] $libs" + cflags="$cflags [--cflags-posix]" +fi + +usage="Usage: pcre2-config [--prefix] [--exec-prefix] [--version] $libs $cflags" + +if test $# -eq 0; then + echo "${usage}" 1>&2 + exit 1 +fi + +libR= +case `uname -s` in + *SunOS*) + libR=" -R${exec_prefix}/lib" + ;; + *BSD*) + libR=" -Wl,-R${exec_prefix}/lib" + ;; +esac + +libS= +if test ${exec_prefix}/lib != /usr/lib ; then + libS=-L${exec_prefix}/lib +fi + +while test $# -gt 0; do + case "$1" in + -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; + *) optarg= ;; + esac + + case $1 in + --prefix=*) + prefix=$optarg + if test $exec_prefix_set = no ; then + exec_prefix=$optarg + fi + ;; + --prefix) + echo $prefix + ;; + --exec-prefix=*) + exec_prefix=$optarg + exec_prefix_set=yes + ;; + --exec-prefix) + echo $exec_prefix + ;; + --version) + echo 10.46 + ;; + --cflags) + if test ${prefix}/include != /usr/include ; then + includes=-I${prefix}/include + fi + echo $includes + ;; + --cflags-posix) + if test yes = yes ; then + if test ${prefix}/include != /usr/include ; then + includes=-I${prefix}/include + fi + echo $includes -DPCRE2POSIX_SHARED + else + echo "${usage}" 1>&2 + fi + ;; + --libs-posix) + if test yes = yes ; then + echo $libS$libR -lpcre2-posix -lpcre2-8 + else + echo "${usage}" 1>&2 + fi + ;; + --libs8) + if test yes = yes ; then + echo $libS$libR -lpcre2-8 + else + echo "${usage}" 1>&2 + fi + ;; + --libs16) + if test yes = yes ; then + echo $libS$libR -lpcre2-16 + else + echo "${usage}" 1>&2 + fi + ;; + --libs32) + if test yes = yes ; then + echo $libS$libR -lpcre2-32 + else + echo "${usage}" 1>&2 + fi + ;; + *) + echo "${usage}" 1>&2 + exit 1 + ;; + esac + shift +done diff --git a/miniconda3/bin/pip b/miniconda3/bin/pip new file mode 100644 index 0000000000000000000000000000000000000000..cf7468697086983d123ba2a0c14097033b604cf6 --- /dev/null +++ b/miniconda3/bin/pip @@ -0,0 +1,10 @@ +#!/mnt/bn/bohanzhainas1/jiashuo/miniconda3/bin/python3.13 +# -*- coding: utf-8 -*- +import re +import sys + +from pip._internal.cli.main import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/miniconda3/bin/pip3 b/miniconda3/bin/pip3 new file mode 100644 index 0000000000000000000000000000000000000000..cf7468697086983d123ba2a0c14097033b604cf6 --- /dev/null +++ b/miniconda3/bin/pip3 @@ -0,0 +1,10 @@ +#!/mnt/bn/bohanzhainas1/jiashuo/miniconda3/bin/python3.13 +# -*- coding: utf-8 -*- +import re +import sys + +from pip._internal.cli.main import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/miniconda3/bin/pkgdata b/miniconda3/bin/pkgdata new file mode 100644 index 0000000000000000000000000000000000000000..6d3d740f7d421d6c24dd0669d9a5de4921a98665 Binary files /dev/null and b/miniconda3/bin/pkgdata differ diff --git a/miniconda3/bin/pydoc b/miniconda3/bin/pydoc new file mode 100644 index 0000000000000000000000000000000000000000..fa6857fd4b52eb6b9ff19ce6b320a8c32c5635ec --- /dev/null +++ b/miniconda3/bin/pydoc @@ -0,0 +1,5 @@ +#!/mnt/bn/bohanzhainas1/jiashuo/miniconda3/bin/python3.13 + +import pydoc +if __name__ == '__main__': + pydoc.cli() diff --git a/miniconda3/bin/pydoc3 b/miniconda3/bin/pydoc3 new file mode 100644 index 0000000000000000000000000000000000000000..fa6857fd4b52eb6b9ff19ce6b320a8c32c5635ec --- /dev/null +++ b/miniconda3/bin/pydoc3 @@ -0,0 +1,5 @@ +#!/mnt/bn/bohanzhainas1/jiashuo/miniconda3/bin/python3.13 + +import pydoc +if __name__ == '__main__': + pydoc.cli() diff --git a/miniconda3/bin/pydoc3.13 b/miniconda3/bin/pydoc3.13 new file mode 100644 index 0000000000000000000000000000000000000000..fa6857fd4b52eb6b9ff19ce6b320a8c32c5635ec --- /dev/null +++ b/miniconda3/bin/pydoc3.13 @@ -0,0 +1,5 @@ +#!/mnt/bn/bohanzhainas1/jiashuo/miniconda3/bin/python3.13 + +import pydoc +if __name__ == '__main__': + pydoc.cli() diff --git a/miniconda3/bin/pygmentize b/miniconda3/bin/pygmentize new file mode 100644 index 0000000000000000000000000000000000000000..671920397c150d69e5110584865d16fbc5045f18 --- /dev/null +++ b/miniconda3/bin/pygmentize @@ -0,0 +1,11 @@ +#!/mnt/bn/bohanzhainas1/jiashuo/miniconda3/bin/python + +# -*- coding: utf-8 -*- +import re +import sys + +from pygments.cmdline import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/miniconda3/bin/pysemver b/miniconda3/bin/pysemver new file mode 100644 index 0000000000000000000000000000000000000000..6df0a4b06859cde32fa31fa55e9d26fb9a05ca77 --- /dev/null +++ b/miniconda3/bin/pysemver @@ -0,0 +1,11 @@ +#!/mnt/bn/bohanzhainas1/jiashuo/miniconda3/bin/python + +# -*- coding: utf-8 -*- +import re +import sys + +from semver.cli import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/miniconda3/bin/python3-config b/miniconda3/bin/python3-config new file mode 100644 index 0000000000000000000000000000000000000000..9d16c721d8d453a773ae8b83496ec122a7669ffa --- /dev/null +++ b/miniconda3/bin/python3-config @@ -0,0 +1,122 @@ +#!/bin/sh + +# Keep this script in sync with python-config.in + +exit_with_usage () +{ + local usage + usage="Usage: $0 --prefix|--exec-prefix|--includes|--libs|--cflags|--ldflags|--extension-suffix|--help|--abiflags|--configdir|--embed" + if [ "$1" -eq 0 ]; then + echo "$usage" + else + echo "$usage" >&2 + fi + exit $1 +} + +if [ "$1" = "" ] ; then + exit_with_usage 1 +fi + +# Returns the actual prefix where this script was installed to. +installed_prefix () +{ + RESULT=$(dirname $(cd $(dirname "$1") && pwd -P)) + if which readlink >/dev/null 2>&1 ; then + if readlink -f "$RESULT" >/dev/null 2>&1; then + RESULT=$(readlink -f "$RESULT") + fi + fi + echo $RESULT +} + +prefix_real=$(installed_prefix "$0") + +# Use sed to fix paths from their built-to locations to their installed-to +# locations. Keep prefix & exec_prefix using their original values in case +# they are referenced in other configure variables, to prevent double +# substitution, issue #22140. +prefix="/mnt/bn/bohanzhainas1/jiashuo/miniconda3" +exec_prefix="${prefix}" +exec_prefix_real=${prefix_real} +includedir=$(echo "${prefix}/include" | sed "s#$prefix#$prefix_real#") +libdir=$(echo "${exec_prefix}/lib" | sed "s#$prefix#$prefix_real#") +CFLAGS=$(echo "-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O3 -ffunction-sections -pipe -isystem /mnt/bn/bohanzhainas1/jiashuo/miniconda3/include -fdebug-prefix-map=/home/task_177194891265482/croot/python-split_1771948977002/work=/usr/local/src/conda/python-3.13.12 -fdebug-prefix-map=/mnt/bn/bohanzhainas1/jiashuo/miniconda3=/usr/local/src/conda-prefix -fuse-linker-plugin -ffat-lto-objects -flto-partition=none -flto" | sed "s#$prefix#$prefix_real#") +VERSION="3.13" +LIBM="-lm" +LIBC="" +SYSLIBS="$LIBM $LIBC" +ABIFLAGS="" +LIBS=" -lpthread -ldl -lutil $SYSLIBS" +LIBS_EMBED="-lpython${VERSION}${ABIFLAGS} -lpthread -ldl -lutil $SYSLIBS" +BASECFLAGS=" -fno-strict-overflow -Wsign-compare" +LDLIBRARY="libpython${VERSION}${ABIFLAGS}.a" +OPT="-DNDEBUG -O3 -Wall" +PY_ENABLE_SHARED="0" +LDVERSION="${VERSION}${ABIFLAGS}" +LIBDEST=${prefix_real}/lib/python${VERSION} +LIBPL=$(echo "${prefix}/lib/python3.13/config-${VERSION}${ABIFLAGS}-x86_64-linux-gnu" | sed "s#$prefix#$prefix_real#") +SO=".cpython-313-x86_64-linux-gnu.so" +PYTHONFRAMEWORK="" +INCDIR="-I$includedir/python${VERSION}${ABIFLAGS}" +PLATINCDIR="-I$includedir/python${VERSION}${ABIFLAGS}" +PY_EMBED=0 + +# Scan for --help or unknown argument. +for ARG in $* +do + case $ARG in + --help) + exit_with_usage 0 + ;; + --embed) + PY_EMBED=1 + ;; + --prefix|--exec-prefix|--includes|--libs|--cflags|--ldflags|--extension-suffix|--abiflags|--configdir) + ;; + *) + exit_with_usage 1 + ;; + esac +done + +if [ $PY_EMBED = 1 ] ; then + LIBS="$LIBS_EMBED" +fi + +for ARG in "$@" +do + case "$ARG" in + --prefix) + echo "$prefix_real" + ;; + --exec-prefix) + echo "$exec_prefix_real" + ;; + --includes) + echo "$INCDIR $PLATINCDIR" + ;; + --cflags) + echo "$INCDIR $PLATINCDIR $BASECFLAGS $CFLAGS $OPT" + ;; + --libs) + echo "$LIBS" + ;; + --ldflags) + LIBPLUSED= + if [ "$PY_ENABLE_SHARED" = "0" ] ; then + LIBPLUSED="-L$LIBPL" + fi + echo "$LIBPLUSED -L$libdir $LIBS" + ;; + --extension-suffix) + echo "$SO" + ;; + --abiflags) + echo "$ABIFLAGS" + ;; + --configdir) + echo "$LIBPL" + ;; +esac +done diff --git a/miniconda3/bin/python3.13-config b/miniconda3/bin/python3.13-config new file mode 100644 index 0000000000000000000000000000000000000000..9d16c721d8d453a773ae8b83496ec122a7669ffa --- /dev/null +++ b/miniconda3/bin/python3.13-config @@ -0,0 +1,122 @@ +#!/bin/sh + +# Keep this script in sync with python-config.in + +exit_with_usage () +{ + local usage + usage="Usage: $0 --prefix|--exec-prefix|--includes|--libs|--cflags|--ldflags|--extension-suffix|--help|--abiflags|--configdir|--embed" + if [ "$1" -eq 0 ]; then + echo "$usage" + else + echo "$usage" >&2 + fi + exit $1 +} + +if [ "$1" = "" ] ; then + exit_with_usage 1 +fi + +# Returns the actual prefix where this script was installed to. +installed_prefix () +{ + RESULT=$(dirname $(cd $(dirname "$1") && pwd -P)) + if which readlink >/dev/null 2>&1 ; then + if readlink -f "$RESULT" >/dev/null 2>&1; then + RESULT=$(readlink -f "$RESULT") + fi + fi + echo $RESULT +} + +prefix_real=$(installed_prefix "$0") + +# Use sed to fix paths from their built-to locations to their installed-to +# locations. Keep prefix & exec_prefix using their original values in case +# they are referenced in other configure variables, to prevent double +# substitution, issue #22140. +prefix="/mnt/bn/bohanzhainas1/jiashuo/miniconda3" +exec_prefix="${prefix}" +exec_prefix_real=${prefix_real} +includedir=$(echo "${prefix}/include" | sed "s#$prefix#$prefix_real#") +libdir=$(echo "${exec_prefix}/lib" | sed "s#$prefix#$prefix_real#") +CFLAGS=$(echo "-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O3 -ffunction-sections -pipe -isystem /mnt/bn/bohanzhainas1/jiashuo/miniconda3/include -fdebug-prefix-map=/home/task_177194891265482/croot/python-split_1771948977002/work=/usr/local/src/conda/python-3.13.12 -fdebug-prefix-map=/mnt/bn/bohanzhainas1/jiashuo/miniconda3=/usr/local/src/conda-prefix -fuse-linker-plugin -ffat-lto-objects -flto-partition=none -flto" | sed "s#$prefix#$prefix_real#") +VERSION="3.13" +LIBM="-lm" +LIBC="" +SYSLIBS="$LIBM $LIBC" +ABIFLAGS="" +LIBS=" -lpthread -ldl -lutil $SYSLIBS" +LIBS_EMBED="-lpython${VERSION}${ABIFLAGS} -lpthread -ldl -lutil $SYSLIBS" +BASECFLAGS=" -fno-strict-overflow -Wsign-compare" +LDLIBRARY="libpython${VERSION}${ABIFLAGS}.a" +OPT="-DNDEBUG -O3 -Wall" +PY_ENABLE_SHARED="0" +LDVERSION="${VERSION}${ABIFLAGS}" +LIBDEST=${prefix_real}/lib/python${VERSION} +LIBPL=$(echo "${prefix}/lib/python3.13/config-${VERSION}${ABIFLAGS}-x86_64-linux-gnu" | sed "s#$prefix#$prefix_real#") +SO=".cpython-313-x86_64-linux-gnu.so" +PYTHONFRAMEWORK="" +INCDIR="-I$includedir/python${VERSION}${ABIFLAGS}" +PLATINCDIR="-I$includedir/python${VERSION}${ABIFLAGS}" +PY_EMBED=0 + +# Scan for --help or unknown argument. +for ARG in $* +do + case $ARG in + --help) + exit_with_usage 0 + ;; + --embed) + PY_EMBED=1 + ;; + --prefix|--exec-prefix|--includes|--libs|--cflags|--ldflags|--extension-suffix|--abiflags|--configdir) + ;; + *) + exit_with_usage 1 + ;; + esac +done + +if [ $PY_EMBED = 1 ] ; then + LIBS="$LIBS_EMBED" +fi + +for ARG in "$@" +do + case "$ARG" in + --prefix) + echo "$prefix_real" + ;; + --exec-prefix) + echo "$exec_prefix_real" + ;; + --includes) + echo "$INCDIR $PLATINCDIR" + ;; + --cflags) + echo "$INCDIR $PLATINCDIR $BASECFLAGS $CFLAGS $OPT" + ;; + --libs) + echo "$LIBS" + ;; + --ldflags) + LIBPLUSED= + if [ "$PY_ENABLE_SHARED" = "0" ] ; then + LIBPLUSED="-L$LIBPL" + fi + echo "$LIBPLUSED -L$libdir $LIBS" + ;; + --extension-suffix) + echo "$SO" + ;; + --abiflags) + echo "$ABIFLAGS" + ;; + --configdir) + echo "$LIBPL" + ;; +esac +done diff --git a/miniconda3/bin/recode-sr-latin b/miniconda3/bin/recode-sr-latin new file mode 100644 index 0000000000000000000000000000000000000000..0d3eecf5ca4331e0fa230c07543e002cf4394996 Binary files /dev/null and b/miniconda3/bin/recode-sr-latin differ diff --git a/miniconda3/bin/repo2solv b/miniconda3/bin/repo2solv new file mode 100644 index 0000000000000000000000000000000000000000..d96af3baa5b641501036d2045317d5e83cfc884e Binary files /dev/null and b/miniconda3/bin/repo2solv differ diff --git a/miniconda3/bin/reset b/miniconda3/bin/reset new file mode 100644 index 0000000000000000000000000000000000000000..7bd1d42789af918f9142590b2bdd5003cbbbedc6 Binary files /dev/null and b/miniconda3/bin/reset differ diff --git a/miniconda3/bin/sqlite3_analyzer b/miniconda3/bin/sqlite3_analyzer new file mode 100644 index 0000000000000000000000000000000000000000..bdb8c967181ba45160c3417c625b32c1270daedf --- /dev/null +++ b/miniconda3/bin/sqlite3_analyzer @@ -0,0 +1,899 @@ +#! /bin/sh +# restart with tclsh \ +exec tclsh "$0" ${1+"$@"} +package require sqlite3 + +# Run this TCL script using an SQLite-enabled TCL interpreter to get a report +# on how much disk space is used by a particular data to actually store data +# versus how much space is unused. +# +# The dbstat virtual table is required. +# + +if {[catch { + +# Argument $tname is the name of a table within the database opened by +# database handle [db]. Return true if it is a WITHOUT ROWID table, or +# false otherwise. +# +proc is_without_rowid {tname} { + set t [string map {' ''} $tname] + db eval "PRAGMA index_list = '$t'" o { + if {$o(origin) == "pk"} { + set n $o(name) + if {0==[db one { SELECT count(*) FROM sqlite_schema WHERE name=$n }]} { + return 1 + } + } + } + return 0 +} + +# Read and run TCL commands from standard input. Used to implement +# the --tclsh option. +# +proc tclsh {} { + set line {} + while {![eof stdin]} { + if {$line!=""} { + puts -nonewline "> " + } else { + puts -nonewline "% " + } + flush stdout + append line [gets stdin] + if {[info complete $line]} { + if {[catch {uplevel #0 $line} result]} { + puts stderr "Error: $result" + } elseif {$result!=""} { + puts $result + } + set line {} + } else { + append line \n + } + } +} + + +# Get the name of the database to analyze +# +proc usage {} { + set argv0 [file rootname [file tail [info script]]] + puts stderr "Usage: $argv0 ?--pageinfo? ?--stats? database-filename" + puts stderr { +Analyze the SQLite3 database file specified by the "database-filename" +argument and output a report detailing size and storage efficiency +information for the database and its constituent tables and indexes. + +Options: + + --pageinfo Show how each page of the database-file is used + + --stats Output SQL text that creates a new database containing + statistics about the database that was analyzed + + --tclsh Run the built-in TCL interpreter interactively (for debugging) + + --version Show the version number of SQLite +} + exit 1 +} +set file_to_analyze {} +set flags(-pageinfo) 0 +set flags(-stats) 0 +set flags(-debug) 0 +append argv {} +foreach arg $argv { + if {[regexp {^-+pageinfo$} $arg]} { + set flags(-pageinfo) 1 + } elseif {[regexp {^-+stats$} $arg]} { + set flags(-stats) 1 + } elseif {[regexp {^-+debug$} $arg]} { + set flags(-debug) 1 + } elseif {[regexp {^-+tclsh$} $arg]} { + tclsh + exit 0 + } elseif {[regexp {^-+version$} $arg]} { + sqlite3 mem :memory: + puts [mem one {SELECT sqlite_version()||' '||sqlite_source_id()}] + mem close + exit 0 + } elseif {[regexp {^-} $arg]} { + puts stderr "Unknown option: $arg" + usage + } elseif {$file_to_analyze!=""} { + usage + } else { + set file_to_analyze $arg + } +} +if {$file_to_analyze==""} usage +set root_filename $file_to_analyze +regexp {^file:(//)?([^?]*)} $file_to_analyze all x1 root_filename +if {![file exists $root_filename]} { + puts stderr "No such file: $root_filename" + exit 1 +} +if {![file readable $root_filename]} { + puts stderr "File is not readable: $root_filename" + exit 1 +} +set true_file_size [file size $root_filename] +if {$true_file_size<512} { + puts stderr "Empty or malformed database: $root_filename" + exit 1 +} + +# Compute the total file size assuming test_multiplexor is being used. +# Assume that SQLITE_ENABLE_8_3_NAMES might be enabled +# +set extension [file extension $root_filename] +set pattern $root_filename +append pattern {[0-3][0-9][0-9]} +foreach f [glob -nocomplain $pattern] { + incr true_file_size [file size $f] + set extension {} +} +if {[string length $extension]>=2 && [string length $extension]<=4} { + set pattern [file rootname $root_filename] + append pattern {.[0-3][0-9][0-9]} + foreach f [glob -nocomplain $pattern] { + incr true_file_size [file size $f] + } +} + +# Open the database +# +if {[catch {sqlite3 db $file_to_analyze -uri 1} msg]} { + puts stderr "error trying to open $file_to_analyze: $msg" + exit 1 +} +if {$flags(-debug)} { + proc dbtrace {txt} {puts $txt; flush stdout;} + db trace ::dbtrace +} + +# Make sure all required compile-time options are available +# +if {![db exists {SELECT 1 FROM pragma_compile_options + WHERE compile_options='ENABLE_DBSTAT_VTAB'}]} { + puts "The SQLite database engine linked with this application\ + lacks required capabilities. Recompile using the\ + -DSQLITE_ENABLE_DBSTAT_VTAB compile-time option to fix\ + this problem." + exit 1 +} + +db eval {SELECT count(*) FROM sqlite_schema} +set pageSize [expr {wide([db one {PRAGMA page_size}])}] + +if {$flags(-pageinfo)} { + db eval {CREATE VIRTUAL TABLE temp.stat USING dbstat} + db eval {SELECT name, path, pageno FROM temp.stat ORDER BY pageno} { + puts "$pageno $name $path" + } + exit 0 +} +if {$flags(-stats)} { + db eval {CREATE VIRTUAL TABLE temp.stat USING dbstat} + puts "BEGIN;" + puts "CREATE TABLE stats(" + puts " name STRING, /* Name of table or index */" + puts " path INTEGER, /* Path to page from root */" + puts " pageno INTEGER, /* Page number */" + puts " pagetype STRING, /* 'internal', 'leaf' or 'overflow' */" + puts " ncell INTEGER, /* Cells on page (0 for overflow) */" + puts " payload INTEGER, /* Bytes of payload on this page */" + puts " unused INTEGER, /* Bytes of unused space on this page */" + puts " mx_payload INTEGER, /* Largest payload size of all cells */" + puts " pgoffset INTEGER, /* Offset of page in file */" + puts " pgsize INTEGER /* Size of the page */" + puts ");" + db eval {SELECT quote(name) || ',' || + quote(path) || ',' || + quote(pageno) || ',' || + quote(pagetype) || ',' || + quote(ncell) || ',' || + quote(payload) || ',' || + quote(unused) || ',' || + quote(mx_payload) || ',' || + quote(pgoffset) || ',' || + quote(pgsize) AS x FROM stat} { + puts "INSERT INTO stats VALUES($x);" + } + puts "COMMIT;" + exit 0 +} + + +# In-memory database for collecting statistics. This script loops through +# the tables and indices in the database being analyzed, adding a row for each +# to an in-memory database (for which the schema is shown below). It then +# queries the in-memory db to produce the space-analysis report. +# +sqlite3 mem :memory: +if {$flags(-debug)} { + proc dbtrace {txt} {puts $txt; flush stdout;} + mem trace ::dbtrace +} +set tabledef {CREATE TABLE space_used( + name clob, -- Name of a table or index in the database file + tblname clob, -- Name of associated table + is_index boolean, -- TRUE if it is an index, false for a table + is_without_rowid boolean, -- TRUE if WITHOUT ROWID table + nentry int, -- Number of entries in the BTree + leaf_entries int, -- Number of leaf entries + depth int, -- Depth of the b-tree + payload int, -- Total amount of data stored in this table or index + ovfl_payload int, -- Total amount of data stored on overflow pages + ovfl_cnt int, -- Number of entries that use overflow + mx_payload int, -- Maximum payload size + int_pages int, -- Number of interior pages used + leaf_pages int, -- Number of leaf pages used + ovfl_pages int, -- Number of overflow pages used + int_unused int, -- Number of unused bytes on interior pages + leaf_unused int, -- Number of unused bytes on primary pages + ovfl_unused int, -- Number of unused bytes on overflow pages + gap_cnt int, -- Number of gaps in the page layout + compressed_size int -- Total bytes stored on disk +);} +mem eval $tabledef + +# Create a temporary "dbstat" virtual table. +# +db eval {CREATE VIRTUAL TABLE temp.stat USING dbstat} +db eval {CREATE TEMP TABLE dbstat AS SELECT * FROM temp.stat + ORDER BY name, path} +db eval {DROP TABLE temp.stat} + +set isCompressed 0 +set compressOverhead 0 +set depth 0 +set sql { SELECT name, tbl_name FROM sqlite_schema WHERE rootpage>0 } +foreach {name tblname} [concat sqlite_schema sqlite_schema [db eval $sql]] { + + set is_index [expr {$name!=$tblname}] + set is_without_rowid [is_without_rowid $name] + db eval { + SELECT + sum(ncell) AS nentry, + sum((pagetype=='leaf')*ncell) AS leaf_entries, + sum(payload) AS payload, + sum((pagetype=='overflow') * payload) AS ovfl_payload, + sum(path LIKE '%+000000') AS ovfl_cnt, + max(mx_payload) AS mx_payload, + sum(pagetype=='internal') AS int_pages, + sum(pagetype=='leaf') AS leaf_pages, + sum(pagetype=='overflow') AS ovfl_pages, + sum((pagetype=='internal') * unused) AS int_unused, + sum((pagetype=='leaf') * unused) AS leaf_unused, + sum((pagetype=='overflow') * unused) AS ovfl_unused, + sum(pgsize) AS compressed_size, + max((length(CASE WHEN path LIKE '%+%' THEN '' ELSE path END)+3)/4) + AS depth + FROM temp.dbstat WHERE name = $name + } break + + set total_pages [expr {$leaf_pages+$int_pages+$ovfl_pages}] + set storage [expr {$total_pages*$pageSize}] + if {!$isCompressed && $storage>$compressed_size} { + set isCompressed 1 + set compressOverhead 14 + } + + # Column 'gap_cnt' is set to the number of non-contiguous entries in the + # list of pages visited if the b-tree structure is traversed in a top-down + # fashion (each node visited before its child-tree is passed). Any overflow + # chains present are traversed from start to finish before any child-tree + # is. + # + set gap_cnt 0 + set prev 0 + db eval { + SELECT pageno, pagetype FROM temp.dbstat + WHERE name=$name + ORDER BY pageno + } { + if {$prev>0 && $pagetype=="leaf" && $pageno!=$prev+1} { + incr gap_cnt + } + set prev $pageno + } + mem eval { + INSERT INTO space_used VALUES( + $name, + $tblname, + $is_index, + $is_without_rowid, + $nentry, + $leaf_entries, + $depth, + $payload, + $ovfl_payload, + $ovfl_cnt, + $mx_payload, + $int_pages, + $leaf_pages, + $ovfl_pages, + $int_unused, + $leaf_unused, + $ovfl_unused, + $gap_cnt, + $compressed_size + ); + } +} + +proc integerify {real} { + if {[string is double -strict $real]} { + return [expr {wide($real)}] + } else { + return 0 + } +} +mem function int integerify + +# Quote a string for use in an SQL query. Examples: +# +# [quote {hello world}] == {'hello world'} +# [quote {hello world's}] == {'hello world''s'} +# +proc quote {txt} { + return [string map {' ''} $txt] +} + +# Output a title line +# +proc titleline {title} { + if {$title==""} { + puts [string repeat * 79] + } else { + set len [string length $title] + set stars [string repeat * [expr {79-$len-5}]] + puts "*** $title $stars" + } +} + +# Generate a single line of output in the statistics section of the +# report. +# +proc statline {title value {extra {}}} { + set len [string length $title] + set dots [string repeat . [expr {50-$len}]] + set len [string length $value] + set sp2 [string range { } $len end] + if {$extra ne ""} { + set extra " $extra" + } + puts "$title$dots $value$sp2$extra" +} + +# Generate a formatted percentage value for $num/$denom +# +proc percent {num denom {of {}}} { + if {$denom==0.0} {return ""} + set v [expr {$num*100.0/$denom}] + set of {} + if {$v==100.0 || $v<0.001 || ($v>1.0 && $v<99.0)} { + return [format {%5.1f%% %s} $v $of] + } elseif {$v<0.1 || $v>99.9} { + return [format {%7.3f%% %s} $v $of] + } else { + return [format {%6.2f%% %s} $v $of] + } +} + +proc divide {num denom} { + if {$denom==0} {return 0.0} + return [format %.2f [expr {double($num)/double($denom)}]] +} + +# Generate a subreport that covers some subset of the database. +# the $where clause determines which subset to analyze. +# +proc subreport {title where showFrag} { + global pageSize file_pgcnt compressOverhead + + # Query the in-memory database for the sum of various statistics + # for the subset of tables/indices identified by the WHERE clause in + # $where. Note that even if the WHERE clause matches no rows, the + # following query returns exactly one row (because it is an aggregate). + # + # The results of the query are stored directly by SQLite into local + # variables (i.e. $nentry, $payload etc.). + # + mem eval " + SELECT + int(sum( + CASE WHEN (is_without_rowid OR is_index) THEN nentry + ELSE leaf_entries + END + )) AS nentry, + int(sum(payload)) AS payload, + int(sum(ovfl_payload)) AS ovfl_payload, + max(mx_payload) AS mx_payload, + int(sum(ovfl_cnt)) as ovfl_cnt, + int(sum(leaf_pages)) AS leaf_pages, + int(sum(int_pages)) AS int_pages, + int(sum(ovfl_pages)) AS ovfl_pages, + int(sum(leaf_unused)) AS leaf_unused, + int(sum(int_unused)) AS int_unused, + int(sum(ovfl_unused)) AS ovfl_unused, + int(sum(gap_cnt)) AS gap_cnt, + int(sum(compressed_size)) AS compressed_size, + int(max(depth)) AS depth, + count(*) AS cnt + FROM space_used WHERE $where" {} {} + + # Output the sub-report title, nicely decorated with * characters. + # + puts "" + titleline $title + puts "" + + # Calculate statistics and store the results in TCL variables, as follows: + # + # total_pages: Database pages consumed. + # total_pages_percent: Pages consumed as a percentage of the file. + # storage: Bytes consumed. + # payload_percent: Payload bytes used as a percentage of $storage. + # total_unused: Unused bytes on pages. + # avg_payload: Average payload per btree entry. + # avg_fanout: Average fanout for internal pages. + # avg_unused: Average unused bytes per btree entry. + # avg_meta: Average metadata overhead per entry. + # ovfl_cnt_percent: Percentage of btree entries that use overflow pages. + # + set total_pages [expr {$leaf_pages+$int_pages+$ovfl_pages}] + set total_pages_percent [percent $total_pages $file_pgcnt] + set storage [expr {$total_pages*$pageSize}] + set payload_percent [percent $payload $storage {of storage consumed}] + set total_unused [expr {$ovfl_unused+$int_unused+$leaf_unused}] + set avg_payload [divide $payload $nentry] + set avg_unused [divide $total_unused $nentry] + set total_meta [expr {$storage - $payload - $total_unused}] + set total_meta [expr {$total_meta + 4*($ovfl_pages - $ovfl_cnt)}] + set meta_percent [percent $total_meta $storage {of metadata}] + set avg_meta [divide $total_meta $nentry] + if {$int_pages>0} { + # TODO: Is this formula correct? + set nTab [mem eval " + SELECT count(*) FROM ( + SELECT DISTINCT tblname FROM space_used WHERE $where AND is_index=0 + ) + "] + set avg_fanout [mem eval " + SELECT (sum(leaf_pages+int_pages)-$nTab)/sum(int_pages) FROM space_used + WHERE $where + "] + set avg_fanout [format %.2f $avg_fanout] + } + set ovfl_cnt_percent [percent $ovfl_cnt $nentry {of all entries}] + + # Print out the sub-report statistics. + # + statline {Percentage of total database} $total_pages_percent + statline {Number of entries} $nentry + statline {Bytes of storage consumed} $storage + if {$compressed_size!=$storage} { + set compressed_size [expr {$compressed_size+$compressOverhead*$total_pages}] + set pct [expr {$compressed_size*100.0/$storage}] + set pct [format {%5.1f%%} $pct] + statline {Bytes used after compression} $compressed_size $pct + } + statline {Bytes of payload} $payload $payload_percent + statline {Bytes of metadata} $total_meta $meta_percent + if {$cnt==1} {statline {B-tree depth} $depth} + statline {Average payload per entry} $avg_payload + statline {Average unused bytes per entry} $avg_unused + statline {Average metadata per entry} $avg_meta + if {[info exists avg_fanout]} { + statline {Average fanout} $avg_fanout + } + if {$showFrag && $total_pages>1} { + set fragmentation [percent $gap_cnt [expr {$total_pages-1}]] + statline {Non-sequential pages} $gap_cnt $fragmentation + } + statline {Maximum payload per entry} $mx_payload + statline {Entries that use overflow} $ovfl_cnt $ovfl_cnt_percent + if {$int_pages>0} { + statline {Index pages used} $int_pages + } + statline {Primary pages used} $leaf_pages + statline {Overflow pages used} $ovfl_pages + statline {Total pages used} $total_pages + if {$int_unused>0} { + set int_unused_percent [ + percent $int_unused [expr {$int_pages*$pageSize}] {of index space}] + statline "Unused bytes on index pages" $int_unused $int_unused_percent + } + statline "Unused bytes on primary pages" $leaf_unused [ + percent $leaf_unused [expr {$leaf_pages*$pageSize}] {of primary space}] + statline "Unused bytes on overflow pages" $ovfl_unused [ + percent $ovfl_unused [expr {$ovfl_pages*$pageSize}] {of overflow space}] + statline "Unused bytes on all pages" $total_unused [ + percent $total_unused $storage {of all space}] + return 1 +} + +# Calculate the overhead in pages caused by auto-vacuum. +# +# This procedure calculates and returns the number of pages used by the +# auto-vacuum 'pointer-map'. If the database does not support auto-vacuum, +# then 0 is returned. The two arguments are the size of the database file in +# pages and the page size used by the database (in bytes). +proc autovacuum_overhead {filePages pageSize} { + + # Set $autovacuum to non-zero for databases that support auto-vacuum. + set autovacuum [db one {PRAGMA auto_vacuum}] + + # If the database is not an auto-vacuum database or the file consists + # of one page only then there is no overhead for auto-vacuum. Return zero. + if {0==$autovacuum || $filePages==1} { + return 0 + } + + # The number of entries on each pointer map page. The layout of the + # database file is one pointer-map page, followed by $ptrsPerPage other + # pages, followed by a pointer-map page etc. The first pointer-map page + # is the second page of the file overall. + set ptrsPerPage [expr {double($pageSize/5)}] + + # Return the number of pointer map pages in the database. + return [expr {wide(ceil(($filePages-1.0)/($ptrsPerPage+1.0)))}] +} + + +# Calculate the summary statistics for the database and store the results +# in TCL variables. They are output below. Variables are as follows: +# +# pageSize: Size of each page in bytes. +# file_bytes: File size in bytes. +# file_pgcnt: Number of pages in the file. +# file_pgcnt2: Number of pages in the file (calculated). +# av_pgcnt: Pages consumed by the auto-vacuum pointer-map. +# av_percent: Percentage of the file consumed by auto-vacuum pointer-map. +# inuse_pgcnt: Data pages in the file. +# inuse_percent: Percentage of pages used to store data. +# free_pgcnt: Free pages calculated as ( - ) +# free_pgcnt2: Free pages in the file according to the file header. +# free_percent: Percentage of file consumed by free pages (calculated). +# free_percent2: Percentage of file consumed by free pages (header). +# ntable: Number of tables in the db. +# nindex: Number of indices in the db. +# nautoindex: Number of indices created automatically. +# nmanindex: Number of indices created manually. +# user_payload: Number of bytes of payload in table btrees +# (not including sqlite_schema) +# user_percent: $user_payload as a percentage of total file size. + +### The following, setting $file_bytes based on the actual size of the file +### on disk, causes this tool to choke on zipvfs databases. So set it based +### on the return of [PRAGMA page_count] instead. +if 0 { + set file_bytes [file size $file_to_analyze] + set file_pgcnt [expr {$file_bytes/$pageSize}] +} +set file_pgcnt [db one {PRAGMA page_count}] +set file_bytes [expr {$file_pgcnt * $pageSize}] + +set av_pgcnt [autovacuum_overhead $file_pgcnt $pageSize] +set av_percent [percent $av_pgcnt $file_pgcnt] + +set sql {SELECT sum(leaf_pages+int_pages+ovfl_pages) FROM space_used} +set inuse_pgcnt [expr {wide([mem eval $sql])}] +set inuse_percent [percent $inuse_pgcnt $file_pgcnt] + +set free_pgcnt [expr {$file_pgcnt-$inuse_pgcnt-$av_pgcnt}] +set free_percent [percent $free_pgcnt $file_pgcnt] +set free_pgcnt2 [db one {PRAGMA freelist_count}] +set free_percent2 [percent $free_pgcnt2 $file_pgcnt] + +set file_pgcnt2 [expr {$inuse_pgcnt+$free_pgcnt2+$av_pgcnt}] + +# Account for the lockbyte page +if {$file_pgcnt2*$pageSize>1073742335} {incr file_pgcnt2} + +set ntable [db eval {SELECT count(*)+1 FROM sqlite_schema WHERE type='table'}] +set nindex [db eval {SELECT count(*) FROM sqlite_schema WHERE type='index'}] +set sql {SELECT count(*) FROM sqlite_schema WHERE name LIKE 'sqlite_autoindex%'} +set nautoindex [db eval $sql] +set nmanindex [expr {$nindex-$nautoindex}] + +# set total_payload [mem eval "SELECT sum(payload) FROM space_used"] +set user_payload [mem one {SELECT int(sum(payload)) FROM space_used + WHERE NOT is_index AND name NOT LIKE 'sqlite_schema'}] +set user_percent [percent $user_payload $file_bytes] + +# Output the summary statistics calculated above. +# +puts "/** Disk-Space Utilization Report For $root_filename" +puts "" +statline {Page size in bytes} $pageSize +statline {Pages in the whole file (measured)} $file_pgcnt +statline {Pages in the whole file (calculated)} $file_pgcnt2 +statline {Pages that store data} $inuse_pgcnt $inuse_percent +statline {Pages on the freelist (per header)} $free_pgcnt2 $free_percent2 +statline {Pages on the freelist (calculated)} $free_pgcnt $free_percent +statline {Pages of auto-vacuum overhead} $av_pgcnt $av_percent +statline {Number of tables in the database} $ntable +statline {Number of indices} $nindex +statline {Number of defined indices} $nmanindex +statline {Number of implied indices} $nautoindex +if {$isCompressed} { + statline {Size of uncompressed content in bytes} $file_bytes + set efficiency [percent $true_file_size $file_bytes] + statline {Size of compressed file on disk} $true_file_size $efficiency +} else { + statline {Size of the file in bytes} $file_bytes +} +statline {Bytes of user payload stored} $user_payload $user_percent + +# Output table rankings +# +puts "" +titleline "Page counts for all tables with their indices" +puts "" +mem eval {SELECT tblname, count(*) AS cnt, + int(sum(int_pages+leaf_pages+ovfl_pages)) AS size + FROM space_used GROUP BY tblname ORDER BY size+0 DESC, tblname} {} { + statline [string toupper $tblname] $size [percent $size $file_pgcnt] +} +puts "" +titleline "Page counts for all tables and indices separately" +puts "" +mem eval { + SELECT + upper(name) AS nm, + int(int_pages+leaf_pages+ovfl_pages) AS size + FROM space_used + ORDER BY size+0 DESC, name} {} { + statline $nm $size [percent $size $file_pgcnt] +} +if {$isCompressed} { + puts "" + titleline "Bytes of disk space used after compression" + puts "" + set csum 0 + mem eval {SELECT tblname, + int(sum(compressed_size)) + + $compressOverhead*sum(int_pages+leaf_pages+ovfl_pages) + AS csize + FROM space_used GROUP BY tblname ORDER BY csize+0 DESC, tblname} {} { + incr csum $csize + statline [string toupper $tblname] $csize [percent $csize $true_file_size] + } + set overhead [expr {$true_file_size - $csum}] + if {$overhead>0} { + statline {Header and free space} $overhead [percent $overhead $true_file_size] + } +} + +# Output subreports +# +if {$nindex>0} { + subreport {All tables and indices} 1 0 +} +subreport {All tables} {NOT is_index} 0 +if {$nindex>0} { + subreport {All indices} {is_index} 0 +} +foreach tbl [mem eval {SELECT DISTINCT tblname name FROM space_used + ORDER BY name}] { + set qn [quote $tbl] + set name [string toupper $tbl] + set n [mem eval {SELECT count(*) FROM space_used WHERE tblname=$tbl}] + if {$n>1} { + set idxlist [mem eval "SELECT name FROM space_used + WHERE tblname='$qn' AND is_index + ORDER BY 1"] + subreport "Table $name and all its indices" "tblname='$qn'" 0 + subreport "Table $name w/o any indices" "name='$qn'" 1 + if {[llength $idxlist]>1} { + subreport "Indices of table $name" "tblname='$qn' AND is_index" 0 + } + foreach idx $idxlist { + set qidx [quote $idx] + subreport "Index [string toupper $idx] of table $name" "name='$qidx'" 1 + } + } else { + subreport "Table $name" "name='$qn'" 1 + } +} + +# Output instructions on what the numbers above mean. +# +puts "" +titleline Definitions +puts { +Page size in bytes + + The number of bytes in a single page of the database file. + Usually 1024. + +Number of pages in the whole file +} +puts " The number of $pageSize-byte pages that go into forming the complete + database" +puts { +Pages that store data + + The number of pages that store data, either as primary B*Tree pages or + as overflow pages. The number at the right is the data pages divided by + the total number of pages in the file. + +Pages on the freelist + + The number of pages that are not currently in use but are reserved for + future use. The percentage at the right is the number of freelist pages + divided by the total number of pages in the file. + +Pages of auto-vacuum overhead + + The number of pages that store data used by the database to facilitate + auto-vacuum. This is zero for databases that do not support auto-vacuum. + +Number of tables in the database + + The number of tables in the database, including the SQLITE_SCHEMA table + used to store schema information. + +Number of indices + + The total number of indices in the database. + +Number of defined indices + + The number of indices created using an explicit CREATE INDEX statement. + +Number of implied indices + + The number of indices used to implement PRIMARY KEY or UNIQUE constraints + on tables. + +Size of the file in bytes + + The total amount of disk space used by the entire database files. + +Bytes of user payload stored + + The total number of bytes of user payload stored in the database. The + schema information in the SQLITE_SCHEMA table is not counted when + computing this number. The percentage at the right shows the payload + divided by the total file size. + +Percentage of total database + + The amount of the complete database file that is devoted to storing + information described by this category. + +Number of entries + + The total number of B-Tree key/value pairs stored under this category. + +Bytes of storage consumed + + The total amount of disk space required to store all B-Tree entries + under this category. The is the total number of pages used times + the pages size. + +Bytes of payload + + The amount of payload stored under this category. Payload is the data + part of table entries and the key part of index entries. The percentage + at the right is the bytes of payload divided by the bytes of storage + consumed. + +Bytes of metadata + + The amount of formatting and structural information stored in the + table or index. Metadata includes the btree page header, the cell pointer + array, the size field for each cell, the left child pointer or non-leaf + cells, the overflow pointers for overflow cells, and the rowid value for + rowid table cells. In other words, metadata is everything that is neither + unused space nor content. The record header in the payload is counted as + content, not metadata. + +Average payload per entry + + The average amount of payload on each entry. This is just the bytes of + payload divided by the number of entries. + +Average unused bytes per entry + + The average amount of free space remaining on all pages under this + category on a per-entry basis. This is the number of unused bytes on + all pages divided by the number of entries. + +Non-sequential pages + + The number of pages in the table or index that are out of sequence. + Many filesystems are optimized for sequential file access so a small + number of non-sequential pages might result in faster queries, + especially for larger database files that do not fit in the disk cache. + Note that after running VACUUM, the root page of each table or index is + at the beginning of the database file and all other pages are in a + separate part of the database file, resulting in a single non- + sequential page. + +Maximum payload per entry + + The largest payload size of any entry. + +Entries that use overflow + + The number of entries that user one or more overflow pages. + +Total pages used + + This is the number of pages used to hold all information in the current + category. This is the sum of index, primary, and overflow pages. + +Index pages used + + This is the number of pages in a table B-tree that hold only key (rowid) + information and no data. + +Primary pages used + + This is the number of B-tree pages that hold both key and data. + +Overflow pages used + + The total number of overflow pages used for this category. + +Unused bytes on index pages + + The total number of bytes of unused space on all index pages. The + percentage at the right is the number of unused bytes divided by the + total number of bytes on index pages. + +Unused bytes on primary pages + + The total number of bytes of unused space on all primary pages. The + percentage at the right is the number of unused bytes divided by the + total number of bytes on primary pages. + +Unused bytes on overflow pages + + The total number of bytes of unused space on all overflow pages. The + percentage at the right is the number of unused bytes divided by the + total number of bytes on overflow pages. + +Unused bytes on all pages + + The total number of bytes of unused space on all primary and overflow + pages. The percentage at the right is the number of unused bytes + divided by the total number of bytes. +} + +# Output a dump of the in-memory database. This can be used for more +# complex offline analysis. +# +titleline {} +puts "The entire text of this report can be sourced into any SQL database" +puts "engine for further analysis. All of the text above is an SQL comment." +puts "The data used to generate this report follows:" +puts "*/" +puts "BEGIN;" +puts $tabledef +unset -nocomplain x +mem eval {SELECT * FROM space_used} x { + puts -nonewline "INSERT INTO space_used VALUES" + set sep ( + foreach col $x(*) { + set v $x($col) + if {$v=="" || ![string is double $v]} {set v '[quote $v]'} + puts -nonewline $sep$v + set sep , + } + puts ");" +} +puts "COMMIT;" + +} err]} { + puts "ERROR: $err" + puts $errorInfo + exit 1 +} diff --git a/miniconda3/bin/tabs b/miniconda3/bin/tabs new file mode 100644 index 0000000000000000000000000000000000000000..67128c463ba1a6b18eb424d73586a5b8fde16524 Binary files /dev/null and b/miniconda3/bin/tabs differ diff --git a/miniconda3/bin/tclsh b/miniconda3/bin/tclsh new file mode 100644 index 0000000000000000000000000000000000000000..08cdf75553eaae908e4956ab0194a52a19ddb7f0 Binary files /dev/null and b/miniconda3/bin/tclsh differ diff --git a/miniconda3/bin/tclsh8.6 b/miniconda3/bin/tclsh8.6 new file mode 100644 index 0000000000000000000000000000000000000000..08cdf75553eaae908e4956ab0194a52a19ddb7f0 Binary files /dev/null and b/miniconda3/bin/tclsh8.6 differ diff --git a/miniconda3/bin/testsolv b/miniconda3/bin/testsolv new file mode 100644 index 0000000000000000000000000000000000000000..c7acff942991359cebacfb737f80f6c870796d91 Binary files /dev/null and b/miniconda3/bin/testsolv differ diff --git a/miniconda3/bin/tic b/miniconda3/bin/tic new file mode 100644 index 0000000000000000000000000000000000000000..4edfa66a0fa5205392cdd31bab1863e9440ef04d Binary files /dev/null and b/miniconda3/bin/tic differ diff --git a/miniconda3/bin/toe b/miniconda3/bin/toe new file mode 100644 index 0000000000000000000000000000000000000000..920ede6533a5209593e07c728694a4444440dd7a Binary files /dev/null and b/miniconda3/bin/toe differ diff --git a/miniconda3/bin/tput b/miniconda3/bin/tput new file mode 100644 index 0000000000000000000000000000000000000000..f288a415499d70e08db52bb19005d3f8150ce694 Binary files /dev/null and b/miniconda3/bin/tput differ diff --git a/miniconda3/bin/tqdm b/miniconda3/bin/tqdm new file mode 100644 index 0000000000000000000000000000000000000000..a8856552f0d6990256a3f4c7aadd83d0cd3f73dd --- /dev/null +++ b/miniconda3/bin/tqdm @@ -0,0 +1,11 @@ +#!/mnt/bn/bohanzhainas1/jiashuo/miniconda3/bin/python + +# -*- coding: utf-8 -*- +import re +import sys + +from tqdm.cli import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/miniconda3/bin/tset b/miniconda3/bin/tset new file mode 100644 index 0000000000000000000000000000000000000000..7bd1d42789af918f9142590b2bdd5003cbbbedc6 Binary files /dev/null and b/miniconda3/bin/tset differ diff --git a/miniconda3/bin/typer b/miniconda3/bin/typer new file mode 100644 index 0000000000000000000000000000000000000000..e2e90516c27c03c0e5cdeca410197d21a4b6f464 --- /dev/null +++ b/miniconda3/bin/typer @@ -0,0 +1,11 @@ +#!/mnt/bn/bohanzhainas1/jiashuo/miniconda3/bin/python + +# -*- coding: utf-8 -*- +import re +import sys + +from typer.cli import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/miniconda3/bin/wheel b/miniconda3/bin/wheel new file mode 100644 index 0000000000000000000000000000000000000000..2e4961965cdfb0bf39990d2ecad7685e3e170295 --- /dev/null +++ b/miniconda3/bin/wheel @@ -0,0 +1,11 @@ +#!/mnt/bn/bohanzhainas1/jiashuo/miniconda3/bin/python + +# -*- coding: utf-8 -*- +import re +import sys + +from wheel._commands import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/miniconda3/bin/wish b/miniconda3/bin/wish new file mode 100644 index 0000000000000000000000000000000000000000..87a6cee73f811480369ccae55a8de5adbea1d287 Binary files /dev/null and b/miniconda3/bin/wish differ diff --git a/miniconda3/bin/wish8.6 b/miniconda3/bin/wish8.6 new file mode 100644 index 0000000000000000000000000000000000000000..87a6cee73f811480369ccae55a8de5adbea1d287 Binary files /dev/null and b/miniconda3/bin/wish8.6 differ diff --git a/miniconda3/bin/xml2-config b/miniconda3/bin/xml2-config new file mode 100644 index 0000000000000000000000000000000000000000..adb337d14d2c2f43dd53742c3bc96f73b3ea75dd --- /dev/null +++ b/miniconda3/bin/xml2-config @@ -0,0 +1,108 @@ +#! /bin/sh + +prefix=/mnt/bn/bohanzhainas1/jiashuo/miniconda3 +exec_prefix=${prefix} +includedir=${prefix}/include +libdir=${exec_prefix}/lib +cflags= +libs= + +usage() +{ + cat <&1 + +if test $# -eq 1; then + case $1 in + *[-.]xz | *[-.]lzma | *[-.]lz | *.t[lx]z) + ;; + *[-.]bz2 | *.tbz | *.tbz2) + xz1=bzip2;; + *[-.][zZ] | *_z | *[-.]gz | *.t[ag]z) + xz1=gzip;; + *[-.]lzo | *.tzo) + xz1=lzop;; + *[-.]zst | *.tzst) + xz1='zstd -q';; + *[-.]lz4) + xz1=lz4;; + *) + printf '%s\n' "$0: $1: Unknown compressed file name suffix" >&2 + exit 2;; + esac + # The FILE variable is used with eval, and shellcheck doesn't see that. + # shellcheck disable=SC2034 + case $1 in + *[-.][zZ] | *_z | *[-.][gx]z | *[-.]bz2 | *[-.]lzma | *[-.]lz | *[-.]lzo | *[-.]zst | *[-.]lz4) + FILE=`expr "X$1" : 'X\(.*\)[-.][abglmostxzZ24]*$'`;; + *.t[abglx]z) + FILE=`expr "X$1" : 'X\(.*[-.]t\)[abglx]z$'`ar;; + *.tbz2) + FILE=`expr "X$1" : 'X\(.*[-.]t\)bz2$'`ar;; + *.tzo) + FILE=`expr "X$1" : 'X\(.*[-.]t\)zo$'`ar;; + *.tzst) + FILE=`expr "X$1" : 'X\(.*[-.]t\)zst$'`ar;; + esac + xz_status=$( + exec 4>&1 + ($xz1 -cd -- "$1" 4>&-; echo $? >&4) 3>&- | eval "$cmp" - '"$FILE"' >&3 + ) +elif test $# -eq 2; then + case $1 in + *[-.]bz2 | *.tbz | *.tbz2) xz1=bzip2;; + *[-.][zZ] | *_z | *[-.]gz | *.t[ag]z) xz1=gzip;; + *[-.]lzo | *.tzo) xz1=lzop;; + *[-.]zst | *.tzst) xz1='zstd -q';; + *[-.]lz4) xz1=lz4;; + esac + case $2 in + *[-.]bz2 | *.tbz | *.tbz2) xz2=bzip2;; + *[-.][zZ] | *_z | *[-.]gz | *.t[ag]z) xz2=gzip;; + *[-.]lzo | *.tzo) xz2=lzop;; + *[-.]zst | *.tzst) xz2='zstd -q';; + *[-.]lz4) xz2=lz4;; + esac + case $1 in + *[-.][zZ] | *_z | *[-.][gx]z | *[-.]bz2 | *[-.]lzma | *[-.]lz | *.t[abglx]z | *.tbz2 | *[-.]lzo | *.tzo | *[-.]zst | *.tzst | *[-.]lz4 | -) + case "$2" in + *[-.][zZ] | *_z | *[-.][gx]z | *[-.]bz2 | *[-.]lzma | *[-.]lz | *.t[abglx]z | *.tbz2 | *[-.]lzo | *.tzo | *[-.]zst | *.tzst | *[-.]lz4 | -) + if test "$1$2" = --; then + xz_status=$( + exec 4>&1 + ($xz1 -cdf - 4>&-; echo $? >&4) 3>&- | + eval "$cmp" - - >&3 + ) + elif # Reject Solaris 8's buggy /bin/bash 2.03. + echo X | (echo X | eval "$cmp" /dev/fd/5 - >/dev/null 2>&1) 5<&0; then + # NOTE: xz_status will contain two numbers. + xz_status=$( + exec 4>&1 + ($xz1 -cdf -- "$1" 4>&-; echo $? >&4) 3>&- | + ( ($xz2 -cdf -- "$2" 4>&-; echo $? >&4) 3>&- 5<&- &3) 5<&0 + ) + else + F=`expr "/$2" : '.*/\(.*\)[-.][ablmotxz2]*$'` || F=$prog + tmp= + trap ' + test -n "$tmp" && rm -rf "$tmp" + (exit 2); exit 2 + ' HUP INT PIPE TERM 0 + if type mktemp >/dev/null 2>&1; then + # Note that FreeBSD's mktemp isn't fully compatible with + # the implementations from mktemp.org and GNU coreutils. + # It is important that the -t argument is the last argument + # and that no "--" is used between -t and the template argument. + # This way this command works on all implementations. + tmp=`mktemp -d -t "$prog.XXXXXXXXXX"` || exit 2 + else + # Fallback code if mktemp is missing. This isn't as + # robust as using mktemp since this doesn't try with + # different file names in case of a file name conflict. + # + # There's no need to save the original umask since + # we don't create any non-temp files. Note that using + # mkdir -m 0077 isn't secure since some mkdir implementations + # create the dir with the default umask and chmod the + # the dir afterwards. + umask 0077 + mkdir -- "${TMPDIR-/tmp}/$prog.$$" || exit 2 + tmp="${TMPDIR-/tmp}/$prog.$$" + fi + $xz2 -cdf -- "$2" > "$tmp/$F" || exit 2 + xz_status=$( + exec 4>&1 + ($xz1 -cdf -- "$1" 4>&-; echo $? >&4) 3>&- | + eval "$cmp" - '"$tmp/$F"' >&3 + ) + cmp_status=$? + rm -rf "$tmp" || xz_status=$? + trap - HUP INT PIPE TERM 0 + (exit $cmp_status) + fi;; + *) + xz_status=$( + exec 4>&1 + ($xz1 -cdf -- "$1" 4>&-; echo $? >&4) 3>&- | + eval "$cmp" - '"$2"' >&3 + );; + esac;; + *) + case "$2" in + *[-.][zZ] | *_z | *[-.][gx]z | *[-.]bz2 | *[-.]lzma | *[-.]lz | *.t[abglx]z | *.tbz2 | *[-.]lzo | *.tzo | *[-.]zst | *.tzst | *[-.]lz4 | -) + xz_status=$( + exec 4>&1 + ($xz2 -cdf -- "$2" 4>&-; echo $? >&4) 3>&- | + eval "$cmp" '"$1"' - >&3 + );; + *) + eval "$cmp" '"$1"' '"$2"';; + esac;; + esac +else + printf '%s\n' "$0: Invalid number of operands; try '${0##*/} --help' for help" >&2 + exit 2 +fi + +cmp_status=$? +for num in $xz_status ; do + # 0 from decompressor means successful decompression. SIGPIPE from + # decompressor is possible when diff or cmp exits before the whole file + # has been decompressed. In that case we want to retain the exit status + # from diff or cmp. Note that using "trap '' PIPE" is not possible + # because gzip changes its behavior (including exit status) if SIGPIPE + # is ignored. + test "$num" -eq 0 && continue + test "$num" -ge 128 \ + && test "$(kill -l "$num" 2> /dev/null)" = "PIPE" \ + && continue + exit 2 +done +exit $cmp_status diff --git a/miniconda3/bin/xzdec b/miniconda3/bin/xzdec new file mode 100644 index 0000000000000000000000000000000000000000..15c3fd554a7e547e40c718cca53f3cb11f5f6c0b Binary files /dev/null and b/miniconda3/bin/xzdec differ diff --git a/miniconda3/bin/xzdiff b/miniconda3/bin/xzdiff new file mode 100644 index 0000000000000000000000000000000000000000..d76f65118f96cd9ea2e366974ef228c27b0cdbe0 --- /dev/null +++ b/miniconda3/bin/xzdiff @@ -0,0 +1,224 @@ +#!/bin/sh +# SPDX-License-Identifier: GPL-2.0-or-later + +# Copyright (C) 1998, 2002, 2006, 2007 Free Software Foundation +# Copyright (C) 1993 Jean-loup Gailly + +# Modified for XZ Utils by Andrew Dudman and Lasse Collin. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# shellcheck shell=sh disable=SC1003,SC2016 + + +#SET_PATH - This line is a placeholder to ease patching this script. + +# Instead of unsetting XZ_OPT, just make sure that xz will use file format +# autodetection. This way memory usage limit and thread limit can be +# specified via XZ_OPT. With gzip, bzip2, and lzop it's OK to just unset the +# environment variables. +xz='xz --format=auto' +unset GZIP BZIP BZIP2 LZOP + +case ${0##*/} in + *cmp*) prog=xzcmp; cmp=${CMP:-cmp};; + *) prog=xzdiff; cmp=${DIFF:-diff};; +esac + +version="$prog (XZ Utils) 5.8.2" + +usage="Usage: ${0##*/} [OPTION]... FILE1 [FILE2] +Compare FILE1 to FILE2, using their uncompressed contents if they are +compressed. If FILE2 is omitted, then the files compared are FILE1 and +FILE1 from which the compression format suffix has been stripped. + +Do comparisons like '$cmp' does. OPTIONs are the same as for '$cmp'. + +Report bugs to ." + +# sed script to escape all ' for the shell, and then (to handle trailing +# newlines correctly) turn trailing X on last line into '. +escape=' + s/'\''/'\''\\'\'''\''/g + $s/X$/'\''/ +' + +while :; do + case $1 in + --h*) printf '%s\n' "$usage" || exit 2; exit;; + --v*) printf '%s\n' "$version" || exit 2; exit;; + --) shift; break;; + -*\'*) cmp="$cmp '"`printf '%sX\n' "$1" | sed "$escape"`;; + -?*) cmp="$cmp '$1'";; + *) break;; + esac + shift +done +cmp="$cmp --" + +for file; do + test "X$file" = X- || true < "$file" || exit 2 +done + +# xz needs -qQ to ignore warnings like unsupported check type. +xz1="$xz -qQ" +xz2="$xz -qQ" +xz_status=0 +exec 3>&1 + +if test $# -eq 1; then + case $1 in + *[-.]xz | *[-.]lzma | *[-.]lz | *.t[lx]z) + ;; + *[-.]bz2 | *.tbz | *.tbz2) + xz1=bzip2;; + *[-.][zZ] | *_z | *[-.]gz | *.t[ag]z) + xz1=gzip;; + *[-.]lzo | *.tzo) + xz1=lzop;; + *[-.]zst | *.tzst) + xz1='zstd -q';; + *[-.]lz4) + xz1=lz4;; + *) + printf '%s\n' "$0: $1: Unknown compressed file name suffix" >&2 + exit 2;; + esac + # The FILE variable is used with eval, and shellcheck doesn't see that. + # shellcheck disable=SC2034 + case $1 in + *[-.][zZ] | *_z | *[-.][gx]z | *[-.]bz2 | *[-.]lzma | *[-.]lz | *[-.]lzo | *[-.]zst | *[-.]lz4) + FILE=`expr "X$1" : 'X\(.*\)[-.][abglmostxzZ24]*$'`;; + *.t[abglx]z) + FILE=`expr "X$1" : 'X\(.*[-.]t\)[abglx]z$'`ar;; + *.tbz2) + FILE=`expr "X$1" : 'X\(.*[-.]t\)bz2$'`ar;; + *.tzo) + FILE=`expr "X$1" : 'X\(.*[-.]t\)zo$'`ar;; + *.tzst) + FILE=`expr "X$1" : 'X\(.*[-.]t\)zst$'`ar;; + esac + xz_status=$( + exec 4>&1 + ($xz1 -cd -- "$1" 4>&-; echo $? >&4) 3>&- | eval "$cmp" - '"$FILE"' >&3 + ) +elif test $# -eq 2; then + case $1 in + *[-.]bz2 | *.tbz | *.tbz2) xz1=bzip2;; + *[-.][zZ] | *_z | *[-.]gz | *.t[ag]z) xz1=gzip;; + *[-.]lzo | *.tzo) xz1=lzop;; + *[-.]zst | *.tzst) xz1='zstd -q';; + *[-.]lz4) xz1=lz4;; + esac + case $2 in + *[-.]bz2 | *.tbz | *.tbz2) xz2=bzip2;; + *[-.][zZ] | *_z | *[-.]gz | *.t[ag]z) xz2=gzip;; + *[-.]lzo | *.tzo) xz2=lzop;; + *[-.]zst | *.tzst) xz2='zstd -q';; + *[-.]lz4) xz2=lz4;; + esac + case $1 in + *[-.][zZ] | *_z | *[-.][gx]z | *[-.]bz2 | *[-.]lzma | *[-.]lz | *.t[abglx]z | *.tbz2 | *[-.]lzo | *.tzo | *[-.]zst | *.tzst | *[-.]lz4 | -) + case "$2" in + *[-.][zZ] | *_z | *[-.][gx]z | *[-.]bz2 | *[-.]lzma | *[-.]lz | *.t[abglx]z | *.tbz2 | *[-.]lzo | *.tzo | *[-.]zst | *.tzst | *[-.]lz4 | -) + if test "$1$2" = --; then + xz_status=$( + exec 4>&1 + ($xz1 -cdf - 4>&-; echo $? >&4) 3>&- | + eval "$cmp" - - >&3 + ) + elif # Reject Solaris 8's buggy /bin/bash 2.03. + echo X | (echo X | eval "$cmp" /dev/fd/5 - >/dev/null 2>&1) 5<&0; then + # NOTE: xz_status will contain two numbers. + xz_status=$( + exec 4>&1 + ($xz1 -cdf -- "$1" 4>&-; echo $? >&4) 3>&- | + ( ($xz2 -cdf -- "$2" 4>&-; echo $? >&4) 3>&- 5<&- &3) 5<&0 + ) + else + F=`expr "/$2" : '.*/\(.*\)[-.][ablmotxz2]*$'` || F=$prog + tmp= + trap ' + test -n "$tmp" && rm -rf "$tmp" + (exit 2); exit 2 + ' HUP INT PIPE TERM 0 + if type mktemp >/dev/null 2>&1; then + # Note that FreeBSD's mktemp isn't fully compatible with + # the implementations from mktemp.org and GNU coreutils. + # It is important that the -t argument is the last argument + # and that no "--" is used between -t and the template argument. + # This way this command works on all implementations. + tmp=`mktemp -d -t "$prog.XXXXXXXXXX"` || exit 2 + else + # Fallback code if mktemp is missing. This isn't as + # robust as using mktemp since this doesn't try with + # different file names in case of a file name conflict. + # + # There's no need to save the original umask since + # we don't create any non-temp files. Note that using + # mkdir -m 0077 isn't secure since some mkdir implementations + # create the dir with the default umask and chmod the + # the dir afterwards. + umask 0077 + mkdir -- "${TMPDIR-/tmp}/$prog.$$" || exit 2 + tmp="${TMPDIR-/tmp}/$prog.$$" + fi + $xz2 -cdf -- "$2" > "$tmp/$F" || exit 2 + xz_status=$( + exec 4>&1 + ($xz1 -cdf -- "$1" 4>&-; echo $? >&4) 3>&- | + eval "$cmp" - '"$tmp/$F"' >&3 + ) + cmp_status=$? + rm -rf "$tmp" || xz_status=$? + trap - HUP INT PIPE TERM 0 + (exit $cmp_status) + fi;; + *) + xz_status=$( + exec 4>&1 + ($xz1 -cdf -- "$1" 4>&-; echo $? >&4) 3>&- | + eval "$cmp" - '"$2"' >&3 + );; + esac;; + *) + case "$2" in + *[-.][zZ] | *_z | *[-.][gx]z | *[-.]bz2 | *[-.]lzma | *[-.]lz | *.t[abglx]z | *.tbz2 | *[-.]lzo | *.tzo | *[-.]zst | *.tzst | *[-.]lz4 | -) + xz_status=$( + exec 4>&1 + ($xz2 -cdf -- "$2" 4>&-; echo $? >&4) 3>&- | + eval "$cmp" '"$1"' - >&3 + );; + *) + eval "$cmp" '"$1"' '"$2"';; + esac;; + esac +else + printf '%s\n' "$0: Invalid number of operands; try '${0##*/} --help' for help" >&2 + exit 2 +fi + +cmp_status=$? +for num in $xz_status ; do + # 0 from decompressor means successful decompression. SIGPIPE from + # decompressor is possible when diff or cmp exits before the whole file + # has been decompressed. In that case we want to retain the exit status + # from diff or cmp. Note that using "trap '' PIPE" is not possible + # because gzip changes its behavior (including exit status) if SIGPIPE + # is ignored. + test "$num" -eq 0 && continue + test "$num" -ge 128 \ + && test "$(kill -l "$num" 2> /dev/null)" = "PIPE" \ + && continue + exit 2 +done +exit $cmp_status diff --git a/miniconda3/bin/xzegrep b/miniconda3/bin/xzegrep new file mode 100644 index 0000000000000000000000000000000000000000..e740ea1a0f4bfe6eb8cac7cd647069236aec6e28 --- /dev/null +++ b/miniconda3/bin/xzegrep @@ -0,0 +1,302 @@ +#!/bin/sh +# SPDX-License-Identifier: GPL-2.0-or-later + +# xzgrep -- a wrapper around a grep program that decompresses files as needed +# Adapted from a version sent by Charles Levert + +# Copyright (C) 1998, 2001, 2002, 2006, 2007 Free Software Foundation +# Copyright (C) 1993 Jean-loup Gailly + +# Modified for XZ Utils by Andrew Dudman and Lasse Collin. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# shellcheck shell=sh disable=SC1003,SC2016 + + +#SET_PATH - This line is a placeholder to ease patching this script. + +# Instead of unsetting XZ_OPT, just make sure that xz will use file format +# autodetection. This way memory usage limit and thread limit can be +# specified via XZ_OPT. With gzip, bzip2, and lzop it's OK to just unset the +# environment variables. +xz='xz --format=auto' +unset GZIP BZIP BZIP2 LZOP + +case ${0##*/} in + *egrep*) prog=xzegrep; grep=${GREP:-grep -E};; + *fgrep*) prog=xzfgrep; grep=${GREP:-grep -F};; + *) prog=xzgrep; grep=${GREP:-grep};; +esac + +version="$prog (XZ Utils) 5.8.2" + +usage="Usage: ${0##*/} [OPTION]... [-e] PATTERN [FILE]... +Look for instances of PATTERN in the input FILEs, using their +uncompressed contents if they are compressed. + +OPTIONs are the same as for '$grep'. + +Report bugs to ." + +# sed script to escape all ' for the shell, and then (to handle trailing +# newlines correctly) turn trailing X on last line into '. +escape=' + s/'\''/'\''\\'\'''\''/g + $s/X$/'\''/ +' +operands= +have_pat=0 +files_with_matches=0 +files_without_matches=0 +no_filename=0 +with_filename=0 + +# See if -H and --label options are supported (GNU and *BSDs). +if test f:x = "$(eval "echo x | $grep -H --label=f x 2> /dev/null")"; then + grep_supports_label=1 +else + grep_supports_label=0 +fi + +while test $# -ne 0; do + option=$1 + shift + optarg= + + case $option in + (-[0123456789abcdEFGhHiIKlLnoPqrRsTuUvVwxyzZ]*[!0123456789]*) + # Something like -Fiv was specified, that is, $option contains more + # than one option of which the first option (in this example -F) + # doesn't take an argument. Split the first option into a standalone + # argument and continue parsing the rest of the options (in this example, + # replace -Fiv with -iv in the argument list and set option=-F). + # + # If there are digits [0-9] they are treated as if they were a single + # option character because this syntax is an alias for -C for GNU grep. + # For example, "grep -25F" is equivalent to "grep -C25 -F". If only + # digits are specified like "grep -25" we don't get here because the + # above pattern in the case-statement doesn't match such strings. + arg2=-\'$(LC_ALL=C expr "X${option}X" : 'X-.[0-9]*\(.*\)' | + LC_ALL=C sed "$escape") + eval "set -- $arg2 "'${1+"$@"}' + option=$(LC_ALL=C expr "X$option" : 'X\(-.[0-9]*\)');; + (--binary-*=* | --[lm]a*=* | --reg*=*) + # These options require an argument and an argument has been provided + # with the --foo=argument syntax. All is good. + ;; + (-[ABCDefmX] | --binary-* | --file | --[lm]a* | --reg*) + # These options require an argument which should now be in $1. + # If it isn't, display an error and exit. + case ${1?"$option option requires an argument"} in + (*\'*) + optarg=" '"$(printf '%sX\n' "$1" | LC_ALL=C sed "$escape");; + (*) + optarg=" '$1'";; + esac + shift;; + (--) + break;; + (-?*) + ;; + (*) + case $option in + (*\'*) + operands="$operands '"$(printf '%sX\n' "$option" | + LC_ALL=C sed "$escape");; + (*) + operands="$operands '$option'";; + esac + ${POSIXLY_CORRECT+break} + continue;; + esac + + case $option in + (-[drRzZ] | --di* | --exc* | --inc* | --rec* | --nu*) + printf >&2 '%s: %s: Option not supported\n' "$0" "$option" + exit 2;; + (-[ef]* | --file | --file=* | --reg*) + have_pat=1;; + (--h | --he | --hel | --help) + printf '%s\n' "$usage" || exit 2 + exit;; + (-H | --wi | --wit | --with | --with- | --with-f | --with-fi \ + | --with-fil | --with-file | --with-filen | --with-filena | --with-filenam \ + | --with-filename) + with_filename=1 + continue;; + (-l | --files-with-*) + files_with_matches=1 + continue;; + (-L | --files-witho*) + files_without_matches=1 + continue;; + (-h | --no-f*) + no_filename=1;; + (-V | --v | --ve | --ver | --vers | --versi | --versio | --version) + printf '%s\n' "$version" || exit 2 + exit;; + esac + + case $option in + (*\'?*) + option=\'$(printf '%sX\n' "$option" | LC_ALL=C sed "$escape");; + (*) + option="'$option'";; + esac + + grep="$grep $option$optarg" +done + +eval "set -- $operands "'${1+"$@"}' + +if test $have_pat -eq 0; then + case ${1?"Missing pattern; try '${0##*/} --help' for help"} in + (*\'*) + grep="$grep -e '"$(printf '%sX\n' "$1" | LC_ALL=C sed "$escape");; + (*) + grep="$grep -e '$1'";; + esac + shift +fi + +if test $# -eq 0; then + set -- - +fi + +exec 3>&1 + +# res=1 means that no file matched yet +res=1 + +for i; do + case $i in + *[-.][zZ] | *_z | *[-.]gz | *.t[ag]z) uncompress="gzip -cdf";; + *[-.]bz2 | *[-.]tbz | *.tbz2) uncompress="bzip2 -cdf";; + *[-.]lzo | *[-.]tzo) uncompress="lzop -cdf";; + *[-.]zst | *[-.]tzst) uncompress="zstd -cdfq";; # zstd needs -q. + *[-.]lz4) uncompress="lz4 -cdf";; + *) uncompress="$xz -cdfqQ";; # -qQ to ignore warnings like unsupp. check. + esac + # xz_status will hold the decompressor's exit status. + # Exit status of grep (and in rare cases, printf or sed) is + # available as the exit status of this assignment command. + xz_status=$( + exec 5>&1 + ($uncompress -- "$i" 5>&-; echo $? >&5) 3>&- | + if test $files_with_matches -eq 1; then + eval "$grep -q" && { printf '%s\n' "$i" || exit 2; } + elif test $files_without_matches -eq 1; then + eval "$grep -q" || { + r=$? + if test $r -eq 1; then + printf '%s\n' "$i" || r=2 + fi + exit $r + } + elif test $with_filename -eq 0 && + { test $# -eq 1 || test $no_filename -eq 1; }; then + eval "$grep" + elif test $grep_supports_label -eq 1; then + # The grep implementation in use allows us to specify the filename + # that grep will prefix to the output lines. This is faster and + # less prone to security bugs than the fallback method that uses sed. + # This also avoids confusing output with GNU grep >= 3.5 (2020-09-27) + # which prints "binary file matches" to stderr instead of stdout. + # + # If reading from stdin, let grep use whatever name it prefers for + # stdin. With GNU grep it is a locale-specific translated string. + if test "x$i" = "x-"; then + eval "$grep -H" + else + eval "$grep -H --label \"\$i\"" + fi + else + # Append a colon so that the last character will never be a newline + # which would otherwise get lost in shell command substitution. + i="$i:" + + # Escape & \ | and newlines only if such characters are present + # (speed optimization). + case $i in + (*' +'* | *'&'* | *'\'* | *'|'*) + # If sed fails, set i to a known safe string to ensure that + # failing sed did not create a half-escaped dangerous string. + i=$(printf '%s\n' "$i" | LC_ALL=C sed 's/[&\|]/\\&/g; $!s/$/\\/') || + i='(unknown filename):';; + esac + + # $i already ends with a colon so do not add it here. + sed_script="s|^|$i|" + + # If grep or sed fails, pick the larger value of the two exit statuses. + # If sed fails, use at least 2 since we use >= 2 to indicate errors. + r=$( + exec 4>&1 + (eval "$grep" 4>&-; echo $? >&4) 3>&- | + LC_ALL=C sed "$sed_script" >&3 4>&- + ) || { + sed_status=$? + test "$sed_status" -lt 2 && sed_status=2 + test "$r" -lt "$sed_status" && r=$sed_status + } + exit $r + fi >&3 5>&- + ) + r=$? + + # If grep or sed or other non-decompression command failed with a signal, + # exit immediately and ignore the possible remaining files. + # + # NOTE: Instead of 128 + signal_number, some shells use + # 256 + signal_number (ksh) or 384 + signal_number (yash). + # This is fine for us since their "exit" and "kill -l" commands take + # this into account. (At least the versions I tried do but there is + # a report of an old ksh variant whose "exit" truncates the exit status + # to 8 bits without any special handling for values indicating a signal.) + test "$r" -ge 128 && exit "$r" + + if test -z "$xz_status"; then + # Something unusual happened, for example, we got a signal and + # the exit status of the decompressor was never echoed and thus + # $xz_status is empty. Exit immediately and ignore the possible + # remaining files. + exit 2 + elif test "$xz_status" -ge 128; then + # The decompressor died due to a signal. SIGPIPE is ignored since it can + # occur if grep exits before the whole file has been decompressed (grep -q + # can do that). If the decompressor died with some other signal, exit + # immediately and ignore the possible remaining files. + test "$(kill -l "$xz_status" 2> /dev/null)" != "PIPE" && exit "$xz_status" + elif test "$xz_status" -gt 0; then + # Decompression failed but we will continue with the remaining + # files anyway. Set exit status to at least 2 to indicate an error. + test "$r" -lt 2 && r=2 + fi + + # Since res=1 is the initial value, we only need to care about + # matches (r == 0) and errors (r >= 2) here; r == 1 can be ignored. + if test "$r" -ge 2; then + # An error occurred in decompressor, grep, or some other command. Update + # res unless a larger error code has been seen with an earlier file. + test "$res" -lt "$r" && res=$r + elif test "$r" -eq 0; then + # grep found a match and no errors occurred. Update res if no errors have + # occurred with earlier files. + test "$res" -eq 1 && res=0 + fi +done + +# 0: At least one file matched and no errors occurred. +# 1: No matches were found and no errors occurred. +# >=2: Error. It's unknown if matches were found. +exit "$res" diff --git a/miniconda3/bin/xzfgrep b/miniconda3/bin/xzfgrep new file mode 100644 index 0000000000000000000000000000000000000000..e740ea1a0f4bfe6eb8cac7cd647069236aec6e28 --- /dev/null +++ b/miniconda3/bin/xzfgrep @@ -0,0 +1,302 @@ +#!/bin/sh +# SPDX-License-Identifier: GPL-2.0-or-later + +# xzgrep -- a wrapper around a grep program that decompresses files as needed +# Adapted from a version sent by Charles Levert + +# Copyright (C) 1998, 2001, 2002, 2006, 2007 Free Software Foundation +# Copyright (C) 1993 Jean-loup Gailly + +# Modified for XZ Utils by Andrew Dudman and Lasse Collin. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# shellcheck shell=sh disable=SC1003,SC2016 + + +#SET_PATH - This line is a placeholder to ease patching this script. + +# Instead of unsetting XZ_OPT, just make sure that xz will use file format +# autodetection. This way memory usage limit and thread limit can be +# specified via XZ_OPT. With gzip, bzip2, and lzop it's OK to just unset the +# environment variables. +xz='xz --format=auto' +unset GZIP BZIP BZIP2 LZOP + +case ${0##*/} in + *egrep*) prog=xzegrep; grep=${GREP:-grep -E};; + *fgrep*) prog=xzfgrep; grep=${GREP:-grep -F};; + *) prog=xzgrep; grep=${GREP:-grep};; +esac + +version="$prog (XZ Utils) 5.8.2" + +usage="Usage: ${0##*/} [OPTION]... [-e] PATTERN [FILE]... +Look for instances of PATTERN in the input FILEs, using their +uncompressed contents if they are compressed. + +OPTIONs are the same as for '$grep'. + +Report bugs to ." + +# sed script to escape all ' for the shell, and then (to handle trailing +# newlines correctly) turn trailing X on last line into '. +escape=' + s/'\''/'\''\\'\'''\''/g + $s/X$/'\''/ +' +operands= +have_pat=0 +files_with_matches=0 +files_without_matches=0 +no_filename=0 +with_filename=0 + +# See if -H and --label options are supported (GNU and *BSDs). +if test f:x = "$(eval "echo x | $grep -H --label=f x 2> /dev/null")"; then + grep_supports_label=1 +else + grep_supports_label=0 +fi + +while test $# -ne 0; do + option=$1 + shift + optarg= + + case $option in + (-[0123456789abcdEFGhHiIKlLnoPqrRsTuUvVwxyzZ]*[!0123456789]*) + # Something like -Fiv was specified, that is, $option contains more + # than one option of which the first option (in this example -F) + # doesn't take an argument. Split the first option into a standalone + # argument and continue parsing the rest of the options (in this example, + # replace -Fiv with -iv in the argument list and set option=-F). + # + # If there are digits [0-9] they are treated as if they were a single + # option character because this syntax is an alias for -C for GNU grep. + # For example, "grep -25F" is equivalent to "grep -C25 -F". If only + # digits are specified like "grep -25" we don't get here because the + # above pattern in the case-statement doesn't match such strings. + arg2=-\'$(LC_ALL=C expr "X${option}X" : 'X-.[0-9]*\(.*\)' | + LC_ALL=C sed "$escape") + eval "set -- $arg2 "'${1+"$@"}' + option=$(LC_ALL=C expr "X$option" : 'X\(-.[0-9]*\)');; + (--binary-*=* | --[lm]a*=* | --reg*=*) + # These options require an argument and an argument has been provided + # with the --foo=argument syntax. All is good. + ;; + (-[ABCDefmX] | --binary-* | --file | --[lm]a* | --reg*) + # These options require an argument which should now be in $1. + # If it isn't, display an error and exit. + case ${1?"$option option requires an argument"} in + (*\'*) + optarg=" '"$(printf '%sX\n' "$1" | LC_ALL=C sed "$escape");; + (*) + optarg=" '$1'";; + esac + shift;; + (--) + break;; + (-?*) + ;; + (*) + case $option in + (*\'*) + operands="$operands '"$(printf '%sX\n' "$option" | + LC_ALL=C sed "$escape");; + (*) + operands="$operands '$option'";; + esac + ${POSIXLY_CORRECT+break} + continue;; + esac + + case $option in + (-[drRzZ] | --di* | --exc* | --inc* | --rec* | --nu*) + printf >&2 '%s: %s: Option not supported\n' "$0" "$option" + exit 2;; + (-[ef]* | --file | --file=* | --reg*) + have_pat=1;; + (--h | --he | --hel | --help) + printf '%s\n' "$usage" || exit 2 + exit;; + (-H | --wi | --wit | --with | --with- | --with-f | --with-fi \ + | --with-fil | --with-file | --with-filen | --with-filena | --with-filenam \ + | --with-filename) + with_filename=1 + continue;; + (-l | --files-with-*) + files_with_matches=1 + continue;; + (-L | --files-witho*) + files_without_matches=1 + continue;; + (-h | --no-f*) + no_filename=1;; + (-V | --v | --ve | --ver | --vers | --versi | --versio | --version) + printf '%s\n' "$version" || exit 2 + exit;; + esac + + case $option in + (*\'?*) + option=\'$(printf '%sX\n' "$option" | LC_ALL=C sed "$escape");; + (*) + option="'$option'";; + esac + + grep="$grep $option$optarg" +done + +eval "set -- $operands "'${1+"$@"}' + +if test $have_pat -eq 0; then + case ${1?"Missing pattern; try '${0##*/} --help' for help"} in + (*\'*) + grep="$grep -e '"$(printf '%sX\n' "$1" | LC_ALL=C sed "$escape");; + (*) + grep="$grep -e '$1'";; + esac + shift +fi + +if test $# -eq 0; then + set -- - +fi + +exec 3>&1 + +# res=1 means that no file matched yet +res=1 + +for i; do + case $i in + *[-.][zZ] | *_z | *[-.]gz | *.t[ag]z) uncompress="gzip -cdf";; + *[-.]bz2 | *[-.]tbz | *.tbz2) uncompress="bzip2 -cdf";; + *[-.]lzo | *[-.]tzo) uncompress="lzop -cdf";; + *[-.]zst | *[-.]tzst) uncompress="zstd -cdfq";; # zstd needs -q. + *[-.]lz4) uncompress="lz4 -cdf";; + *) uncompress="$xz -cdfqQ";; # -qQ to ignore warnings like unsupp. check. + esac + # xz_status will hold the decompressor's exit status. + # Exit status of grep (and in rare cases, printf or sed) is + # available as the exit status of this assignment command. + xz_status=$( + exec 5>&1 + ($uncompress -- "$i" 5>&-; echo $? >&5) 3>&- | + if test $files_with_matches -eq 1; then + eval "$grep -q" && { printf '%s\n' "$i" || exit 2; } + elif test $files_without_matches -eq 1; then + eval "$grep -q" || { + r=$? + if test $r -eq 1; then + printf '%s\n' "$i" || r=2 + fi + exit $r + } + elif test $with_filename -eq 0 && + { test $# -eq 1 || test $no_filename -eq 1; }; then + eval "$grep" + elif test $grep_supports_label -eq 1; then + # The grep implementation in use allows us to specify the filename + # that grep will prefix to the output lines. This is faster and + # less prone to security bugs than the fallback method that uses sed. + # This also avoids confusing output with GNU grep >= 3.5 (2020-09-27) + # which prints "binary file matches" to stderr instead of stdout. + # + # If reading from stdin, let grep use whatever name it prefers for + # stdin. With GNU grep it is a locale-specific translated string. + if test "x$i" = "x-"; then + eval "$grep -H" + else + eval "$grep -H --label \"\$i\"" + fi + else + # Append a colon so that the last character will never be a newline + # which would otherwise get lost in shell command substitution. + i="$i:" + + # Escape & \ | and newlines only if such characters are present + # (speed optimization). + case $i in + (*' +'* | *'&'* | *'\'* | *'|'*) + # If sed fails, set i to a known safe string to ensure that + # failing sed did not create a half-escaped dangerous string. + i=$(printf '%s\n' "$i" | LC_ALL=C sed 's/[&\|]/\\&/g; $!s/$/\\/') || + i='(unknown filename):';; + esac + + # $i already ends with a colon so do not add it here. + sed_script="s|^|$i|" + + # If grep or sed fails, pick the larger value of the two exit statuses. + # If sed fails, use at least 2 since we use >= 2 to indicate errors. + r=$( + exec 4>&1 + (eval "$grep" 4>&-; echo $? >&4) 3>&- | + LC_ALL=C sed "$sed_script" >&3 4>&- + ) || { + sed_status=$? + test "$sed_status" -lt 2 && sed_status=2 + test "$r" -lt "$sed_status" && r=$sed_status + } + exit $r + fi >&3 5>&- + ) + r=$? + + # If grep or sed or other non-decompression command failed with a signal, + # exit immediately and ignore the possible remaining files. + # + # NOTE: Instead of 128 + signal_number, some shells use + # 256 + signal_number (ksh) or 384 + signal_number (yash). + # This is fine for us since their "exit" and "kill -l" commands take + # this into account. (At least the versions I tried do but there is + # a report of an old ksh variant whose "exit" truncates the exit status + # to 8 bits without any special handling for values indicating a signal.) + test "$r" -ge 128 && exit "$r" + + if test -z "$xz_status"; then + # Something unusual happened, for example, we got a signal and + # the exit status of the decompressor was never echoed and thus + # $xz_status is empty. Exit immediately and ignore the possible + # remaining files. + exit 2 + elif test "$xz_status" -ge 128; then + # The decompressor died due to a signal. SIGPIPE is ignored since it can + # occur if grep exits before the whole file has been decompressed (grep -q + # can do that). If the decompressor died with some other signal, exit + # immediately and ignore the possible remaining files. + test "$(kill -l "$xz_status" 2> /dev/null)" != "PIPE" && exit "$xz_status" + elif test "$xz_status" -gt 0; then + # Decompression failed but we will continue with the remaining + # files anyway. Set exit status to at least 2 to indicate an error. + test "$r" -lt 2 && r=2 + fi + + # Since res=1 is the initial value, we only need to care about + # matches (r == 0) and errors (r >= 2) here; r == 1 can be ignored. + if test "$r" -ge 2; then + # An error occurred in decompressor, grep, or some other command. Update + # res unless a larger error code has been seen with an earlier file. + test "$res" -lt "$r" && res=$r + elif test "$r" -eq 0; then + # grep found a match and no errors occurred. Update res if no errors have + # occurred with earlier files. + test "$res" -eq 1 && res=0 + fi +done + +# 0: At least one file matched and no errors occurred. +# 1: No matches were found and no errors occurred. +# >=2: Error. It's unknown if matches were found. +exit "$res" diff --git a/miniconda3/bin/xzgrep b/miniconda3/bin/xzgrep new file mode 100644 index 0000000000000000000000000000000000000000..e740ea1a0f4bfe6eb8cac7cd647069236aec6e28 --- /dev/null +++ b/miniconda3/bin/xzgrep @@ -0,0 +1,302 @@ +#!/bin/sh +# SPDX-License-Identifier: GPL-2.0-or-later + +# xzgrep -- a wrapper around a grep program that decompresses files as needed +# Adapted from a version sent by Charles Levert + +# Copyright (C) 1998, 2001, 2002, 2006, 2007 Free Software Foundation +# Copyright (C) 1993 Jean-loup Gailly + +# Modified for XZ Utils by Andrew Dudman and Lasse Collin. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# shellcheck shell=sh disable=SC1003,SC2016 + + +#SET_PATH - This line is a placeholder to ease patching this script. + +# Instead of unsetting XZ_OPT, just make sure that xz will use file format +# autodetection. This way memory usage limit and thread limit can be +# specified via XZ_OPT. With gzip, bzip2, and lzop it's OK to just unset the +# environment variables. +xz='xz --format=auto' +unset GZIP BZIP BZIP2 LZOP + +case ${0##*/} in + *egrep*) prog=xzegrep; grep=${GREP:-grep -E};; + *fgrep*) prog=xzfgrep; grep=${GREP:-grep -F};; + *) prog=xzgrep; grep=${GREP:-grep};; +esac + +version="$prog (XZ Utils) 5.8.2" + +usage="Usage: ${0##*/} [OPTION]... [-e] PATTERN [FILE]... +Look for instances of PATTERN in the input FILEs, using their +uncompressed contents if they are compressed. + +OPTIONs are the same as for '$grep'. + +Report bugs to ." + +# sed script to escape all ' for the shell, and then (to handle trailing +# newlines correctly) turn trailing X on last line into '. +escape=' + s/'\''/'\''\\'\'''\''/g + $s/X$/'\''/ +' +operands= +have_pat=0 +files_with_matches=0 +files_without_matches=0 +no_filename=0 +with_filename=0 + +# See if -H and --label options are supported (GNU and *BSDs). +if test f:x = "$(eval "echo x | $grep -H --label=f x 2> /dev/null")"; then + grep_supports_label=1 +else + grep_supports_label=0 +fi + +while test $# -ne 0; do + option=$1 + shift + optarg= + + case $option in + (-[0123456789abcdEFGhHiIKlLnoPqrRsTuUvVwxyzZ]*[!0123456789]*) + # Something like -Fiv was specified, that is, $option contains more + # than one option of which the first option (in this example -F) + # doesn't take an argument. Split the first option into a standalone + # argument and continue parsing the rest of the options (in this example, + # replace -Fiv with -iv in the argument list and set option=-F). + # + # If there are digits [0-9] they are treated as if they were a single + # option character because this syntax is an alias for -C for GNU grep. + # For example, "grep -25F" is equivalent to "grep -C25 -F". If only + # digits are specified like "grep -25" we don't get here because the + # above pattern in the case-statement doesn't match such strings. + arg2=-\'$(LC_ALL=C expr "X${option}X" : 'X-.[0-9]*\(.*\)' | + LC_ALL=C sed "$escape") + eval "set -- $arg2 "'${1+"$@"}' + option=$(LC_ALL=C expr "X$option" : 'X\(-.[0-9]*\)');; + (--binary-*=* | --[lm]a*=* | --reg*=*) + # These options require an argument and an argument has been provided + # with the --foo=argument syntax. All is good. + ;; + (-[ABCDefmX] | --binary-* | --file | --[lm]a* | --reg*) + # These options require an argument which should now be in $1. + # If it isn't, display an error and exit. + case ${1?"$option option requires an argument"} in + (*\'*) + optarg=" '"$(printf '%sX\n' "$1" | LC_ALL=C sed "$escape");; + (*) + optarg=" '$1'";; + esac + shift;; + (--) + break;; + (-?*) + ;; + (*) + case $option in + (*\'*) + operands="$operands '"$(printf '%sX\n' "$option" | + LC_ALL=C sed "$escape");; + (*) + operands="$operands '$option'";; + esac + ${POSIXLY_CORRECT+break} + continue;; + esac + + case $option in + (-[drRzZ] | --di* | --exc* | --inc* | --rec* | --nu*) + printf >&2 '%s: %s: Option not supported\n' "$0" "$option" + exit 2;; + (-[ef]* | --file | --file=* | --reg*) + have_pat=1;; + (--h | --he | --hel | --help) + printf '%s\n' "$usage" || exit 2 + exit;; + (-H | --wi | --wit | --with | --with- | --with-f | --with-fi \ + | --with-fil | --with-file | --with-filen | --with-filena | --with-filenam \ + | --with-filename) + with_filename=1 + continue;; + (-l | --files-with-*) + files_with_matches=1 + continue;; + (-L | --files-witho*) + files_without_matches=1 + continue;; + (-h | --no-f*) + no_filename=1;; + (-V | --v | --ve | --ver | --vers | --versi | --versio | --version) + printf '%s\n' "$version" || exit 2 + exit;; + esac + + case $option in + (*\'?*) + option=\'$(printf '%sX\n' "$option" | LC_ALL=C sed "$escape");; + (*) + option="'$option'";; + esac + + grep="$grep $option$optarg" +done + +eval "set -- $operands "'${1+"$@"}' + +if test $have_pat -eq 0; then + case ${1?"Missing pattern; try '${0##*/} --help' for help"} in + (*\'*) + grep="$grep -e '"$(printf '%sX\n' "$1" | LC_ALL=C sed "$escape");; + (*) + grep="$grep -e '$1'";; + esac + shift +fi + +if test $# -eq 0; then + set -- - +fi + +exec 3>&1 + +# res=1 means that no file matched yet +res=1 + +for i; do + case $i in + *[-.][zZ] | *_z | *[-.]gz | *.t[ag]z) uncompress="gzip -cdf";; + *[-.]bz2 | *[-.]tbz | *.tbz2) uncompress="bzip2 -cdf";; + *[-.]lzo | *[-.]tzo) uncompress="lzop -cdf";; + *[-.]zst | *[-.]tzst) uncompress="zstd -cdfq";; # zstd needs -q. + *[-.]lz4) uncompress="lz4 -cdf";; + *) uncompress="$xz -cdfqQ";; # -qQ to ignore warnings like unsupp. check. + esac + # xz_status will hold the decompressor's exit status. + # Exit status of grep (and in rare cases, printf or sed) is + # available as the exit status of this assignment command. + xz_status=$( + exec 5>&1 + ($uncompress -- "$i" 5>&-; echo $? >&5) 3>&- | + if test $files_with_matches -eq 1; then + eval "$grep -q" && { printf '%s\n' "$i" || exit 2; } + elif test $files_without_matches -eq 1; then + eval "$grep -q" || { + r=$? + if test $r -eq 1; then + printf '%s\n' "$i" || r=2 + fi + exit $r + } + elif test $with_filename -eq 0 && + { test $# -eq 1 || test $no_filename -eq 1; }; then + eval "$grep" + elif test $grep_supports_label -eq 1; then + # The grep implementation in use allows us to specify the filename + # that grep will prefix to the output lines. This is faster and + # less prone to security bugs than the fallback method that uses sed. + # This also avoids confusing output with GNU grep >= 3.5 (2020-09-27) + # which prints "binary file matches" to stderr instead of stdout. + # + # If reading from stdin, let grep use whatever name it prefers for + # stdin. With GNU grep it is a locale-specific translated string. + if test "x$i" = "x-"; then + eval "$grep -H" + else + eval "$grep -H --label \"\$i\"" + fi + else + # Append a colon so that the last character will never be a newline + # which would otherwise get lost in shell command substitution. + i="$i:" + + # Escape & \ | and newlines only if such characters are present + # (speed optimization). + case $i in + (*' +'* | *'&'* | *'\'* | *'|'*) + # If sed fails, set i to a known safe string to ensure that + # failing sed did not create a half-escaped dangerous string. + i=$(printf '%s\n' "$i" | LC_ALL=C sed 's/[&\|]/\\&/g; $!s/$/\\/') || + i='(unknown filename):';; + esac + + # $i already ends with a colon so do not add it here. + sed_script="s|^|$i|" + + # If grep or sed fails, pick the larger value of the two exit statuses. + # If sed fails, use at least 2 since we use >= 2 to indicate errors. + r=$( + exec 4>&1 + (eval "$grep" 4>&-; echo $? >&4) 3>&- | + LC_ALL=C sed "$sed_script" >&3 4>&- + ) || { + sed_status=$? + test "$sed_status" -lt 2 && sed_status=2 + test "$r" -lt "$sed_status" && r=$sed_status + } + exit $r + fi >&3 5>&- + ) + r=$? + + # If grep or sed or other non-decompression command failed with a signal, + # exit immediately and ignore the possible remaining files. + # + # NOTE: Instead of 128 + signal_number, some shells use + # 256 + signal_number (ksh) or 384 + signal_number (yash). + # This is fine for us since their "exit" and "kill -l" commands take + # this into account. (At least the versions I tried do but there is + # a report of an old ksh variant whose "exit" truncates the exit status + # to 8 bits without any special handling for values indicating a signal.) + test "$r" -ge 128 && exit "$r" + + if test -z "$xz_status"; then + # Something unusual happened, for example, we got a signal and + # the exit status of the decompressor was never echoed and thus + # $xz_status is empty. Exit immediately and ignore the possible + # remaining files. + exit 2 + elif test "$xz_status" -ge 128; then + # The decompressor died due to a signal. SIGPIPE is ignored since it can + # occur if grep exits before the whole file has been decompressed (grep -q + # can do that). If the decompressor died with some other signal, exit + # immediately and ignore the possible remaining files. + test "$(kill -l "$xz_status" 2> /dev/null)" != "PIPE" && exit "$xz_status" + elif test "$xz_status" -gt 0; then + # Decompression failed but we will continue with the remaining + # files anyway. Set exit status to at least 2 to indicate an error. + test "$r" -lt 2 && r=2 + fi + + # Since res=1 is the initial value, we only need to care about + # matches (r == 0) and errors (r >= 2) here; r == 1 can be ignored. + if test "$r" -ge 2; then + # An error occurred in decompressor, grep, or some other command. Update + # res unless a larger error code has been seen with an earlier file. + test "$res" -lt "$r" && res=$r + elif test "$r" -eq 0; then + # grep found a match and no errors occurred. Update res if no errors have + # occurred with earlier files. + test "$res" -eq 1 && res=0 + fi +done + +# 0: At least one file matched and no errors occurred. +# 1: No matches were found and no errors occurred. +# >=2: Error. It's unknown if matches were found. +exit "$res" diff --git a/miniconda3/bin/xzless b/miniconda3/bin/xzless new file mode 100644 index 0000000000000000000000000000000000000000..bd177e93df1cea09f4ab4aeb7efc4582ba4fea4f --- /dev/null +++ b/miniconda3/bin/xzless @@ -0,0 +1,76 @@ +#!/bin/sh +# SPDX-License-Identifier: GPL-2.0-or-later + +# Copyright (C) 1998, 2002, 2006, 2007 Free Software Foundation + +# The original version for gzip was written by Paul Eggert. +# Modified for XZ Utils by Andrew Dudman and Lasse Collin. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# shellcheck shell=sh disable=SC2089,SC2090 + + +#SET_PATH - This line is a placeholder to ease patching this script. + +# Instead of unsetting XZ_OPT, just make sure that xz will use file format +# autodetection. This way memory usage limit and thread limit can be +# specified via XZ_OPT. +xz='xz --format=auto' + +version='xzless (XZ Utils) 5.8.2' + +usage="Usage: ${0##*/} [OPTION]... [FILE]... +Like 'less', but operate on the uncompressed contents of xz compressed FILEs. + +Options are the same as for 'less'. + +Report bugs to ." + +case $1 in + --help) printf '%s\n' "$usage" || exit 2; exit;; + --version) printf '%s\n' "$version" || exit 2; exit;; +esac + +if test "${LESSMETACHARS+set}" != set; then + # Work around a bug in less 394 and earlier; + # it mishandles the metacharacters '$%=~'. + space=' ' + tab=' ' + nl=' +' + LESSMETACHARS="$space$tab$nl'"';*?"()<>[|&^`#\$%=~' +fi + +VER=$(less -V | { read _ ver _ && echo ${ver%%.*}; }) +if test "$VER" -ge 451; then + # less 451 or later: If the compressed file is valid but has + # zero bytes of uncompressed data, using two vertical bars ||- makes + # "less" check the exit status of xz and if it is zero then display + # an empty file. With a single vertical bar |- and no output from xz, + # "less" would attempt to display the raw input file instead. + LESSOPEN="||-$xz -cdfqQ -- %s" +elif test "$VER" -ge 429; then + # less 429 or later: LESSOPEN pipe will be used on + # standard input if $LESSOPEN begins with |-. + LESSOPEN="|-$xz -cdfqQ -- %s" +else + LESSOPEN="|$xz -cdfqQ -- %s" +fi + +SHOW_PREPROC_ERRORS= +if test "$VER" -ge 632; then + SHOW_PREPROC_ERRORS=--show-preproc-errors +fi + +export LESSMETACHARS LESSOPEN + +exec less $SHOW_PREPROC_ERRORS "$@" diff --git a/miniconda3/bin/xzmore b/miniconda3/bin/xzmore new file mode 100644 index 0000000000000000000000000000000000000000..0816c6dbca2c077885ae788dc4e6c379d7dd2920 --- /dev/null +++ b/miniconda3/bin/xzmore @@ -0,0 +1,82 @@ +#!/bin/sh +# SPDX-License-Identifier: GPL-2.0-or-later + +# Copyright (C) 2001, 2002, 2007 Free Software Foundation +# Copyright (C) 1992, 1993 Jean-loup Gailly + +# Modified for XZ Utils by Andrew Dudman and Lasse Collin. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# shellcheck shell=sh + + +#SET_PATH - This line is a placeholder to ease patching this script. + +# Instead of unsetting XZ_OPT, just make sure that xz will use file format +# autodetection. This way memory usage limit and thread limit can be +# specified via XZ_OPT. +xz='xz --format=auto' + +version='xzmore (XZ Utils) 5.8.2' + +usage="Usage: ${0##*/} [OPTION]... [FILE]... +Like 'more', but operate on the uncompressed contents of xz compressed FILEs. + +Report bugs to ." + +case $1 in + --help) printf '%s\n' "$usage" || exit 2; exit;; + --version) printf '%s\n' "$version" || exit 2; exit;; +esac + +oldtty=`stty -g 2>/dev/null` +if stty -cbreak 2>/dev/null; then + cb='cbreak'; ncb='-cbreak' +else + # 'stty min 1' resets eof to ^a on both SunOS and SysV! + cb='min 1 -icanon'; ncb='icanon eof ^d' +fi +if test $? -eq 0 && test -n "$oldtty"; then + trap 'stty $oldtty 2>/dev/null; exit' 0 2 3 5 10 13 15 +else + trap 'stty $ncb echo 2>/dev/null; exit' 0 2 3 5 10 13 15 +fi + +if test $# = 0; then + if test -t 0; then + printf '%s\n' "$usage"; exit 1 + else + $xz -cdfqQ | eval "${PAGER:-more}" + fi +else + FIRST=1 + for FILE; do + true < "$FILE" || continue + if test $FIRST -eq 0; then + printf "%s--More--(Next file: %s)" "" "$FILE" + stty $cb -echo 2>/dev/null + ANS=`dd bs=1 count=1 2>/dev/null` + stty $ncb echo 2>/dev/null + echo " " + case "$ANS" in + [eq]) exit;; + esac + fi + if test "$ANS" != 's'; then + printf '%s\n' "------> $FILE <------" + $xz -cdfqQ -- "$FILE" | eval "${PAGER:-more}" + fi + if test -t 1; then + FIRST=0 + fi + done +fi diff --git a/miniconda3/bin/zstdgrep b/miniconda3/bin/zstdgrep new file mode 100644 index 0000000000000000000000000000000000000000..61efaa9474a0058699a0780c769c4b49e487b3e1 --- /dev/null +++ b/miniconda3/bin/zstdgrep @@ -0,0 +1,134 @@ +#!/bin/sh +# +# Copyright (c) 2003 Thomas Klausner. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR +# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +grep=${GREP:-grep} +zcat=${ZCAT:-zstdcat} + +endofopts=0 +pattern_found=0 +grep_args="" +hyphen=0 +silent=0 + +prog=${0##*/} + +# handle being called 'zegrep' or 'zfgrep' +case $prog in + *egrep*) prog=zegrep; grep_args='-E';; + *fgrep*) prog=zfgrep; grep_args='-F';; + *) prog=zstdgrep;; +esac + +# skip all options and pass them on to grep taking care of options +# with arguments, and if -e was supplied + +while [ "$#" -gt 0 ] && [ "${endofopts}" -eq 0 ]; do + case "$1" in + # from GNU grep-2.5.1 -- keep in sync! + -[ABCDXdefm]) + if [ "$#" -lt 2 ]; then + printf '%s: missing argument for %s flag\n' "${prog}" "$1" >&2 + exit 1 + fi + case "$1" in + -e) + pattern="$2" + pattern_found=1 + shift 2 + break + ;; + -f) + pattern_found=2 + ;; + *) + ;; + esac + grep_args="${grep_args} $1 $2" + shift 2 + ;; + --) + shift + endofopts=1 + ;; + -) + hyphen=1 + shift + ;; + -h) + silent=1 + shift + ;; + -*) + grep_args="${grep_args} $1" + shift + ;; + *) + # pattern to grep for + endofopts=1 + ;; + esac +done + +# if no -e option was found, take next argument as grep-pattern +if [ "${pattern_found}" -lt 1 ]; then + if [ "$#" -ge 1 ]; then + pattern="$1" + shift + elif [ "${hyphen}" -gt 0 ]; then + pattern="-" + else + printf '%s: missing pattern\n' "${prog}" >&2 + exit 1 + fi +fi + +EXIT_CODE=0 +# call grep ... +if [ "$#" -lt 1 ]; then + # ... on stdin + set -f # Disable file name generation (globbing). + # shellcheck disable=SC2086 + "${zcat}" - | "${grep}" ${grep_args} -- "${pattern}" - + EXIT_CODE=$? + set +f +else + # ... on all files given on the command line + if [ "${silent}" -lt 1 ] && [ "$#" -gt 1 ]; then + grep_args="-H ${grep_args}" + fi + set -f + while [ "$#" -gt 0 ]; do + # shellcheck disable=SC2086 + if [ $pattern_found -eq 2 ]; then + "${zcat}" -- "$1" | "${grep}" --label="${1}" ${grep_args} -- - + else + "${zcat}" -- "$1" | "${grep}" --label="${1}" ${grep_args} -- "${pattern}" - + fi + [ "$?" -ne 0 ] && EXIT_CODE=1 + shift + done + set +f +fi + +exit "${EXIT_CODE}" diff --git a/miniconda3/bin/zstdless b/miniconda3/bin/zstdless new file mode 100644 index 0000000000000000000000000000000000000000..17726a4f6e1efb5328d0f2c116f20500149db41b --- /dev/null +++ b/miniconda3/bin/zstdless @@ -0,0 +1,8 @@ +#!/bin/sh + +zstd=${ZSTD:-zstd} + +# TODO: Address quirks and bugs tied to old versions of less, provide a mechanism to pass flags directly to zstd + +export LESSOPEN="|-${zstd} -cdfq %s" +exec less "$@" diff --git a/miniconda3/compiler_compat/README b/miniconda3/compiler_compat/README new file mode 100644 index 0000000000000000000000000000000000000000..3b64e59cb4c04380d39e32e1a1d78eb9b275d4f0 --- /dev/null +++ b/miniconda3/compiler_compat/README @@ -0,0 +1,2 @@ +Files in this folder are to enhance backwards compatibility of anaconda software with older compilers. +See: https://github.com/conda/conda/issues/6030 for more information. diff --git a/miniconda3/conda-meta/_libgcc_mutex-0.1-main.json b/miniconda3/conda-meta/_libgcc_mutex-0.1-main.json new file mode 100644 index 0000000000000000000000000000000000000000..38c9a8ca2fc192cf874327f38240021bbb123b9a --- /dev/null +++ b/miniconda3/conda-meta/_libgcc_mutex-0.1-main.json @@ -0,0 +1,31 @@ +{ + "name": "_libgcc_mutex", + "version": "0.1", + "build": "main", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "_libgcc_mutex-0.1-main.conda", + "md5": "c3473ff8bdb3d124ed5ff11ec380d6f9", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda", + "sha256": "476626712f60e5ef0fe04c354727152b1ee5285d57ccd3575c7be930122bd051", + "arch": "x86_64", + "platform": "linux", + "depends": [], + "constrains": [], + "license": "", + "timestamp": 1562011674000, + "size": 3473, + "requested_spec": "pkgs/main/linux-64::_libgcc_mutex==0.1=main", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/_libgcc_mutex-0.1-main.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/_libgcc_mutex-0.1-main", + "files": [], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/_libgcc_mutex-0.1-main", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/_openmp_mutex-5.1-1_gnu.json b/miniconda3/conda-meta/_openmp_mutex-5.1-1_gnu.json new file mode 100644 index 0000000000000000000000000000000000000000..29dfe6636ff8f4b26a2cffaec02356dd24be1e61 --- /dev/null +++ b/miniconda3/conda-meta/_openmp_mutex-5.1-1_gnu.json @@ -0,0 +1,38 @@ +{ + "name": "_openmp_mutex", + "version": "5.1", + "build": "1_gnu", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "_openmp_mutex-5.1-1_gnu.conda", + "md5": "71d281e9c2192cb3fa425655a8defb85", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/_openmp_mutex-5.1-1_gnu.conda", + "sha256": "576011048d23f2e03372263493c5529f802286ff53e8426df99a5b11cc2572f3", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "_libgcc_mutex 0.1 main", + "libgomp >=7.5.0" + ], + "constrains": [ + "openmp_impl 9999" + ], + "license": "BSD-3-Clause", + "timestamp": 1652859733000, + "size": 21315, + "requested_spec": "pkgs/main/linux-64::_openmp_mutex==5.1=1_gnu", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/_openmp_mutex-5.1-1_gnu.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/_openmp_mutex-5.1-1_gnu", + "files": [ + "lib/libgomp.so.1" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/_openmp_mutex-5.1-1_gnu", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/anaconda-anon-usage-0.7.5-pyhb46e38b_100.json b/miniconda3/conda-meta/anaconda-anon-usage-0.7.5-pyhb46e38b_100.json new file mode 100644 index 0000000000000000000000000000000000000000..ceb72e0e37d3bfced058a1145ea16fd50c78c565 --- /dev/null +++ b/miniconda3/conda-meta/anaconda-anon-usage-0.7.5-pyhb46e38b_100.json @@ -0,0 +1,89 @@ +{ + "name": "anaconda-anon-usage", + "version": "0.7.5", + "build": "pyhb46e38b_100", + "build_number": 100, + "channel": "https://repo.anaconda.com/pkgs/main/noarch", + "subdir": "noarch", + "fn": "anaconda-anon-usage-0.7.5-pyhb46e38b_100.conda", + "md5": "e3c78ac191246e36d9ddd1f25cd56fd7", + "url": "https://repo.anaconda.com/pkgs/main/noarch/anaconda-anon-usage-0.7.5-pyhb46e38b_100.conda", + "sha256": "b9d6aff29f1ea89952f8491548d8bd8e823bbdb5b5adf8c8b36a78051115b55c", + "depends": [ + "python >=3.8" + ], + "constrains": [ + "conda >=23.7" + ], + "noarch": "python", + "license": "BSD-3-Clause", + "license_family": "BSD", + "package_type": "noarch_python", + "timestamp": 1764636667000, + "size": 19548, + "requested_spec": "pkgs/main/noarch::anaconda-anon-usage==0.7.5=pyhb46e38b_100", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/anaconda-anon-usage-0.7.5-pyhb46e38b_100.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/anaconda-anon-usage-0.7.5-pyhb46e38b_100", + "files": [ + "lib/python3.13/site-packages/anaconda_anon_usage-0.7.5.dist-info/INSTALLER", + "lib/python3.13/site-packages/anaconda_anon_usage-0.7.5.dist-info/LICENSE", + "lib/python3.13/site-packages/anaconda_anon_usage-0.7.5.dist-info/METADATA", + "lib/python3.13/site-packages/anaconda_anon_usage-0.7.5.dist-info/RECORD", + "lib/python3.13/site-packages/anaconda_anon_usage-0.7.5.dist-info/REQUESTED", + "lib/python3.13/site-packages/anaconda_anon_usage-0.7.5.dist-info/WHEEL", + "lib/python3.13/site-packages/anaconda_anon_usage-0.7.5.dist-info/direct_url.json", + "lib/python3.13/site-packages/anaconda_anon_usage-0.7.5.dist-info/entry_points.txt", + "lib/python3.13/site-packages/anaconda_anon_usage-0.7.5.dist-info/top_level.txt", + "lib/python3.13/site-packages/anaconda_anon_usage/__init__.py", + "lib/python3.13/site-packages/anaconda_anon_usage/_version.py", + "lib/python3.13/site-packages/anaconda_anon_usage/heartbeat.py", + "lib/python3.13/site-packages/anaconda_anon_usage/patch.py", + "lib/python3.13/site-packages/anaconda_anon_usage/plugin.py", + "lib/python3.13/site-packages/anaconda_anon_usage/tokens.py", + "lib/python3.13/site-packages/anaconda_anon_usage/utils.py", + "lib/python3.13/site-packages/anaconda_anon_usage/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_anon_usage/__pycache__/_version.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_anon_usage/__pycache__/heartbeat.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_anon_usage/__pycache__/patch.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_anon_usage/__pycache__/plugin.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_anon_usage/__pycache__/tokens.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_anon_usage/__pycache__/utils.cpython-313.pyc" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/python3.13/site-packages/anaconda_anon_usage/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/anaconda_anon_usage/__pycache__/_version.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/anaconda_anon_usage/__pycache__/heartbeat.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/anaconda_anon_usage/__pycache__/patch.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/anaconda_anon_usage/__pycache__/plugin.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/anaconda_anon_usage/__pycache__/tokens.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/anaconda_anon_usage/__pycache__/utils.cpython-313.pyc", + "path_type": "pyc_file" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/anaconda-anon-usage-0.7.5-pyhb46e38b_100", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/anaconda-auth-0.13.0-py313h06a4308_0.json b/miniconda3/conda-meta/anaconda-auth-0.13.0-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..0f1cd41b47fd5f6ad9d27c51ad9bb88bc719d9dc --- /dev/null +++ b/miniconda3/conda-meta/anaconda-auth-0.13.0-py313h06a4308_0.json @@ -0,0 +1,139 @@ +{ + "name": "anaconda-auth", + "version": "0.13.0", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "anaconda-auth-0.13.0-py313h06a4308_0.conda", + "md5": "bbd5cbd9b4516a729a1d5414e9320ed9", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/anaconda-auth-0.13.0-py313h06a4308_0.conda", + "sha256": "65e1eb7ca1260fe9e4bf6d7938e7d77f2f55a842ea668a184af80acad235423d", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "anaconda-cli-base >=0.8.1", + "cryptography >=3.4.0", + "httpx", + "keyring", + "pkce", + "pydantic", + "pyjwt", + "python >=3.13,<3.14.0a0", + "python-dotenv", + "python_abi 3.13.* *_cp313", + "requests", + "semver <4", + "anaconda-anon-usage >=0.7.2" + ], + "constrains": [ + "anaconda-cloud-auth >=0.13.0", + "conda-token >=0.7.0", + "conda >=23.9.0" + ], + "license": "BSD-3-Clause", + "license_family": "BSD", + "timestamp": 1772491290000, + "size": 123443, + "requested_spec": "pkgs/main/linux-64::anaconda-auth==0.13.0=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/anaconda-auth-0.13.0-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/anaconda-auth-0.13.0-py313h06a4308_0", + "files": [ + "bin/conda-token", + "condarc.d/anaconda-auth.yml", + "lib/python3.13/site-packages/anaconda_auth-0.13.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/anaconda_auth-0.13.0.dist-info/METADATA", + "lib/python3.13/site-packages/anaconda_auth-0.13.0.dist-info/RECORD", + "lib/python3.13/site-packages/anaconda_auth-0.13.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/anaconda_auth-0.13.0.dist-info/WHEEL", + "lib/python3.13/site-packages/anaconda_auth-0.13.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/anaconda_auth-0.13.0.dist-info/entry_points.txt", + "lib/python3.13/site-packages/anaconda_auth-0.13.0.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/anaconda_auth/__init__.py", + "lib/python3.13/site-packages/anaconda_auth/__main__.py", + "lib/python3.13/site-packages/anaconda_auth/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/__pycache__/_version.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/__pycache__/actions.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/__pycache__/adapters.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/__pycache__/async_client.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/__pycache__/cli.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/__pycache__/client.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/__pycache__/config.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/__pycache__/device_flow.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/__pycache__/exceptions.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/__pycache__/handlers.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/__pycache__/panel.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/__pycache__/repo.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/__pycache__/token.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/_conda/__init__.py", + "lib/python3.13/site-packages/anaconda_auth/_conda/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/_conda/__pycache__/auth_handler.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/_conda/__pycache__/conda_api.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/_conda/__pycache__/conda_token.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/_conda/__pycache__/condarc.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/_conda/__pycache__/config.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/_conda/__pycache__/entrypoint.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/_conda/__pycache__/plugins.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/_conda/__pycache__/repo_config.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_auth/_conda/auth_handler.py", + "lib/python3.13/site-packages/anaconda_auth/_conda/conda_api.py", + "lib/python3.13/site-packages/anaconda_auth/_conda/conda_token.py", + "lib/python3.13/site-packages/anaconda_auth/_conda/condarc.py", + "lib/python3.13/site-packages/anaconda_auth/_conda/config.py", + "lib/python3.13/site-packages/anaconda_auth/_conda/entrypoint.py", + "lib/python3.13/site-packages/anaconda_auth/_conda/plugins.py", + "lib/python3.13/site-packages/anaconda_auth/_conda/repo_config.py", + "lib/python3.13/site-packages/anaconda_auth/_version.py", + "lib/python3.13/site-packages/anaconda_auth/actions.py", + "lib/python3.13/site-packages/anaconda_auth/adapters.py", + "lib/python3.13/site-packages/anaconda_auth/async_client.py", + "lib/python3.13/site-packages/anaconda_auth/cli.py", + "lib/python3.13/site-packages/anaconda_auth/client.py", + "lib/python3.13/site-packages/anaconda_auth/config.py", + "lib/python3.13/site-packages/anaconda_auth/device_flow.py", + "lib/python3.13/site-packages/anaconda_auth/exceptions.py", + "lib/python3.13/site-packages/anaconda_auth/handlers.py", + "lib/python3.13/site-packages/anaconda_auth/panel.py", + "lib/python3.13/site-packages/anaconda_auth/py.typed", + "lib/python3.13/site-packages/anaconda_auth/repo.py", + "lib/python3.13/site-packages/anaconda_auth/token.py", + "lib/python3.13/site-packages/anaconda_auth/utils.py", + "lib/python3.13/site-packages/anaconda_cloud_auth/__init__.py", + "lib/python3.13/site-packages/anaconda_cloud_auth/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_cloud_auth/__pycache__/actions.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_cloud_auth/__pycache__/cli.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_cloud_auth/__pycache__/client.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_cloud_auth/__pycache__/config.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_cloud_auth/__pycache__/exceptions.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_cloud_auth/__pycache__/handlers.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_cloud_auth/__pycache__/token.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_cloud_auth/actions.py", + "lib/python3.13/site-packages/anaconda_cloud_auth/cli.py", + "lib/python3.13/site-packages/anaconda_cloud_auth/client.py", + "lib/python3.13/site-packages/anaconda_cloud_auth/config.py", + "lib/python3.13/site-packages/anaconda_cloud_auth/exceptions.py", + "lib/python3.13/site-packages/anaconda_cloud_auth/handlers.py", + "lib/python3.13/site-packages/anaconda_cloud_auth/py.typed", + "lib/python3.13/site-packages/anaconda_cloud_auth/token.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/conda-token", + "prefix_placeholder": "/home/task_177249124085225/croot/anaconda-cloud-auth-split_1772491269211/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_place", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "2919966294f6057a204e09af551f0280f36ba1ff218f4953dcc0ce15e2fcb9cd", + "size_in_bytes": 483, + "sha256_in_prefix": "dfcf4896789f47fcfa078f19c6eb880b9a08d0007b69715e41ab4667fc2614c4" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/anaconda-auth-0.13.0-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/anaconda-cli-base-0.8.1-py313h06a4308_0.json b/miniconda3/conda-meta/anaconda-cli-base-0.8.1-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..9bb444319310e2ac8aabb5be0ae39e663f0aec7d --- /dev/null +++ b/miniconda3/conda-meta/anaconda-cli-base-0.8.1-py313h06a4308_0.json @@ -0,0 +1,85 @@ +{ + "name": "anaconda-cli-base", + "version": "0.8.1", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "anaconda-cli-base-0.8.1-py313h06a4308_0.conda", + "md5": "efcf0008a5dd126dcba3a3e556828d50", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/anaconda-cli-base-0.8.1-py313h06a4308_0.conda", + "sha256": "ddd1d4a198c7cb8c7d645a5c27c0138f405608b3eb2940759116fe4dab98b782", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "click", + "packaging >=23.0", + "pydantic-settings >=2.3", + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313", + "readchar", + "rich", + "tomli", + "tomlkit", + "typer >=0.17", + "pydantic >=2.12" + ], + "constrains": [ + "anaconda-client >=1.13.0", + "anaconda-auth >=0.12.0", + "anaconda-cloud-cli >=0.3.0" + ], + "license": "BSD-3-Clause", + "license_family": "BSD", + "timestamp": 1770385849000, + "size": 62015, + "requested_spec": "pkgs/main/linux-64::anaconda-cli-base==0.8.1=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/anaconda-cli-base-0.8.1-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/anaconda-cli-base-0.8.1-py313h06a4308_0", + "files": [ + "bin/anaconda", + "lib/python3.13/site-packages/anaconda_cli_base-0.8.1.dist-info/INSTALLER", + "lib/python3.13/site-packages/anaconda_cli_base-0.8.1.dist-info/METADATA", + "lib/python3.13/site-packages/anaconda_cli_base-0.8.1.dist-info/RECORD", + "lib/python3.13/site-packages/anaconda_cli_base-0.8.1.dist-info/REQUESTED", + "lib/python3.13/site-packages/anaconda_cli_base-0.8.1.dist-info/WHEEL", + "lib/python3.13/site-packages/anaconda_cli_base-0.8.1.dist-info/direct_url.json", + "lib/python3.13/site-packages/anaconda_cli_base-0.8.1.dist-info/entry_points.txt", + "lib/python3.13/site-packages/anaconda_cli_base-0.8.1.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/anaconda_cli_base/__init__.py", + "lib/python3.13/site-packages/anaconda_cli_base/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_cli_base/__pycache__/_version.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_cli_base/__pycache__/cli.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_cli_base/__pycache__/config.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_cli_base/__pycache__/console.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_cli_base/__pycache__/deprecations.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_cli_base/__pycache__/exceptions.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_cli_base/__pycache__/plugins.cpython-313.pyc", + "lib/python3.13/site-packages/anaconda_cli_base/_version.py", + "lib/python3.13/site-packages/anaconda_cli_base/cli.py", + "lib/python3.13/site-packages/anaconda_cli_base/config.py", + "lib/python3.13/site-packages/anaconda_cli_base/console.py", + "lib/python3.13/site-packages/anaconda_cli_base/deprecations.py", + "lib/python3.13/site-packages/anaconda_cli_base/exceptions.py", + "lib/python3.13/site-packages/anaconda_cli_base/plugins.py", + "lib/python3.13/site-packages/anaconda_cli_base/py.typed" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/anaconda", + "prefix_placeholder": "/home/task_177038556646156/croot/anaconda-cli-base_1770385830159/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pla", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "5ea89fd8e7b4f2825358c2278d50b946603b131b648966dd26ec610c72be03a2", + "size_in_bytes": 472, + "sha256_in_prefix": "d718bdab1710a7517a13a7492ac55da0b28e4ad9b639433b7d98be8a351606d0" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/anaconda-cli-base-0.8.1-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/annotated-types-0.6.0-py313h06a4308_1.json b/miniconda3/conda-meta/annotated-types-0.6.0-py313h06a4308_1.json new file mode 100644 index 0000000000000000000000000000000000000000..8ab244ab24ca007ef189ef236470dfc83243b7ff --- /dev/null +++ b/miniconda3/conda-meta/annotated-types-0.6.0-py313h06a4308_1.json @@ -0,0 +1,48 @@ +{ + "name": "annotated-types", + "version": "0.6.0", + "build": "py313h06a4308_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "annotated-types-0.6.0-py313h06a4308_1.conda", + "md5": "3d0213cea41b88c15fdf1ed04eba799c", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/annotated-types-0.6.0-py313h06a4308_1.conda", + "sha256": "382f07779f01e3a6621b963ebd8f01b1759fd71c64cb8d47b4b1da17451e07a4", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1761744946000, + "size": 26097, + "requested_spec": "pkgs/main/linux-64::annotated-types==0.6.0=py313h06a4308_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/annotated-types-0.6.0-py313h06a4308_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/annotated-types-0.6.0-py313h06a4308_1", + "files": [ + "lib/python3.13/site-packages/annotated_types-0.6.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/annotated_types-0.6.0.dist-info/METADATA", + "lib/python3.13/site-packages/annotated_types-0.6.0.dist-info/RECORD", + "lib/python3.13/site-packages/annotated_types-0.6.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/annotated_types-0.6.0.dist-info/WHEEL", + "lib/python3.13/site-packages/annotated_types-0.6.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/annotated_types-0.6.0.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/annotated_types/__init__.py", + "lib/python3.13/site-packages/annotated_types/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/annotated_types/__pycache__/test_cases.cpython-313.pyc", + "lib/python3.13/site-packages/annotated_types/py.typed", + "lib/python3.13/site-packages/annotated_types/test_cases.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/annotated-types-0.6.0-py313h06a4308_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/anyio-4.10.0-py313h06a4308_0.json b/miniconda3/conda-meta/anyio-4.10.0-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..212e04a8c4cbb2ca50a71a88bc933acbe4b41cd5 --- /dev/null +++ b/miniconda3/conda-meta/anyio-4.10.0-py313h06a4308_0.json @@ -0,0 +1,133 @@ +{ + "name": "anyio", + "version": "4.10.0", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "anyio-4.10.0-py313h06a4308_0.conda", + "md5": "89b959a85a37e33a4f8493a352ac61ea", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/anyio-4.10.0-py313h06a4308_0.conda", + "sha256": "bcc15a749625218b77cd38622128edb7177d1579d919aaefce5244edae109ba6", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "idna >=2.8", + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313", + "sniffio >=1.1" + ], + "constrains": [ + "uvloop >=0.21", + "trio >=0.26.1" + ], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1758622439000, + "size": 299196, + "requested_spec": "pkgs/main/linux-64::anyio==4.10.0=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/anyio-4.10.0-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/anyio-4.10.0-py313h06a4308_0", + "files": [ + "lib/python3.13/site-packages/anyio-4.10.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/anyio-4.10.0.dist-info/METADATA", + "lib/python3.13/site-packages/anyio-4.10.0.dist-info/RECORD", + "lib/python3.13/site-packages/anyio-4.10.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/anyio-4.10.0.dist-info/WHEEL", + "lib/python3.13/site-packages/anyio-4.10.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/anyio-4.10.0.dist-info/entry_points.txt", + "lib/python3.13/site-packages/anyio-4.10.0.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/anyio-4.10.0.dist-info/top_level.txt", + "lib/python3.13/site-packages/anyio/__init__.py", + "lib/python3.13/site-packages/anyio/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/__pycache__/from_thread.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/__pycache__/lowlevel.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/__pycache__/pytest_plugin.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/__pycache__/to_interpreter.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/__pycache__/to_process.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/__pycache__/to_thread.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/_backends/__init__.py", + "lib/python3.13/site-packages/anyio/_backends/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/_backends/__pycache__/_asyncio.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/_backends/__pycache__/_trio.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/_backends/_asyncio.py", + "lib/python3.13/site-packages/anyio/_backends/_trio.py", + "lib/python3.13/site-packages/anyio/_core/__init__.py", + "lib/python3.13/site-packages/anyio/_core/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/_core/__pycache__/_asyncio_selector_thread.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/_core/__pycache__/_contextmanagers.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/_core/__pycache__/_eventloop.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/_core/__pycache__/_exceptions.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/_core/__pycache__/_fileio.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/_core/__pycache__/_resources.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/_core/__pycache__/_signals.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/_core/__pycache__/_sockets.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/_core/__pycache__/_streams.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/_core/__pycache__/_subprocesses.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/_core/__pycache__/_synchronization.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/_core/__pycache__/_tasks.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/_core/__pycache__/_tempfile.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/_core/__pycache__/_testing.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/_core/__pycache__/_typedattr.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/_core/_asyncio_selector_thread.py", + "lib/python3.13/site-packages/anyio/_core/_contextmanagers.py", + "lib/python3.13/site-packages/anyio/_core/_eventloop.py", + "lib/python3.13/site-packages/anyio/_core/_exceptions.py", + "lib/python3.13/site-packages/anyio/_core/_fileio.py", + "lib/python3.13/site-packages/anyio/_core/_resources.py", + "lib/python3.13/site-packages/anyio/_core/_signals.py", + "lib/python3.13/site-packages/anyio/_core/_sockets.py", + "lib/python3.13/site-packages/anyio/_core/_streams.py", + "lib/python3.13/site-packages/anyio/_core/_subprocesses.py", + "lib/python3.13/site-packages/anyio/_core/_synchronization.py", + "lib/python3.13/site-packages/anyio/_core/_tasks.py", + "lib/python3.13/site-packages/anyio/_core/_tempfile.py", + "lib/python3.13/site-packages/anyio/_core/_testing.py", + "lib/python3.13/site-packages/anyio/_core/_typedattr.py", + "lib/python3.13/site-packages/anyio/abc/__init__.py", + "lib/python3.13/site-packages/anyio/abc/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/abc/__pycache__/_eventloop.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/abc/__pycache__/_resources.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/abc/__pycache__/_sockets.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/abc/__pycache__/_streams.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/abc/__pycache__/_subprocesses.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/abc/__pycache__/_tasks.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/abc/__pycache__/_testing.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/abc/_eventloop.py", + "lib/python3.13/site-packages/anyio/abc/_resources.py", + "lib/python3.13/site-packages/anyio/abc/_sockets.py", + "lib/python3.13/site-packages/anyio/abc/_streams.py", + "lib/python3.13/site-packages/anyio/abc/_subprocesses.py", + "lib/python3.13/site-packages/anyio/abc/_tasks.py", + "lib/python3.13/site-packages/anyio/abc/_testing.py", + "lib/python3.13/site-packages/anyio/from_thread.py", + "lib/python3.13/site-packages/anyio/lowlevel.py", + "lib/python3.13/site-packages/anyio/py.typed", + "lib/python3.13/site-packages/anyio/pytest_plugin.py", + "lib/python3.13/site-packages/anyio/streams/__init__.py", + "lib/python3.13/site-packages/anyio/streams/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/streams/__pycache__/buffered.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/streams/__pycache__/file.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/streams/__pycache__/memory.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/streams/__pycache__/stapled.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/streams/__pycache__/text.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/streams/__pycache__/tls.cpython-313.pyc", + "lib/python3.13/site-packages/anyio/streams/buffered.py", + "lib/python3.13/site-packages/anyio/streams/file.py", + "lib/python3.13/site-packages/anyio/streams/memory.py", + "lib/python3.13/site-packages/anyio/streams/stapled.py", + "lib/python3.13/site-packages/anyio/streams/text.py", + "lib/python3.13/site-packages/anyio/streams/tls.py", + "lib/python3.13/site-packages/anyio/to_interpreter.py", + "lib/python3.13/site-packages/anyio/to_process.py", + "lib/python3.13/site-packages/anyio/to_thread.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/anyio-4.10.0-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/archspec-0.2.5-pyhd3eb1b0_0.json b/miniconda3/conda-meta/archspec-0.2.5-pyhd3eb1b0_0.json new file mode 100644 index 0000000000000000000000000000000000000000..bfd7290372797eef974bee7964fe6da636befdf7 --- /dev/null +++ b/miniconda3/conda-meta/archspec-0.2.5-pyhd3eb1b0_0.json @@ -0,0 +1,166 @@ +{ + "name": "archspec", + "version": "0.2.5", + "build": "pyhd3eb1b0_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/noarch", + "subdir": "noarch", + "fn": "archspec-0.2.5-pyhd3eb1b0_0.conda", + "md5": "c0ad195970a65c174b997011ac13f2f8", + "url": "https://repo.anaconda.com/pkgs/main/noarch/archspec-0.2.5-pyhd3eb1b0_0.conda", + "sha256": "d7c38d818d5f88e636de5d9fba2365be56f3230ee2656ab3b552c1e4bbd07668", + "depends": [ + "python >=3.7" + ], + "constrains": [], + "noarch": "python", + "license": "MIT OR Apache-2.0", + "package_type": "noarch_python", + "timestamp": 1758125010000, + "size": 49261, + "requested_spec": "pkgs/main/noarch::archspec==0.2.5=pyhd3eb1b0_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/archspec-0.2.5-pyhd3eb1b0_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/archspec-0.2.5-pyhd3eb1b0_0", + "files": [ + "lib/python3.13/site-packages/archspec-0.2.5.dist-info/INSTALLER", + "lib/python3.13/site-packages/archspec-0.2.5.dist-info/METADATA", + "lib/python3.13/site-packages/archspec-0.2.5.dist-info/RECORD", + "lib/python3.13/site-packages/archspec-0.2.5.dist-info/REQUESTED", + "lib/python3.13/site-packages/archspec-0.2.5.dist-info/WHEEL", + "lib/python3.13/site-packages/archspec-0.2.5.dist-info/direct_url.json", + "lib/python3.13/site-packages/archspec-0.2.5.dist-info/entry_points.txt", + "lib/python3.13/site-packages/archspec-0.2.5.dist-info/licenses/LICENSE-APACHE", + "lib/python3.13/site-packages/archspec-0.2.5.dist-info/licenses/LICENSE-MIT", + "lib/python3.13/site-packages/archspec-0.2.5.dist-info/licenses/NOTICE", + "lib/python3.13/site-packages/archspec/__init__.py", + "lib/python3.13/site-packages/archspec/__main__.py", + "lib/python3.13/site-packages/archspec/cli.py", + "lib/python3.13/site-packages/archspec/cpu/__init__.py", + "lib/python3.13/site-packages/archspec/cpu/alias.py", + "lib/python3.13/site-packages/archspec/cpu/detect.py", + "lib/python3.13/site-packages/archspec/cpu/microarchitecture.py", + "lib/python3.13/site-packages/archspec/cpu/schema.py", + "lib/python3.13/site-packages/archspec/json/COPYRIGHT", + "lib/python3.13/site-packages/archspec/json/LICENSE-APACHE", + "lib/python3.13/site-packages/archspec/json/LICENSE-MIT", + "lib/python3.13/site-packages/archspec/json/NOTICE", + "lib/python3.13/site-packages/archspec/json/README.md", + "lib/python3.13/site-packages/archspec/json/cpu/cpuid.json", + "lib/python3.13/site-packages/archspec/json/cpu/cpuid_schema.json", + "lib/python3.13/site-packages/archspec/json/cpu/microarchitectures.json", + "lib/python3.13/site-packages/archspec/json/cpu/microarchitectures_schema.json", + "lib/python3.13/site-packages/archspec/json/tests/targets/bgq-rhel6-power7", + "lib/python3.13/site-packages/archspec/json/tests/targets/darwin-bigsur-m1", + "lib/python3.13/site-packages/archspec/json/tests/targets/darwin-mojave-haswell", + "lib/python3.13/site-packages/archspec/json/tests/targets/darwin-mojave-ivybridge", + "lib/python3.13/site-packages/archspec/json/tests/targets/darwin-mojave-skylake", + "lib/python3.13/site-packages/archspec/json/tests/targets/darwin-monterey-m1", + "lib/python3.13/site-packages/archspec/json/tests/targets/darwin-monterey-m2", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-amazon-cortex_a72", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-amazon-neoverse_n1", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-amazon-neoverse_v1", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-amazon2-sapphirerapids", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-asahi-m1", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-asahi-m2", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-centos7-cascadelake", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-centos7-power8le", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-centos7-thunderx2", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-rhel6-piledriver", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-rhel7-broadwell", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-rhel7-haswell", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-rhel7-ivybridge", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-rhel7-skylake_avx512", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-rhel7-x86_64_v3", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-rhel7-zen", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-rhel8-neoverse_v1", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-rhel8-power9", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-rhel9-neoverse_n2", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-rhel9-neoverse_v2", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-rocky8-a64fx", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-rocky8.5-zen4", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-rocky9-zen5", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-scientific7-k10", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-scientific7-piledriver", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-scientificfermi6-bulldozer", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-scientificfermi6-piledriver", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-sifive-u74mc", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-ubuntu18.04-broadwell", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-ubuntu20.04-zen3", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-ubuntu22.04-neoverse_n2", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-ubuntu22.04-neoverse_v2", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-unknown-neoverse_v2", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-unknown-power10", + "lib/python3.13/site-packages/archspec/json/tests/targets/linux-unknown-sapphirerapids", + "lib/python3.13/site-packages/archspec/json/tests/targets/windows-cpuid-broadwell", + "lib/python3.13/site-packages/archspec/json/tests/targets/windows-cpuid-icelake", + "lib/python3.13/site-packages/archspec/vendor/cpuid/.gitignore", + "lib/python3.13/site-packages/archspec/vendor/cpuid/LICENSE", + "lib/python3.13/site-packages/archspec/vendor/cpuid/README.md", + "lib/python3.13/site-packages/archspec/vendor/cpuid/cpuid.py", + "lib/python3.13/site-packages/archspec/vendor/cpuid/example.py", + "lib/python3.13/site-packages/archspec/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/archspec/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/site-packages/archspec/__pycache__/cli.cpython-313.pyc", + "lib/python3.13/site-packages/archspec/cpu/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/archspec/cpu/__pycache__/alias.cpython-313.pyc", + "lib/python3.13/site-packages/archspec/cpu/__pycache__/detect.cpython-313.pyc", + "lib/python3.13/site-packages/archspec/cpu/__pycache__/microarchitecture.cpython-313.pyc", + "lib/python3.13/site-packages/archspec/cpu/__pycache__/schema.cpython-313.pyc", + "lib/python3.13/site-packages/archspec/vendor/cpuid/__pycache__/cpuid.cpython-313.pyc", + "lib/python3.13/site-packages/archspec/vendor/cpuid/__pycache__/example.cpython-313.pyc", + "bin/archspec" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/python3.13/site-packages/archspec/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/archspec/__pycache__/__main__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/archspec/__pycache__/cli.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/archspec/cpu/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/archspec/cpu/__pycache__/alias.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/archspec/cpu/__pycache__/detect.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/archspec/cpu/__pycache__/microarchitecture.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/archspec/cpu/__pycache__/schema.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/archspec/vendor/cpuid/__pycache__/cpuid.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/archspec/vendor/cpuid/__pycache__/example.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "bin/archspec", + "path_type": "unix_python_entry_point" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/archspec-0.2.5-pyhd3eb1b0_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/boltons-25.0.0-py313h06a4308_0.json b/miniconda3/conda-meta/boltons-25.0.0-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..95e29bf38f3659195a473158a9dfcb9e4c234ac6 --- /dev/null +++ b/miniconda3/conda-meta/boltons-25.0.0-py313h06a4308_0.json @@ -0,0 +1,103 @@ +{ + "name": "boltons", + "version": "25.0.0", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "boltons-25.0.0-py313h06a4308_0.conda", + "md5": "afd30cc40ab0edf4e246b901c8eca725", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/boltons-25.0.0-py313h06a4308_0.conda", + "sha256": "248e6cb425de676a39915d1c241e0434d9ec8b19d27771f7132907519f7fbc77", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "BSD-3-Clause", + "license_family": "BSD", + "timestamp": 1751383912000, + "size": 522428, + "requested_spec": "pkgs/main/linux-64::boltons==25.0.0=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/boltons-25.0.0-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/boltons-25.0.0-py313h06a4308_0", + "files": [ + "lib/python3.13/site-packages/boltons-25.0.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/boltons-25.0.0.dist-info/LICENSE", + "lib/python3.13/site-packages/boltons-25.0.0.dist-info/METADATA", + "lib/python3.13/site-packages/boltons-25.0.0.dist-info/RECORD", + "lib/python3.13/site-packages/boltons-25.0.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/boltons-25.0.0.dist-info/WHEEL", + "lib/python3.13/site-packages/boltons-25.0.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/boltons/__init__.py", + "lib/python3.13/site-packages/boltons/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/cacheutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/debugutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/deprutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/dictutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/easterutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/ecoutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/excutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/fileutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/formatutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/funcutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/gcutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/ioutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/iterutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/jsonutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/listutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/mathutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/mboxutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/namedutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/pathutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/queueutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/setutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/socketutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/statsutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/strutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/tableutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/tbutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/timeutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/typeutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/__pycache__/urlutils.cpython-313.pyc", + "lib/python3.13/site-packages/boltons/cacheutils.py", + "lib/python3.13/site-packages/boltons/debugutils.py", + "lib/python3.13/site-packages/boltons/deprutils.py", + "lib/python3.13/site-packages/boltons/dictutils.py", + "lib/python3.13/site-packages/boltons/easterutils.py", + "lib/python3.13/site-packages/boltons/ecoutils.py", + "lib/python3.13/site-packages/boltons/excutils.py", + "lib/python3.13/site-packages/boltons/fileutils.py", + "lib/python3.13/site-packages/boltons/formatutils.py", + "lib/python3.13/site-packages/boltons/funcutils.py", + "lib/python3.13/site-packages/boltons/gcutils.py", + "lib/python3.13/site-packages/boltons/ioutils.py", + "lib/python3.13/site-packages/boltons/iterutils.py", + "lib/python3.13/site-packages/boltons/jsonutils.py", + "lib/python3.13/site-packages/boltons/listutils.py", + "lib/python3.13/site-packages/boltons/mathutils.py", + "lib/python3.13/site-packages/boltons/mboxutils.py", + "lib/python3.13/site-packages/boltons/namedutils.py", + "lib/python3.13/site-packages/boltons/pathutils.py", + "lib/python3.13/site-packages/boltons/queueutils.py", + "lib/python3.13/site-packages/boltons/setutils.py", + "lib/python3.13/site-packages/boltons/socketutils.py", + "lib/python3.13/site-packages/boltons/statsutils.py", + "lib/python3.13/site-packages/boltons/strutils.py", + "lib/python3.13/site-packages/boltons/tableutils.py", + "lib/python3.13/site-packages/boltons/tbutils.py", + "lib/python3.13/site-packages/boltons/timeutils.py", + "lib/python3.13/site-packages/boltons/typeutils.py", + "lib/python3.13/site-packages/boltons/urlutils.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/boltons-25.0.0-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/brotlicffi-1.2.0.0-py313h7354ed3_0.json b/miniconda3/conda-meta/brotlicffi-1.2.0.0-py313h7354ed3_0.json new file mode 100644 index 0000000000000000000000000000000000000000..4300237003040bfd7387fcd0de404192eb2234e0 --- /dev/null +++ b/miniconda3/conda-meta/brotlicffi-1.2.0.0-py313h7354ed3_0.json @@ -0,0 +1,55 @@ +{ + "name": "brotlicffi", + "version": "1.2.0.0", + "build": "py313h7354ed3_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "brotlicffi-1.2.0.0-py313h7354ed3_0.conda", + "md5": "d309f82c145a73fedf7bc6930f689dba", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/brotlicffi-1.2.0.0-py313h7354ed3_0.conda", + "sha256": "1d13694da029eb587dcdce691e4a6a1590ac5de65f0cde234fff849fd7985168", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "cffi >=1.17.0", + "libgcc >=14", + "libstdcxx >=14", + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1764961365000, + "size": 381299, + "requested_spec": "pkgs/main/linux-64::brotlicffi==1.2.0.0=py313h7354ed3_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/brotlicffi-1.2.0.0-py313h7354ed3_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/brotlicffi-1.2.0.0-py313h7354ed3_0", + "files": [ + "lib/python3.13/site-packages/brotlicffi-1.2.0.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/brotlicffi-1.2.0.0.dist-info/METADATA", + "lib/python3.13/site-packages/brotlicffi-1.2.0.0.dist-info/RECORD", + "lib/python3.13/site-packages/brotlicffi-1.2.0.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/brotlicffi-1.2.0.0.dist-info/WHEEL", + "lib/python3.13/site-packages/brotlicffi-1.2.0.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/brotlicffi-1.2.0.0.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/brotlicffi-1.2.0.0.dist-info/top_level.txt", + "lib/python3.13/site-packages/brotlicffi/__init__.py", + "lib/python3.13/site-packages/brotlicffi/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/brotlicffi/__pycache__/_api.cpython-313.pyc", + "lib/python3.13/site-packages/brotlicffi/__pycache__/_build.cpython-313.pyc", + "lib/python3.13/site-packages/brotlicffi/_api.py", + "lib/python3.13/site-packages/brotlicffi/_brotlicffi.abi3.so", + "lib/python3.13/site-packages/brotlicffi/_build.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/brotlicffi-1.2.0.0-py313h7354ed3_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/bzip2-1.0.8-h5eee18b_6.json b/miniconda3/conda-meta/bzip2-1.0.8-h5eee18b_6.json new file mode 100644 index 0000000000000000000000000000000000000000..bf9d18810aed81776233d3de3c577b56560dfe63 --- /dev/null +++ b/miniconda3/conda-meta/bzip2-1.0.8-h5eee18b_6.json @@ -0,0 +1,59 @@ +{ + "name": "bzip2", + "version": "1.0.8", + "build": "h5eee18b_6", + "build_number": 6, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "bzip2-1.0.8-h5eee18b_6.conda", + "md5": "f21a3ff51c1b271977f53ce956a69297", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/bzip2-1.0.8-h5eee18b_6.conda", + "sha256": "235f266d5f9c3c61748bb1af0eff21bc7ed2a2a356b97ff28d9c1135039b08b0", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "libgcc-ng >=11.2.0" + ], + "constrains": [], + "license": "bzip2-1.0.8", + "license_family": "BSD", + "timestamp": 1714510571000, + "size": 268384, + "requested_spec": "pkgs/main/linux-64::bzip2==1.0.8=h5eee18b_6", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/bzip2-1.0.8-h5eee18b_6.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/bzip2-1.0.8-h5eee18b_6", + "files": [ + "bin/bunzip2", + "bin/bzcat", + "bin/bzcmp", + "bin/bzdiff", + "bin/bzegrep", + "bin/bzfgrep", + "bin/bzgrep", + "bin/bzip2", + "bin/bzip2recover", + "bin/bzless", + "bin/bzmore", + "include/bzlib.h", + "lib/libbz2.a", + "lib/libbz2.so", + "lib/libbz2.so.1.0", + "lib/libbz2.so.1.0.8", + "man/man1/bzcmp.1", + "man/man1/bzdiff.1", + "man/man1/bzegrep.1", + "man/man1/bzfgrep.1", + "man/man1/bzgrep.1", + "man/man1/bzip2.1", + "man/man1/bzless.1", + "man/man1/bzmore.1" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/bzip2-1.0.8-h5eee18b_6", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/c-ares-1.34.6-hd44998d_0.json b/miniconda3/conda-meta/c-ares-1.34.6-hd44998d_0.json new file mode 100644 index 0000000000000000000000000000000000000000..bf994cc388c63d7a688be7c4065fb3ae3ff826f4 --- /dev/null +++ b/miniconda3/conda-meta/c-ares-1.34.6-hd44998d_0.json @@ -0,0 +1,216 @@ +{ + "name": "c-ares", + "version": "1.34.6", + "build": "hd44998d_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "c-ares-1.34.6-hd44998d_0.conda", + "md5": "e16f3bb02771b2e37ea421a3f8ee1ebb", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/c-ares-1.34.6-hd44998d_0.conda", + "sha256": "a5bdd98c8c2ef2bbe52b0fb018ddda3e62f91b2f96089e66e903052e1e91498e", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "libgcc >=14", + "libstdcxx >=14" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1769077678000, + "size": 206586, + "requested_spec": "pkgs/main/linux-64::c-ares==1.34.6=hd44998d_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/c-ares-1.34.6-hd44998d_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/c-ares-1.34.6-hd44998d_0", + "files": [ + "bin/adig", + "bin/ahost", + "include/ares.h", + "include/ares_build.h", + "include/ares_dns.h", + "include/ares_dns_record.h", + "include/ares_nameser.h", + "include/ares_version.h", + "lib/cmake/c-ares/c-ares-config-version.cmake", + "lib/cmake/c-ares/c-ares-config.cmake", + "lib/cmake/c-ares/c-ares-targets-release.cmake", + "lib/cmake/c-ares/c-ares-targets.cmake", + "lib/libcares.so", + "lib/libcares.so.2", + "lib/libcares.so.2.19.5", + "lib/pkgconfig/libcares.pc", + "share/man/man1/adig.1", + "share/man/man1/ahost.1", + "share/man/man3/ares_cancel.3", + "share/man/man3/ares_create_query.3", + "share/man/man3/ares_destroy.3", + "share/man/man3/ares_destroy_options.3", + "share/man/man3/ares_dns_class_fromstr.3", + "share/man/man3/ares_dns_class_t.3", + "share/man/man3/ares_dns_class_tostr.3", + "share/man/man3/ares_dns_datatype_t.3", + "share/man/man3/ares_dns_flags_t.3", + "share/man/man3/ares_dns_mapping.3", + "share/man/man3/ares_dns_opcode_t.3", + "share/man/man3/ares_dns_opcode_tostr.3", + "share/man/man3/ares_dns_opt_datatype_t.3", + "share/man/man3/ares_dns_opt_get_datatype.3", + "share/man/man3/ares_dns_opt_get_name.3", + "share/man/man3/ares_dns_parse.3", + "share/man/man3/ares_dns_rcode_t.3", + "share/man/man3/ares_dns_rcode_tostr.3", + "share/man/man3/ares_dns_rec_type_fromstr.3", + "share/man/man3/ares_dns_rec_type_t.3", + "share/man/man3/ares_dns_rec_type_tostr.3", + "share/man/man3/ares_dns_record.3", + "share/man/man3/ares_dns_record_create.3", + "share/man/man3/ares_dns_record_destroy.3", + "share/man/man3/ares_dns_record_duplicate.3", + "share/man/man3/ares_dns_record_get_flags.3", + "share/man/man3/ares_dns_record_get_id.3", + "share/man/man3/ares_dns_record_get_opcode.3", + "share/man/man3/ares_dns_record_get_rcode.3", + "share/man/man3/ares_dns_record_query_add.3", + "share/man/man3/ares_dns_record_query_cnt.3", + "share/man/man3/ares_dns_record_query_get.3", + "share/man/man3/ares_dns_record_query_set_name.3", + "share/man/man3/ares_dns_record_query_set_type.3", + "share/man/man3/ares_dns_record_rr_add.3", + "share/man/man3/ares_dns_record_rr_cnt.3", + "share/man/man3/ares_dns_record_rr_del.3", + "share/man/man3/ares_dns_record_rr_get.3", + "share/man/man3/ares_dns_record_rr_get_const.3", + "share/man/man3/ares_dns_record_set_id.3", + "share/man/man3/ares_dns_rr.3", + "share/man/man3/ares_dns_rr_add_abin.3", + "share/man/man3/ares_dns_rr_del_abin.3", + "share/man/man3/ares_dns_rr_del_opt_byid.3", + "share/man/man3/ares_dns_rr_get_abin.3", + "share/man/man3/ares_dns_rr_get_abin_cnt.3", + "share/man/man3/ares_dns_rr_get_addr.3", + "share/man/man3/ares_dns_rr_get_addr6.3", + "share/man/man3/ares_dns_rr_get_bin.3", + "share/man/man3/ares_dns_rr_get_class.3", + "share/man/man3/ares_dns_rr_get_keys.3", + "share/man/man3/ares_dns_rr_get_name.3", + "share/man/man3/ares_dns_rr_get_opt.3", + "share/man/man3/ares_dns_rr_get_opt_byid.3", + "share/man/man3/ares_dns_rr_get_opt_cnt.3", + "share/man/man3/ares_dns_rr_get_str.3", + "share/man/man3/ares_dns_rr_get_ttl.3", + "share/man/man3/ares_dns_rr_get_type.3", + "share/man/man3/ares_dns_rr_get_u16.3", + "share/man/man3/ares_dns_rr_get_u32.3", + "share/man/man3/ares_dns_rr_get_u8.3", + "share/man/man3/ares_dns_rr_key_datatype.3", + "share/man/man3/ares_dns_rr_key_t.3", + "share/man/man3/ares_dns_rr_key_to_rec_type.3", + "share/man/man3/ares_dns_rr_key_tostr.3", + "share/man/man3/ares_dns_rr_set_addr.3", + "share/man/man3/ares_dns_rr_set_addr6.3", + "share/man/man3/ares_dns_rr_set_bin.3", + "share/man/man3/ares_dns_rr_set_opt.3", + "share/man/man3/ares_dns_rr_set_str.3", + "share/man/man3/ares_dns_rr_set_u16.3", + "share/man/man3/ares_dns_rr_set_u32.3", + "share/man/man3/ares_dns_rr_set_u8.3", + "share/man/man3/ares_dns_section_t.3", + "share/man/man3/ares_dns_section_tostr.3", + "share/man/man3/ares_dns_write.3", + "share/man/man3/ares_dup.3", + "share/man/man3/ares_expand_name.3", + "share/man/man3/ares_expand_string.3", + "share/man/man3/ares_fds.3", + "share/man/man3/ares_free_data.3", + "share/man/man3/ares_free_hostent.3", + "share/man/man3/ares_free_string.3", + "share/man/man3/ares_freeaddrinfo.3", + "share/man/man3/ares_get_servers.3", + "share/man/man3/ares_get_servers_csv.3", + "share/man/man3/ares_get_servers_ports.3", + "share/man/man3/ares_getaddrinfo.3", + "share/man/man3/ares_gethostbyaddr.3", + "share/man/man3/ares_gethostbyname.3", + "share/man/man3/ares_gethostbyname_file.3", + "share/man/man3/ares_getnameinfo.3", + "share/man/man3/ares_getsock.3", + "share/man/man3/ares_inet_ntop.3", + "share/man/man3/ares_inet_pton.3", + "share/man/man3/ares_init.3", + "share/man/man3/ares_init_options.3", + "share/man/man3/ares_library_cleanup.3", + "share/man/man3/ares_library_init.3", + "share/man/man3/ares_library_init_android.3", + "share/man/man3/ares_library_initialized.3", + "share/man/man3/ares_mkquery.3", + "share/man/man3/ares_opt_param_t.3", + "share/man/man3/ares_parse_a_reply.3", + "share/man/man3/ares_parse_aaaa_reply.3", + "share/man/man3/ares_parse_caa_reply.3", + "share/man/man3/ares_parse_mx_reply.3", + "share/man/man3/ares_parse_naptr_reply.3", + "share/man/man3/ares_parse_ns_reply.3", + "share/man/man3/ares_parse_ptr_reply.3", + "share/man/man3/ares_parse_soa_reply.3", + "share/man/man3/ares_parse_srv_reply.3", + "share/man/man3/ares_parse_txt_reply.3", + "share/man/man3/ares_parse_uri_reply.3", + "share/man/man3/ares_process.3", + "share/man/man3/ares_process_fd.3", + "share/man/man3/ares_process_fds.3", + "share/man/man3/ares_process_pending_write.3", + "share/man/man3/ares_query.3", + "share/man/man3/ares_query_dnsrec.3", + "share/man/man3/ares_queue.3", + "share/man/man3/ares_queue_active_queries.3", + "share/man/man3/ares_queue_wait_empty.3", + "share/man/man3/ares_reinit.3", + "share/man/man3/ares_save_options.3", + "share/man/man3/ares_search.3", + "share/man/man3/ares_search_dnsrec.3", + "share/man/man3/ares_send.3", + "share/man/man3/ares_send_dnsrec.3", + "share/man/man3/ares_set_local_dev.3", + "share/man/man3/ares_set_local_ip4.3", + "share/man/man3/ares_set_local_ip6.3", + "share/man/man3/ares_set_pending_write_cb.3", + "share/man/man3/ares_set_server_state_callback.3", + "share/man/man3/ares_set_servers.3", + "share/man/man3/ares_set_servers_csv.3", + "share/man/man3/ares_set_servers_ports.3", + "share/man/man3/ares_set_servers_ports_csv.3", + "share/man/man3/ares_set_socket_callback.3", + "share/man/man3/ares_set_socket_configure_callback.3", + "share/man/man3/ares_set_socket_functions.3", + "share/man/man3/ares_set_socket_functions_ex.3", + "share/man/man3/ares_set_sortlist.3", + "share/man/man3/ares_strerror.3", + "share/man/man3/ares_svcb_param_t.3", + "share/man/man3/ares_threadsafety.3", + "share/man/man3/ares_timeout.3", + "share/man/man3/ares_tlsa_match_t.3", + "share/man/man3/ares_tlsa_selector_t.3", + "share/man/man3/ares_tlsa_usage_t.3", + "share/man/man3/ares_version.3" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/pkgconfig/libcares.pc", + "prefix_placeholder": "/home/task_176907749310659/croot/c-ares-split_1769077612871/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "9a947d0f7e6ef3447b69248d34dd58d2d473326aeadf07cc73755fc8cdd39568", + "size_in_bytes": 932, + "sha256_in_prefix": "7e638eac807674fffd0806b4ab6b2289989f4825e6a82a1adfbc64eeddaada3c" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/c-ares-1.34.6-hd44998d_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/ca-certificates-2025.12.2-h06a4308_0.json b/miniconda3/conda-meta/ca-certificates-2025.12.2-h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..551154fe3bb40edf64b3b175cc79da62fa954708 --- /dev/null +++ b/miniconda3/conda-meta/ca-certificates-2025.12.2-h06a4308_0.json @@ -0,0 +1,35 @@ +{ + "name": "ca-certificates", + "version": "2025.12.2", + "build": "h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "ca-certificates-2025.12.2-h06a4308_0.conda", + "md5": "4a93c43656592eb990b914fead171268", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2025.12.2-h06a4308_0.conda", + "sha256": "0c11f114b16e3b392f9e23f62ed6e48df81e1faec9bd036459edf7009bd819ac", + "arch": "x86_64", + "platform": "linux", + "depends": [], + "constrains": [], + "license": "MPL-2.0", + "license_family": "Other", + "timestamp": 1764713819000, + "size": 128414, + "requested_spec": "pkgs/main/linux-64::ca-certificates==2025.12.2=h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/ca-certificates-2025.12.2-h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/ca-certificates-2025.12.2-h06a4308_0", + "files": [ + "ssl/cacert.pem", + "ssl/cert.pem" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/ca-certificates-2025.12.2-h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/certifi-2026.01.04-py313h06a4308_0.json b/miniconda3/conda-meta/certifi-2026.01.04-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..9e774e0b33d255aa5bfb9cc3c7837648241f89e1 --- /dev/null +++ b/miniconda3/conda-meta/certifi-2026.01.04-py313h06a4308_0.json @@ -0,0 +1,52 @@ +{ + "name": "certifi", + "version": "2026.01.04", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "certifi-2026.01.04-py313h06a4308_0.conda", + "md5": "76d1efd083cb0251ec8295c355adb1e2", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/certifi-2026.01.04-py313h06a4308_0.conda", + "sha256": "dca4a436b34e5ab1f62a2dbbd0989e03e7ef375288c10f0b3bc95f1614095dba", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "MPL-2.0", + "license_family": "Other", + "timestamp": 1767659200000, + "size": 152128, + "requested_spec": "pkgs/main/linux-64::certifi==2026.01.04=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/certifi-2026.01.04-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/certifi-2026.01.04-py313h06a4308_0", + "files": [ + "lib/python3.13/site-packages/certifi-2026.1.4.dist-info/INSTALLER", + "lib/python3.13/site-packages/certifi-2026.1.4.dist-info/LICENSE", + "lib/python3.13/site-packages/certifi-2026.1.4.dist-info/METADATA", + "lib/python3.13/site-packages/certifi-2026.1.4.dist-info/RECORD", + "lib/python3.13/site-packages/certifi-2026.1.4.dist-info/REQUESTED", + "lib/python3.13/site-packages/certifi-2026.1.4.dist-info/WHEEL", + "lib/python3.13/site-packages/certifi-2026.1.4.dist-info/direct_url.json", + "lib/python3.13/site-packages/certifi-2026.1.4.dist-info/top_level.txt", + "lib/python3.13/site-packages/certifi/__init__.py", + "lib/python3.13/site-packages/certifi/__main__.py", + "lib/python3.13/site-packages/certifi/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/certifi/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/site-packages/certifi/__pycache__/core.cpython-313.pyc", + "lib/python3.13/site-packages/certifi/cacert.pem", + "lib/python3.13/site-packages/certifi/core.py", + "lib/python3.13/site-packages/certifi/py.typed" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/certifi-2026.01.04-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/cffi-2.0.0-py313h4eded50_1.json b/miniconda3/conda-meta/cffi-2.0.0-py313h4eded50_1.json new file mode 100644 index 0000000000000000000000000000000000000000..52158fbb1abcb793a0e395dc340a5feb8a974e6b --- /dev/null +++ b/miniconda3/conda-meta/cffi-2.0.0-py313h4eded50_1.json @@ -0,0 +1,91 @@ +{ + "name": "cffi", + "version": "2.0.0", + "build": "py313h4eded50_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "cffi-2.0.0-py313h4eded50_1.conda", + "md5": "48989473c291f70b074ba57b48d4eda5", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/cffi-2.0.0-py313h4eded50_1.conda", + "sha256": "a16eafa37a73eb521aef93e9760f44be8f0180f9ff3e5bccbf2de8f6e762e9a0", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "libffi >=3.4,<4.0a0", + "libgcc-ng >=11.2.0", + "pycparser", + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1761832800000, + "size": 295376, + "requested_spec": "pkgs/main/linux-64::cffi==2.0.0=py313h4eded50_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/cffi-2.0.0-py313h4eded50_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/cffi-2.0.0-py313h4eded50_1", + "files": [ + "lib/python3.13/site-packages/_cffi_backend.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/site-packages/cffi-2.0.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/cffi-2.0.0.dist-info/METADATA", + "lib/python3.13/site-packages/cffi-2.0.0.dist-info/RECORD", + "lib/python3.13/site-packages/cffi-2.0.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/cffi-2.0.0.dist-info/WHEEL", + "lib/python3.13/site-packages/cffi-2.0.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/cffi-2.0.0.dist-info/entry_points.txt", + "lib/python3.13/site-packages/cffi-2.0.0.dist-info/licenses/AUTHORS", + "lib/python3.13/site-packages/cffi-2.0.0.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/cffi-2.0.0.dist-info/top_level.txt", + "lib/python3.13/site-packages/cffi/__init__.py", + "lib/python3.13/site-packages/cffi/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/cffi/__pycache__/_imp_emulation.cpython-313.pyc", + "lib/python3.13/site-packages/cffi/__pycache__/_shimmed_dist_utils.cpython-313.pyc", + "lib/python3.13/site-packages/cffi/__pycache__/api.cpython-313.pyc", + "lib/python3.13/site-packages/cffi/__pycache__/backend_ctypes.cpython-313.pyc", + "lib/python3.13/site-packages/cffi/__pycache__/cffi_opcode.cpython-313.pyc", + "lib/python3.13/site-packages/cffi/__pycache__/commontypes.cpython-313.pyc", + "lib/python3.13/site-packages/cffi/__pycache__/cparser.cpython-313.pyc", + "lib/python3.13/site-packages/cffi/__pycache__/error.cpython-313.pyc", + "lib/python3.13/site-packages/cffi/__pycache__/ffiplatform.cpython-313.pyc", + "lib/python3.13/site-packages/cffi/__pycache__/lock.cpython-313.pyc", + "lib/python3.13/site-packages/cffi/__pycache__/model.cpython-313.pyc", + "lib/python3.13/site-packages/cffi/__pycache__/pkgconfig.cpython-313.pyc", + "lib/python3.13/site-packages/cffi/__pycache__/recompiler.cpython-313.pyc", + "lib/python3.13/site-packages/cffi/__pycache__/setuptools_ext.cpython-313.pyc", + "lib/python3.13/site-packages/cffi/__pycache__/vengine_cpy.cpython-313.pyc", + "lib/python3.13/site-packages/cffi/__pycache__/vengine_gen.cpython-313.pyc", + "lib/python3.13/site-packages/cffi/__pycache__/verifier.cpython-313.pyc", + "lib/python3.13/site-packages/cffi/_cffi_errors.h", + "lib/python3.13/site-packages/cffi/_cffi_include.h", + "lib/python3.13/site-packages/cffi/_embedding.h", + "lib/python3.13/site-packages/cffi/_imp_emulation.py", + "lib/python3.13/site-packages/cffi/_shimmed_dist_utils.py", + "lib/python3.13/site-packages/cffi/api.py", + "lib/python3.13/site-packages/cffi/backend_ctypes.py", + "lib/python3.13/site-packages/cffi/cffi_opcode.py", + "lib/python3.13/site-packages/cffi/commontypes.py", + "lib/python3.13/site-packages/cffi/cparser.py", + "lib/python3.13/site-packages/cffi/error.py", + "lib/python3.13/site-packages/cffi/ffiplatform.py", + "lib/python3.13/site-packages/cffi/lock.py", + "lib/python3.13/site-packages/cffi/model.py", + "lib/python3.13/site-packages/cffi/parse_c_type.h", + "lib/python3.13/site-packages/cffi/pkgconfig.py", + "lib/python3.13/site-packages/cffi/recompiler.py", + "lib/python3.13/site-packages/cffi/setuptools_ext.py", + "lib/python3.13/site-packages/cffi/vengine_cpy.py", + "lib/python3.13/site-packages/cffi/vengine_gen.py", + "lib/python3.13/site-packages/cffi/verifier.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/cffi-2.0.0-py313h4eded50_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/charset-normalizer-3.4.4-py313h06a4308_0.json b/miniconda3/conda-meta/charset-normalizer-3.4.4-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..32eb72f59da3aac5acd121066614b2d1f09b8a48 --- /dev/null +++ b/miniconda3/conda-meta/charset-normalizer-3.4.4-py313h06a4308_0.json @@ -0,0 +1,81 @@ +{ + "name": "charset-normalizer", + "version": "3.4.4", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "charset-normalizer-3.4.4-py313h06a4308_0.conda", + "md5": "36134f1eb9574beab525f137faa53cd7", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/charset-normalizer-3.4.4-py313h06a4308_0.conda", + "sha256": "d84312b64791eac1dad798c86110a0ac53e7d980d6d4c5d32f60ebbb82e4eb4b", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1761744847000, + "size": 100520, + "requested_spec": "pkgs/main/linux-64::charset-normalizer==3.4.4=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/charset-normalizer-3.4.4-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/charset-normalizer-3.4.4-py313h06a4308_0", + "files": [ + "bin/normalizer", + "lib/python3.13/site-packages/charset_normalizer-3.4.4.dist-info/INSTALLER", + "lib/python3.13/site-packages/charset_normalizer-3.4.4.dist-info/METADATA", + "lib/python3.13/site-packages/charset_normalizer-3.4.4.dist-info/RECORD", + "lib/python3.13/site-packages/charset_normalizer-3.4.4.dist-info/REQUESTED", + "lib/python3.13/site-packages/charset_normalizer-3.4.4.dist-info/WHEEL", + "lib/python3.13/site-packages/charset_normalizer-3.4.4.dist-info/direct_url.json", + "lib/python3.13/site-packages/charset_normalizer-3.4.4.dist-info/entry_points.txt", + "lib/python3.13/site-packages/charset_normalizer-3.4.4.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/charset_normalizer-3.4.4.dist-info/top_level.txt", + "lib/python3.13/site-packages/charset_normalizer/__init__.py", + "lib/python3.13/site-packages/charset_normalizer/__main__.py", + "lib/python3.13/site-packages/charset_normalizer/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/charset_normalizer/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/site-packages/charset_normalizer/__pycache__/api.cpython-313.pyc", + "lib/python3.13/site-packages/charset_normalizer/__pycache__/cd.cpython-313.pyc", + "lib/python3.13/site-packages/charset_normalizer/__pycache__/constant.cpython-313.pyc", + "lib/python3.13/site-packages/charset_normalizer/__pycache__/legacy.cpython-313.pyc", + "lib/python3.13/site-packages/charset_normalizer/__pycache__/md.cpython-313.pyc", + "lib/python3.13/site-packages/charset_normalizer/__pycache__/models.cpython-313.pyc", + "lib/python3.13/site-packages/charset_normalizer/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/site-packages/charset_normalizer/__pycache__/version.cpython-313.pyc", + "lib/python3.13/site-packages/charset_normalizer/api.py", + "lib/python3.13/site-packages/charset_normalizer/cd.py", + "lib/python3.13/site-packages/charset_normalizer/cli/__init__.py", + "lib/python3.13/site-packages/charset_normalizer/cli/__main__.py", + "lib/python3.13/site-packages/charset_normalizer/cli/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/charset_normalizer/cli/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/site-packages/charset_normalizer/constant.py", + "lib/python3.13/site-packages/charset_normalizer/legacy.py", + "lib/python3.13/site-packages/charset_normalizer/md.py", + "lib/python3.13/site-packages/charset_normalizer/models.py", + "lib/python3.13/site-packages/charset_normalizer/py.typed", + "lib/python3.13/site-packages/charset_normalizer/utils.py", + "lib/python3.13/site-packages/charset_normalizer/version.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/normalizer", + "prefix_placeholder": "/home/task_176174481524083/conda-bld/charset-normalizer_1761744828711/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "26421e20925de29ffe9071dc8151d00dc9ed2cf3b76163f46bbfb00810961113", + "size_in_bytes": 487, + "sha256_in_prefix": "3bbdc44112fa19719da75ac2b95d30173a2cc489ba097a0c153eaf510a2fbeaf" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/charset-normalizer-3.4.4-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/click-8.2.1-py313h06a4308_1.json b/miniconda3/conda-meta/click-8.2.1-py313h06a4308_1.json new file mode 100644 index 0000000000000000000000000000000000000000..e559666534e1f7f2be1dc24fbc3eb4eeec8203c4 --- /dev/null +++ b/miniconda3/conda-meta/click-8.2.1-py313h06a4308_1.json @@ -0,0 +1,76 @@ +{ + "name": "click", + "version": "8.2.1", + "build": "py313h06a4308_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "click-8.2.1-py313h06a4308_1.conda", + "md5": "cd0c96b38e17a2b268d15d0b22da55b3", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/click-8.2.1-py313h06a4308_1.conda", + "sha256": "c743088f34421989511925c4fd47bd2d1627e0d47a9ce17ac522971456559dbf", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "BSD-3-Clause", + "license_family": "BSD", + "timestamp": 1764332274000, + "size": 327716, + "requested_spec": "pkgs/main/linux-64::click==8.2.1=py313h06a4308_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/click-8.2.1-py313h06a4308_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/click-8.2.1-py313h06a4308_1", + "files": [ + "lib/python3.13/site-packages/click-8.2.1.dist-info/INSTALLER", + "lib/python3.13/site-packages/click-8.2.1.dist-info/METADATA", + "lib/python3.13/site-packages/click-8.2.1.dist-info/RECORD", + "lib/python3.13/site-packages/click-8.2.1.dist-info/REQUESTED", + "lib/python3.13/site-packages/click-8.2.1.dist-info/WHEEL", + "lib/python3.13/site-packages/click-8.2.1.dist-info/direct_url.json", + "lib/python3.13/site-packages/click-8.2.1.dist-info/licenses/LICENSE.txt", + "lib/python3.13/site-packages/click/__init__.py", + "lib/python3.13/site-packages/click/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/click/__pycache__/_compat.cpython-313.pyc", + "lib/python3.13/site-packages/click/__pycache__/_termui_impl.cpython-313.pyc", + "lib/python3.13/site-packages/click/__pycache__/_textwrap.cpython-313.pyc", + "lib/python3.13/site-packages/click/__pycache__/_winconsole.cpython-313.pyc", + "lib/python3.13/site-packages/click/__pycache__/core.cpython-313.pyc", + "lib/python3.13/site-packages/click/__pycache__/decorators.cpython-313.pyc", + "lib/python3.13/site-packages/click/__pycache__/exceptions.cpython-313.pyc", + "lib/python3.13/site-packages/click/__pycache__/formatting.cpython-313.pyc", + "lib/python3.13/site-packages/click/__pycache__/globals.cpython-313.pyc", + "lib/python3.13/site-packages/click/__pycache__/parser.cpython-313.pyc", + "lib/python3.13/site-packages/click/__pycache__/shell_completion.cpython-313.pyc", + "lib/python3.13/site-packages/click/__pycache__/termui.cpython-313.pyc", + "lib/python3.13/site-packages/click/__pycache__/testing.cpython-313.pyc", + "lib/python3.13/site-packages/click/__pycache__/types.cpython-313.pyc", + "lib/python3.13/site-packages/click/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/site-packages/click/_compat.py", + "lib/python3.13/site-packages/click/_termui_impl.py", + "lib/python3.13/site-packages/click/_textwrap.py", + "lib/python3.13/site-packages/click/_winconsole.py", + "lib/python3.13/site-packages/click/core.py", + "lib/python3.13/site-packages/click/decorators.py", + "lib/python3.13/site-packages/click/exceptions.py", + "lib/python3.13/site-packages/click/formatting.py", + "lib/python3.13/site-packages/click/globals.py", + "lib/python3.13/site-packages/click/parser.py", + "lib/python3.13/site-packages/click/py.typed", + "lib/python3.13/site-packages/click/shell_completion.py", + "lib/python3.13/site-packages/click/termui.py", + "lib/python3.13/site-packages/click/testing.py", + "lib/python3.13/site-packages/click/types.py", + "lib/python3.13/site-packages/click/utils.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/click-8.2.1-py313h06a4308_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/conda-26.1.1-py313h06a4308_0.json b/miniconda3/conda-meta/conda-26.1.1-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..6cd4eea2021d47103f9a62d7eb86337e55c7dcd2 --- /dev/null +++ b/miniconda3/conda-meta/conda-26.1.1-py313h06a4308_0.json @@ -0,0 +1,637 @@ +{ + "name": "conda", + "version": "26.1.1", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "conda-26.1.1-py313h06a4308_0.conda", + "md5": "c47ffd5c56a75b1b62855a3c8e430889", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/conda-26.1.1-py313h06a4308_0.conda", + "sha256": "7fa70086625233a494e92418fb58591f43e2c6309cb4c082e3fd778a0280c506", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "archspec >=0.2.3", + "boltons >=23.0.0", + "charset-normalizer", + "conda-libmamba-solver >=25.4.0", + "conda-package-handling >=2.2.0", + "distro >=1.5.0", + "frozendict >=2.4.2", + "jsonpatch >=1.32", + "menuinst >=2", + "packaging >=23.0", + "platformdirs >=3.10.0", + "pluggy >=1.0.0", + "pycosat >=0.6.3", + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313", + "requests >=2.28.0,<3", + "ruamel.yaml >=0.11.14,<0.19", + "setuptools >=60.0.0", + "tqdm >=4", + "truststore >=0.8.0", + "zstandard >=0.19.0" + ], + "constrains": [ + "conda-build >=25.9", + "conda-env >=2.6", + "conda-content-trust >=0.1.1", + "conda-anaconda-telemetry >=0.3.0", + "conda-anaconda-tos >=0.2.1" + ], + "license": "BSD-3-Clause", + "license_family": "BSD", + "timestamp": 1771402226000, + "size": 1273463, + "requested_spec": "pkgs/main/linux-64::conda==26.1.1=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/conda-26.1.1-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/conda-26.1.1-py313h06a4308_0", + "files": [ + "bin/activate", + "bin/conda", + "bin/conda-env", + "bin/deactivate", + "condabin/conda", + "etc/fish/conf.d/conda.fish", + "etc/profile.d/conda.csh", + "etc/profile.d/conda.sh", + "lib/python3.13/site-packages/conda-26.1.1.dist-info/INSTALLER", + "lib/python3.13/site-packages/conda-26.1.1.dist-info/METADATA", + "lib/python3.13/site-packages/conda-26.1.1.dist-info/RECORD", + "lib/python3.13/site-packages/conda-26.1.1.dist-info/REQUESTED", + "lib/python3.13/site-packages/conda-26.1.1.dist-info/WHEEL", + "lib/python3.13/site-packages/conda-26.1.1.dist-info/direct_url.json", + "lib/python3.13/site-packages/conda-26.1.1.dist-info/entry_points.txt", + "lib/python3.13/site-packages/conda-26.1.1.dist-info/licenses/AUTHORS.md", + "lib/python3.13/site-packages/conda-26.1.1.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/conda/__init__.py", + "lib/python3.13/site-packages/conda/__main__.py", + "lib/python3.13/site-packages/conda/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/__pycache__/_vendor.cpython-313.pyc", + "lib/python3.13/site-packages/conda/__pycache__/_version.cpython-313.pyc", + "lib/python3.13/site-packages/conda/__pycache__/activate.cpython-313.pyc", + "lib/python3.13/site-packages/conda/__pycache__/api.cpython-313.pyc", + "lib/python3.13/site-packages/conda/__pycache__/deprecations.cpython-313.pyc", + "lib/python3.13/site-packages/conda/__pycache__/exception_handler.cpython-313.pyc", + "lib/python3.13/site-packages/conda/__pycache__/exceptions.cpython-313.pyc", + "lib/python3.13/site-packages/conda/__pycache__/exports.cpython-313.pyc", + "lib/python3.13/site-packages/conda/__pycache__/history.cpython-313.pyc", + "lib/python3.13/site-packages/conda/__pycache__/instructions.cpython-313.pyc", + "lib/python3.13/site-packages/conda/__pycache__/misc.cpython-313.pyc", + "lib/python3.13/site-packages/conda/__pycache__/plan.cpython-313.pyc", + "lib/python3.13/site-packages/conda/__pycache__/reporters.cpython-313.pyc", + "lib/python3.13/site-packages/conda/__pycache__/resolve.cpython-313.pyc", + "lib/python3.13/site-packages/conda/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/site-packages/conda/_vendor.py", + "lib/python3.13/site-packages/conda/_version.py", + "lib/python3.13/site-packages/conda/activate.py", + "lib/python3.13/site-packages/conda/api.py", + "lib/python3.13/site-packages/conda/auxlib/LICENSE", + "lib/python3.13/site-packages/conda/auxlib/__init__.py", + "lib/python3.13/site-packages/conda/auxlib/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/auxlib/__pycache__/collection.cpython-313.pyc", + "lib/python3.13/site-packages/conda/auxlib/__pycache__/compat.cpython-313.pyc", + "lib/python3.13/site-packages/conda/auxlib/__pycache__/decorators.cpython-313.pyc", + "lib/python3.13/site-packages/conda/auxlib/__pycache__/entity.cpython-313.pyc", + "lib/python3.13/site-packages/conda/auxlib/__pycache__/exceptions.cpython-313.pyc", + "lib/python3.13/site-packages/conda/auxlib/__pycache__/ish.cpython-313.pyc", + "lib/python3.13/site-packages/conda/auxlib/__pycache__/logz.cpython-313.pyc", + "lib/python3.13/site-packages/conda/auxlib/__pycache__/type_coercion.cpython-313.pyc", + "lib/python3.13/site-packages/conda/auxlib/collection.py", + "lib/python3.13/site-packages/conda/auxlib/compat.py", + "lib/python3.13/site-packages/conda/auxlib/decorators.py", + "lib/python3.13/site-packages/conda/auxlib/entity.py", + "lib/python3.13/site-packages/conda/auxlib/exceptions.py", + "lib/python3.13/site-packages/conda/auxlib/ish.py", + "lib/python3.13/site-packages/conda/auxlib/logz.py", + "lib/python3.13/site-packages/conda/auxlib/type_coercion.py", + "lib/python3.13/site-packages/conda/base/__init__.py", + "lib/python3.13/site-packages/conda/base/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/base/__pycache__/constants.cpython-313.pyc", + "lib/python3.13/site-packages/conda/base/__pycache__/context.cpython-313.pyc", + "lib/python3.13/site-packages/conda/base/constants.py", + "lib/python3.13/site-packages/conda/base/context.py", + "lib/python3.13/site-packages/conda/cli/__init__.py", + "lib/python3.13/site-packages/conda/cli/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/actions.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/common.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/conda_argparse.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/condarc.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/find_commands.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/helpers.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/install.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_clean.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_commands.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_compare.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_config.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_create.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_env.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_env_config.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_env_create.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_env_list.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_env_remove.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_env_update.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_env_vars.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_export.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_info.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_init.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_install.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_list.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_mock_activate.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_mock_deactivate.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_notices.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_package.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_pip.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_remove.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_rename.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_run.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_search.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/__pycache__/main_update.cpython-313.pyc", + "lib/python3.13/site-packages/conda/cli/actions.py", + "lib/python3.13/site-packages/conda/cli/common.py", + "lib/python3.13/site-packages/conda/cli/conda_argparse.py", + "lib/python3.13/site-packages/conda/cli/condarc.py", + "lib/python3.13/site-packages/conda/cli/find_commands.py", + "lib/python3.13/site-packages/conda/cli/helpers.py", + "lib/python3.13/site-packages/conda/cli/install.py", + "lib/python3.13/site-packages/conda/cli/main.py", + "lib/python3.13/site-packages/conda/cli/main_clean.py", + "lib/python3.13/site-packages/conda/cli/main_commands.py", + "lib/python3.13/site-packages/conda/cli/main_compare.py", + "lib/python3.13/site-packages/conda/cli/main_config.py", + "lib/python3.13/site-packages/conda/cli/main_create.py", + "lib/python3.13/site-packages/conda/cli/main_env.py", + "lib/python3.13/site-packages/conda/cli/main_env_config.py", + "lib/python3.13/site-packages/conda/cli/main_env_create.py", + "lib/python3.13/site-packages/conda/cli/main_env_list.py", + "lib/python3.13/site-packages/conda/cli/main_env_remove.py", + "lib/python3.13/site-packages/conda/cli/main_env_update.py", + "lib/python3.13/site-packages/conda/cli/main_env_vars.py", + "lib/python3.13/site-packages/conda/cli/main_export.py", + "lib/python3.13/site-packages/conda/cli/main_info.py", + "lib/python3.13/site-packages/conda/cli/main_init.py", + "lib/python3.13/site-packages/conda/cli/main_install.py", + "lib/python3.13/site-packages/conda/cli/main_list.py", + "lib/python3.13/site-packages/conda/cli/main_mock_activate.py", + "lib/python3.13/site-packages/conda/cli/main_mock_deactivate.py", + "lib/python3.13/site-packages/conda/cli/main_notices.py", + "lib/python3.13/site-packages/conda/cli/main_package.py", + "lib/python3.13/site-packages/conda/cli/main_pip.py", + "lib/python3.13/site-packages/conda/cli/main_remove.py", + "lib/python3.13/site-packages/conda/cli/main_rename.py", + "lib/python3.13/site-packages/conda/cli/main_run.py", + "lib/python3.13/site-packages/conda/cli/main_search.py", + "lib/python3.13/site-packages/conda/cli/main_update.py", + "lib/python3.13/site-packages/conda/common/__init__.py", + "lib/python3.13/site-packages/conda/common/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/__pycache__/_logic.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/__pycache__/compat.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/__pycache__/configuration.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/__pycache__/constants.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/__pycache__/io.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/__pycache__/iterators.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/__pycache__/logic.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/__pycache__/signals.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/__pycache__/toposort.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/__pycache__/url.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/_logic.py", + "lib/python3.13/site-packages/conda/common/_os/__init__.py", + "lib/python3.13/site-packages/conda/common/_os/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/_os/__pycache__/linux.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/_os/__pycache__/osx.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/_os/__pycache__/unix.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/_os/__pycache__/windows.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/_os/linux.py", + "lib/python3.13/site-packages/conda/common/_os/osx.py", + "lib/python3.13/site-packages/conda/common/_os/unix.py", + "lib/python3.13/site-packages/conda/common/_os/windows.py", + "lib/python3.13/site-packages/conda/common/compat.py", + "lib/python3.13/site-packages/conda/common/configuration.py", + "lib/python3.13/site-packages/conda/common/constants.py", + "lib/python3.13/site-packages/conda/common/io.py", + "lib/python3.13/site-packages/conda/common/iterators.py", + "lib/python3.13/site-packages/conda/common/logic.py", + "lib/python3.13/site-packages/conda/common/path/__init__.py", + "lib/python3.13/site-packages/conda/common/path/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/path/__pycache__/_cygpath.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/path/__pycache__/directories.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/path/__pycache__/python.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/path/__pycache__/windows.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/path/_cygpath.py", + "lib/python3.13/site-packages/conda/common/path/directories.py", + "lib/python3.13/site-packages/conda/common/path/python.py", + "lib/python3.13/site-packages/conda/common/path/windows.py", + "lib/python3.13/site-packages/conda/common/pkg_formats/__init__.py", + "lib/python3.13/site-packages/conda/common/pkg_formats/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/pkg_formats/__pycache__/python.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/pkg_formats/python.py", + "lib/python3.13/site-packages/conda/common/serialize/__init__.py", + "lib/python3.13/site-packages/conda/common/serialize/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/serialize/__pycache__/json.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/serialize/__pycache__/yaml.cpython-313.pyc", + "lib/python3.13/site-packages/conda/common/serialize/json.py", + "lib/python3.13/site-packages/conda/common/serialize/yaml.py", + "lib/python3.13/site-packages/conda/common/signals.py", + "lib/python3.13/site-packages/conda/common/toposort.py", + "lib/python3.13/site-packages/conda/common/url.py", + "lib/python3.13/site-packages/conda/core/__init__.py", + "lib/python3.13/site-packages/conda/core/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/core/__pycache__/envs_manager.cpython-313.pyc", + "lib/python3.13/site-packages/conda/core/__pycache__/index.cpython-313.pyc", + "lib/python3.13/site-packages/conda/core/__pycache__/initialize.cpython-313.pyc", + "lib/python3.13/site-packages/conda/core/__pycache__/link.cpython-313.pyc", + "lib/python3.13/site-packages/conda/core/__pycache__/package_cache_data.cpython-313.pyc", + "lib/python3.13/site-packages/conda/core/__pycache__/path_actions.cpython-313.pyc", + "lib/python3.13/site-packages/conda/core/__pycache__/portability.cpython-313.pyc", + "lib/python3.13/site-packages/conda/core/__pycache__/prefix_data.cpython-313.pyc", + "lib/python3.13/site-packages/conda/core/__pycache__/solve.cpython-313.pyc", + "lib/python3.13/site-packages/conda/core/__pycache__/subdir_data.cpython-313.pyc", + "lib/python3.13/site-packages/conda/core/envs_manager.py", + "lib/python3.13/site-packages/conda/core/index.py", + "lib/python3.13/site-packages/conda/core/initialize.py", + "lib/python3.13/site-packages/conda/core/link.py", + "lib/python3.13/site-packages/conda/core/package_cache_data.py", + "lib/python3.13/site-packages/conda/core/path_actions.py", + "lib/python3.13/site-packages/conda/core/portability.py", + "lib/python3.13/site-packages/conda/core/prefix_data.py", + "lib/python3.13/site-packages/conda/core/solve.py", + "lib/python3.13/site-packages/conda/core/subdir_data.py", + "lib/python3.13/site-packages/conda/deprecations.py", + "lib/python3.13/site-packages/conda/env/__init__.py", + "lib/python3.13/site-packages/conda/env/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/env/__pycache__/env.cpython-313.pyc", + "lib/python3.13/site-packages/conda/env/__pycache__/pip_util.cpython-313.pyc", + "lib/python3.13/site-packages/conda/env/env.py", + "lib/python3.13/site-packages/conda/env/installers/__init__.py", + "lib/python3.13/site-packages/conda/env/installers/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/env/installers/__pycache__/base.cpython-313.pyc", + "lib/python3.13/site-packages/conda/env/installers/__pycache__/conda.cpython-313.pyc", + "lib/python3.13/site-packages/conda/env/installers/__pycache__/pip.cpython-313.pyc", + "lib/python3.13/site-packages/conda/env/installers/base.py", + "lib/python3.13/site-packages/conda/env/installers/conda.py", + "lib/python3.13/site-packages/conda/env/installers/pip.py", + "lib/python3.13/site-packages/conda/env/pip_util.py", + "lib/python3.13/site-packages/conda/env/specs/__init__.py", + "lib/python3.13/site-packages/conda/env/specs/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/env/specs/__pycache__/binstar.cpython-313.pyc", + "lib/python3.13/site-packages/conda/env/specs/__pycache__/cep_24.cpython-313.pyc", + "lib/python3.13/site-packages/conda/env/specs/__pycache__/explicit.cpython-313.pyc", + "lib/python3.13/site-packages/conda/env/specs/__pycache__/requirements.cpython-313.pyc", + "lib/python3.13/site-packages/conda/env/specs/__pycache__/yaml_file.cpython-313.pyc", + "lib/python3.13/site-packages/conda/env/specs/binstar.py", + "lib/python3.13/site-packages/conda/env/specs/cep_24.py", + "lib/python3.13/site-packages/conda/env/specs/explicit.py", + "lib/python3.13/site-packages/conda/env/specs/requirements.py", + "lib/python3.13/site-packages/conda/env/specs/yaml_file.py", + "lib/python3.13/site-packages/conda/exception_handler.py", + "lib/python3.13/site-packages/conda/exceptions.py", + "lib/python3.13/site-packages/conda/exports.py", + "lib/python3.13/site-packages/conda/gateways/__init__.py", + "lib/python3.13/site-packages/conda/gateways/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/__pycache__/anaconda_client.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/__pycache__/logging.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/__pycache__/subprocess.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/anaconda_client.py", + "lib/python3.13/site-packages/conda/gateways/connection/__init__.py", + "lib/python3.13/site-packages/conda/gateways/connection/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/connection/__pycache__/download.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/connection/__pycache__/session.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/connection/adapters/__init__.py", + "lib/python3.13/site-packages/conda/gateways/connection/adapters/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/connection/adapters/__pycache__/ftp.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/connection/adapters/__pycache__/http.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/connection/adapters/__pycache__/localfs.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/connection/adapters/__pycache__/s3.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/connection/adapters/ftp.py", + "lib/python3.13/site-packages/conda/gateways/connection/adapters/http.py", + "lib/python3.13/site-packages/conda/gateways/connection/adapters/localfs.py", + "lib/python3.13/site-packages/conda/gateways/connection/adapters/s3.py", + "lib/python3.13/site-packages/conda/gateways/connection/download.py", + "lib/python3.13/site-packages/conda/gateways/connection/session.py", + "lib/python3.13/site-packages/conda/gateways/disk/__init__.py", + "lib/python3.13/site-packages/conda/gateways/disk/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/disk/__pycache__/create.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/disk/__pycache__/delete.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/disk/__pycache__/link.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/disk/__pycache__/lock.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/disk/__pycache__/permissions.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/disk/__pycache__/read.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/disk/__pycache__/test.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/disk/__pycache__/update.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/disk/create.py", + "lib/python3.13/site-packages/conda/gateways/disk/delete.py", + "lib/python3.13/site-packages/conda/gateways/disk/link.py", + "lib/python3.13/site-packages/conda/gateways/disk/lock.py", + "lib/python3.13/site-packages/conda/gateways/disk/permissions.py", + "lib/python3.13/site-packages/conda/gateways/disk/read.py", + "lib/python3.13/site-packages/conda/gateways/disk/test.py", + "lib/python3.13/site-packages/conda/gateways/disk/update.py", + "lib/python3.13/site-packages/conda/gateways/logging.py", + "lib/python3.13/site-packages/conda/gateways/repodata/__init__.py", + "lib/python3.13/site-packages/conda/gateways/repodata/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/repodata/__pycache__/lock.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/repodata/jlap/__init__.py", + "lib/python3.13/site-packages/conda/gateways/repodata/jlap/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/repodata/jlap/__pycache__/core.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/repodata/jlap/__pycache__/fetch.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/repodata/jlap/__pycache__/interface.cpython-313.pyc", + "lib/python3.13/site-packages/conda/gateways/repodata/jlap/core.py", + "lib/python3.13/site-packages/conda/gateways/repodata/jlap/fetch.py", + "lib/python3.13/site-packages/conda/gateways/repodata/jlap/interface.py", + "lib/python3.13/site-packages/conda/gateways/repodata/lock.py", + "lib/python3.13/site-packages/conda/gateways/subprocess.py", + "lib/python3.13/site-packages/conda/history.py", + "lib/python3.13/site-packages/conda/instructions.py", + "lib/python3.13/site-packages/conda/misc.py", + "lib/python3.13/site-packages/conda/models/__init__.py", + "lib/python3.13/site-packages/conda/models/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/models/__pycache__/channel.cpython-313.pyc", + "lib/python3.13/site-packages/conda/models/__pycache__/dist.cpython-313.pyc", + "lib/python3.13/site-packages/conda/models/__pycache__/enums.cpython-313.pyc", + "lib/python3.13/site-packages/conda/models/__pycache__/environment.cpython-313.pyc", + "lib/python3.13/site-packages/conda/models/__pycache__/match_spec.cpython-313.pyc", + "lib/python3.13/site-packages/conda/models/__pycache__/package_info.cpython-313.pyc", + "lib/python3.13/site-packages/conda/models/__pycache__/prefix_graph.cpython-313.pyc", + "lib/python3.13/site-packages/conda/models/__pycache__/records.cpython-313.pyc", + "lib/python3.13/site-packages/conda/models/__pycache__/version.cpython-313.pyc", + "lib/python3.13/site-packages/conda/models/channel.py", + "lib/python3.13/site-packages/conda/models/dist.py", + "lib/python3.13/site-packages/conda/models/enums.py", + "lib/python3.13/site-packages/conda/models/environment.py", + "lib/python3.13/site-packages/conda/models/match_spec.py", + "lib/python3.13/site-packages/conda/models/package_info.py", + "lib/python3.13/site-packages/conda/models/prefix_graph.py", + "lib/python3.13/site-packages/conda/models/records.py", + "lib/python3.13/site-packages/conda/models/version.py", + "lib/python3.13/site-packages/conda/notices/__init__.py", + "lib/python3.13/site-packages/conda/notices/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/notices/__pycache__/cache.cpython-313.pyc", + "lib/python3.13/site-packages/conda/notices/__pycache__/core.cpython-313.pyc", + "lib/python3.13/site-packages/conda/notices/__pycache__/fetch.cpython-313.pyc", + "lib/python3.13/site-packages/conda/notices/__pycache__/types.cpython-313.pyc", + "lib/python3.13/site-packages/conda/notices/__pycache__/views.cpython-313.pyc", + "lib/python3.13/site-packages/conda/notices/cache.py", + "lib/python3.13/site-packages/conda/notices/core.py", + "lib/python3.13/site-packages/conda/notices/fetch.py", + "lib/python3.13/site-packages/conda/notices/types.py", + "lib/python3.13/site-packages/conda/notices/views.py", + "lib/python3.13/site-packages/conda/plan.py", + "lib/python3.13/site-packages/conda/plugins/__init__.py", + "lib/python3.13/site-packages/conda/plugins/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/__pycache__/config.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/__pycache__/hookspec.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/__pycache__/manager.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/__pycache__/solvers.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/__pycache__/types.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/config.py", + "lib/python3.13/site-packages/conda/plugins/environment_exporters/__init__.py", + "lib/python3.13/site-packages/conda/plugins/environment_exporters/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/environment_exporters/__pycache__/environment_yml.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/environment_exporters/__pycache__/explicit.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/environment_exporters/__pycache__/requirements_txt.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/environment_exporters/environment_yml.py", + "lib/python3.13/site-packages/conda/plugins/environment_exporters/explicit.py", + "lib/python3.13/site-packages/conda/plugins/environment_exporters/requirements_txt.py", + "lib/python3.13/site-packages/conda/plugins/environment_specifiers/__init__.py", + "lib/python3.13/site-packages/conda/plugins/environment_specifiers/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/environment_specifiers/__pycache__/cep_24.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/environment_specifiers/__pycache__/environment_yml.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/environment_specifiers/__pycache__/explicit.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/environment_specifiers/__pycache__/requirements_txt.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/environment_specifiers/cep_24.py", + "lib/python3.13/site-packages/conda/plugins/environment_specifiers/environment_yml.py", + "lib/python3.13/site-packages/conda/plugins/environment_specifiers/explicit.py", + "lib/python3.13/site-packages/conda/plugins/environment_specifiers/requirements_txt.py", + "lib/python3.13/site-packages/conda/plugins/hookspec.py", + "lib/python3.13/site-packages/conda/plugins/manager.py", + "lib/python3.13/site-packages/conda/plugins/package_extractors/__init__.py", + "lib/python3.13/site-packages/conda/plugins/package_extractors/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/package_extractors/__pycache__/conda.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/package_extractors/conda.py", + "lib/python3.13/site-packages/conda/plugins/post_solves/__init__.py", + "lib/python3.13/site-packages/conda/plugins/post_solves/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/post_solves/__pycache__/signature_verification.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/post_solves/signature_verification.py", + "lib/python3.13/site-packages/conda/plugins/prefix_data_loaders/__init__.py", + "lib/python3.13/site-packages/conda/plugins/prefix_data_loaders/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/prefix_data_loaders/pypi/__init__.py", + "lib/python3.13/site-packages/conda/plugins/prefix_data_loaders/pypi/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/prefix_data_loaders/pypi/__pycache__/pkg_format.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/prefix_data_loaders/pypi/pkg_format.py", + "lib/python3.13/site-packages/conda/plugins/reporter_backends/__init__.py", + "lib/python3.13/site-packages/conda/plugins/reporter_backends/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/reporter_backends/__pycache__/console.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/reporter_backends/__pycache__/json.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/reporter_backends/console.py", + "lib/python3.13/site-packages/conda/plugins/reporter_backends/json.py", + "lib/python3.13/site-packages/conda/plugins/solvers.py", + "lib/python3.13/site-packages/conda/plugins/subcommands/__init__.py", + "lib/python3.13/site-packages/conda/plugins/subcommands/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/subcommands/doctor/__init__.py", + "lib/python3.13/site-packages/conda/plugins/subcommands/doctor/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/subcommands/doctor/health_checks/__init__.py", + "lib/python3.13/site-packages/conda/plugins/subcommands/doctor/health_checks/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/subcommands/doctor/health_checks/__pycache__/altered_files.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/subcommands/doctor/health_checks/__pycache__/consistency.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/subcommands/doctor/health_checks/__pycache__/environment_txt.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/subcommands/doctor/health_checks/__pycache__/file_locking.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/subcommands/doctor/health_checks/__pycache__/missing_files.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/subcommands/doctor/health_checks/__pycache__/pinned.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/subcommands/doctor/health_checks/__pycache__/requests_ca_bundle.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/subcommands/doctor/health_checks/altered_files.py", + "lib/python3.13/site-packages/conda/plugins/subcommands/doctor/health_checks/consistency.py", + "lib/python3.13/site-packages/conda/plugins/subcommands/doctor/health_checks/environment_txt.py", + "lib/python3.13/site-packages/conda/plugins/subcommands/doctor/health_checks/file_locking.py", + "lib/python3.13/site-packages/conda/plugins/subcommands/doctor/health_checks/missing_files.py", + "lib/python3.13/site-packages/conda/plugins/subcommands/doctor/health_checks/pinned.py", + "lib/python3.13/site-packages/conda/plugins/subcommands/doctor/health_checks/requests_ca_bundle.py", + "lib/python3.13/site-packages/conda/plugins/types.py", + "lib/python3.13/site-packages/conda/plugins/virtual_packages/__init__.py", + "lib/python3.13/site-packages/conda/plugins/virtual_packages/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/virtual_packages/__pycache__/archspec.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/virtual_packages/__pycache__/conda.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/virtual_packages/__pycache__/cuda.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/virtual_packages/__pycache__/freebsd.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/virtual_packages/__pycache__/linux.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/virtual_packages/__pycache__/osx.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/virtual_packages/__pycache__/windows.cpython-313.pyc", + "lib/python3.13/site-packages/conda/plugins/virtual_packages/archspec.py", + "lib/python3.13/site-packages/conda/plugins/virtual_packages/conda.py", + "lib/python3.13/site-packages/conda/plugins/virtual_packages/cuda.py", + "lib/python3.13/site-packages/conda/plugins/virtual_packages/freebsd.py", + "lib/python3.13/site-packages/conda/plugins/virtual_packages/linux.py", + "lib/python3.13/site-packages/conda/plugins/virtual_packages/osx.py", + "lib/python3.13/site-packages/conda/plugins/virtual_packages/windows.py", + "lib/python3.13/site-packages/conda/py.typed", + "lib/python3.13/site-packages/conda/reporters.py", + "lib/python3.13/site-packages/conda/resolve.py", + "lib/python3.13/site-packages/conda/shell/Library/bin/conda.bat", + "lib/python3.13/site-packages/conda/shell/Scripts/activate.bat", + "lib/python3.13/site-packages/conda/shell/bin/activate", + "lib/python3.13/site-packages/conda/shell/bin/deactivate", + "lib/python3.13/site-packages/conda/shell/cli-32.exe", + "lib/python3.13/site-packages/conda/shell/cli-64.exe", + "lib/python3.13/site-packages/conda/shell/conda.xsh", + "lib/python3.13/site-packages/conda/shell/conda_icon.ico", + "lib/python3.13/site-packages/conda/shell/condabin/Conda.psm1", + "lib/python3.13/site-packages/conda/shell/condabin/_conda_activate.bat", + "lib/python3.13/site-packages/conda/shell/condabin/activate.bat", + "lib/python3.13/site-packages/conda/shell/condabin/conda-hook.ps1", + "lib/python3.13/site-packages/conda/shell/condabin/conda.bat", + "lib/python3.13/site-packages/conda/shell/condabin/conda_auto_activate.bat", + "lib/python3.13/site-packages/conda/shell/condabin/conda_hook.bat", + "lib/python3.13/site-packages/conda/shell/condabin/deactivate.bat", + "lib/python3.13/site-packages/conda/shell/condabin/rename_tmp.bat", + "lib/python3.13/site-packages/conda/shell/etc/fish/conf.d/conda.fish", + "lib/python3.13/site-packages/conda/shell/etc/profile.d/conda.csh", + "lib/python3.13/site-packages/conda/shell/etc/profile.d/conda.sh", + "lib/python3.13/site-packages/conda/testing/__init__.py", + "lib/python3.13/site-packages/conda/testing/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/testing/__pycache__/cases.cpython-313.pyc", + "lib/python3.13/site-packages/conda/testing/__pycache__/fixtures.cpython-313.pyc", + "lib/python3.13/site-packages/conda/testing/__pycache__/helpers.cpython-313.pyc", + "lib/python3.13/site-packages/conda/testing/__pycache__/http_test_server.cpython-313.pyc", + "lib/python3.13/site-packages/conda/testing/__pycache__/integration.cpython-313.pyc", + "lib/python3.13/site-packages/conda/testing/__pycache__/solver_helpers.cpython-313.pyc", + "lib/python3.13/site-packages/conda/testing/cases.py", + "lib/python3.13/site-packages/conda/testing/fixtures.py", + "lib/python3.13/site-packages/conda/testing/gateways/__init__.py", + "lib/python3.13/site-packages/conda/testing/gateways/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/testing/gateways/__pycache__/fixtures.cpython-313.pyc", + "lib/python3.13/site-packages/conda/testing/gateways/fixtures.py", + "lib/python3.13/site-packages/conda/testing/helpers.py", + "lib/python3.13/site-packages/conda/testing/http_test_server.py", + "lib/python3.13/site-packages/conda/testing/integration.py", + "lib/python3.13/site-packages/conda/testing/notices/__init__.py", + "lib/python3.13/site-packages/conda/testing/notices/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/testing/notices/__pycache__/fixtures.cpython-313.pyc", + "lib/python3.13/site-packages/conda/testing/notices/__pycache__/helpers.cpython-313.pyc", + "lib/python3.13/site-packages/conda/testing/notices/fixtures.py", + "lib/python3.13/site-packages/conda/testing/notices/helpers.py", + "lib/python3.13/site-packages/conda/testing/solver_helpers.py", + "lib/python3.13/site-packages/conda/trust/__init__.py", + "lib/python3.13/site-packages/conda/trust/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda/trust/__pycache__/constants.cpython-313.pyc", + "lib/python3.13/site-packages/conda/trust/__pycache__/signature_verification.cpython-313.pyc", + "lib/python3.13/site-packages/conda/trust/constants.py", + "lib/python3.13/site-packages/conda/trust/signature_verification.py", + "lib/python3.13/site-packages/conda/utils.py", + "lib/python3.13/site-packages/conda_env/README.md", + "lib/python3.13/site-packages/conda_env/__init__.py", + "lib/python3.13/site-packages/conda_env/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda_env/cli/__init__.py", + "lib/python3.13/site-packages/conda_env/cli/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda_env/installers/__init__.py", + "lib/python3.13/site-packages/conda_env/installers/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/tests/data/recipes/activate_deactivate_package/src/etc/conda/activate.d/activate.bat", + "lib/python3.13/site-packages/tests/data/recipes/activate_deactivate_package/src/etc/conda/activate.d/activate.sh", + "lib/python3.13/site-packages/tests/data/recipes/activate_deactivate_package/src/etc/conda/deactivate.d/deactivate.bat", + "lib/python3.13/site-packages/tests/data/recipes/activate_deactivate_package/src/etc/conda/deactivate.d/deactivate.sh", + "lib/python3.13/site-packages/xontrib/conda.xsh", + "shell/condabin/Conda.psm1", + "shell/condabin/conda-hook.ps1" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/activate", + "prefix_placeholder": "/home/task_177140125005974/croot/conda_1771402194624/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_place", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "0ecebdab3952f410d092b6811bf5279313a185e26a9a212df4828f6ce59473a3", + "size_in_bytes": 429, + "sha256_in_prefix": "e2c2979e52f21c2c9bdad0daaddd42ce4d74acdb24199a115a48724ecc51e906" + }, + { + "_path": "bin/conda", + "prefix_placeholder": "/home/task_177140125005974/croot/conda_1771402194624/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_place", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "30c825221f449c07bcc6c882544011cff9f6de2b76b5a740d4e4f9c35ea5ca90", + "size_in_bytes": 756, + "sha256_in_prefix": "292c8ccec1f1de21e5ea346ff15d10f6dc1aad5d1e5850a1462418cc807d9785" + }, + { + "_path": "bin/conda-env", + "prefix_placeholder": "/home/task_177140125005974/croot/conda_1771402194624/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_place", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "f729cb7a95374451d21f0173c47638dea999d8c9c7ea0fbf65ff6a42d2ee9ba0", + "size_in_bytes": 393, + "sha256_in_prefix": "f46ef0748655e23a7b143fd3f27761940460d537a8d323196f372335fcacd213" + }, + { + "_path": "bin/deactivate", + "prefix_placeholder": "/home/task_177140125005974/croot/conda_1771402194624/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_place", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "7e5aea295c98a7186699181b2691950187fc78edca68b49899168bba7f2d1f7f", + "size_in_bytes": 517, + "sha256_in_prefix": "24756fa4bd9c1dfaef3cf67e4e68b8f8287af281926fd2dd34f124eefb19e814" + }, + { + "_path": "condabin/conda", + "prefix_placeholder": "/home/task_177140125005974/croot/conda_1771402194624/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_place", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "30c825221f449c07bcc6c882544011cff9f6de2b76b5a740d4e4f9c35ea5ca90", + "size_in_bytes": 756, + "sha256_in_prefix": "292c8ccec1f1de21e5ea346ff15d10f6dc1aad5d1e5850a1462418cc807d9785" + }, + { + "_path": "etc/fish/conf.d/conda.fish", + "prefix_placeholder": "/home/task_177140125005974/croot/conda_1771402194624/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_place", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "83acf4a8f4fe26b4f3a54efa32fe4ab09e22b5472e08a36161403e7bb101511d", + "size_in_bytes": 4642, + "sha256_in_prefix": "b43835715cf360ea74ad292114ea858157512cc52b9e9130afb3c3a27a21460b" + }, + { + "_path": "etc/profile.d/conda.csh", + "prefix_placeholder": "/home/task_177140125005974/croot/conda_1771402194624/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_place", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "0dfcacc6bf038e9ebb22f5c31158357efa33cd6161ca43456086aeaf9daf0922", + "size_in_bytes": 1511, + "sha256_in_prefix": "ffd7cd0ba6917c3bbbb40e8ea60a0f2fdb2a83069be03b30835f216066d371f3" + }, + { + "_path": "etc/profile.d/conda.sh", + "prefix_placeholder": "/home/task_177140125005974/croot/conda_1771402194624/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_place", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "94f1d52546b1052e54f73bb80dccc635268bd48ae745d7cb596addf529cc30b7", + "size_in_bytes": 3379, + "sha256_in_prefix": "eb7c40ffc34b0fe0ec4122e35f60e631ed40ca9cf93d3fbaab3d02b66745e3f3" + }, + { + "_path": "lib/python3.13/site-packages/xontrib/conda.xsh", + "prefix_placeholder": "/home/task_177140125005974/croot/conda_1771402194624/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_place", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "c0f16de7482c89d953a0e162c482bde88df427994107de10c60fc502fe46d2ed", + "size_in_bytes": 8612, + "sha256_in_prefix": "e6321d6c9aca3756cb76463d2b5d8621fa62f92639d42aa054009db34852783f" + }, + { + "_path": "shell/condabin/conda-hook.ps1", + "prefix_placeholder": "/home/task_177140125005974/croot/conda_1771402194624/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_place", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "ea970cb80ccf0251b43499faf2ab52fdde08a3e45a1f21a9a04796616a3c9691", + "size_in_bytes": 1346, + "sha256_in_prefix": "82ee6864ece908e5afcd0dff70f7df03ee3328aa63ec4186e9a2281e3f294d16" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/conda-26.1.1-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/conda-anaconda-telemetry-0.3.0-pyhd3eb1b0_1.json b/miniconda3/conda-meta/conda-anaconda-telemetry-0.3.0-pyhd3eb1b0_1.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e32172d197d7cc84876f320288313e997a3843 --- /dev/null +++ b/miniconda3/conda-meta/conda-anaconda-telemetry-0.3.0-pyhd3eb1b0_1.json @@ -0,0 +1,64 @@ +{ + "name": "conda-anaconda-telemetry", + "version": "0.3.0", + "build": "pyhd3eb1b0_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/noarch", + "subdir": "noarch", + "fn": "conda-anaconda-telemetry-0.3.0-pyhd3eb1b0_1.conda", + "md5": "2ac481091c9cc4eec50cf2f0cc42744d", + "url": "https://repo.anaconda.com/pkgs/main/noarch/conda-anaconda-telemetry-0.3.0-pyhd3eb1b0_1.conda", + "sha256": "93b33a69c7e6b410ecb02c9922c71d8e07b9f4b874139a0d350165f8d1d557f3", + "depends": [ + "conda >=24.11", + "python >=3.9" + ], + "constrains": [], + "noarch": "python", + "license": "BSD-3-Clause", + "license_family": "BSD", + "package_type": "noarch_python", + "timestamp": 1755883824000, + "size": 13808, + "requested_spec": "pkgs/main/noarch::conda-anaconda-telemetry==0.3.0=pyhd3eb1b0_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/conda-anaconda-telemetry-0.3.0-pyhd3eb1b0_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/conda-anaconda-telemetry-0.3.0-pyhd3eb1b0_1", + "files": [ + "lib/python3.13/site-packages/conda_anaconda_telemetry-0.3.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/conda_anaconda_telemetry-0.3.0.dist-info/METADATA", + "lib/python3.13/site-packages/conda_anaconda_telemetry-0.3.0.dist-info/RECORD", + "lib/python3.13/site-packages/conda_anaconda_telemetry-0.3.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/conda_anaconda_telemetry-0.3.0.dist-info/WHEEL", + "lib/python3.13/site-packages/conda_anaconda_telemetry-0.3.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/conda_anaconda_telemetry-0.3.0.dist-info/entry_points.txt", + "lib/python3.13/site-packages/conda_anaconda_telemetry-0.3.0.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/conda_anaconda_telemetry/__init__.py", + "lib/python3.13/site-packages/conda_anaconda_telemetry/_version.py", + "lib/python3.13/site-packages/conda_anaconda_telemetry/hooks.py", + "lib/python3.13/site-packages/conda_anaconda_telemetry/py.typed", + "lib/python3.13/site-packages/conda_anaconda_telemetry/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda_anaconda_telemetry/__pycache__/_version.cpython-313.pyc", + "lib/python3.13/site-packages/conda_anaconda_telemetry/__pycache__/hooks.cpython-313.pyc" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/python3.13/site-packages/conda_anaconda_telemetry/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/conda_anaconda_telemetry/__pycache__/_version.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/conda_anaconda_telemetry/__pycache__/hooks.cpython-313.pyc", + "path_type": "pyc_file" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/conda-anaconda-telemetry-0.3.0-pyhd3eb1b0_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/conda-anaconda-tos-0.2.2-py313h06a4308_1.json b/miniconda3/conda-meta/conda-anaconda-tos-0.2.2-py313h06a4308_1.json new file mode 100644 index 0000000000000000000000000000000000000000..0dfabc229d1163d7d1011d4f92f44c49e6063b6f --- /dev/null +++ b/miniconda3/conda-meta/conda-anaconda-tos-0.2.2-py313h06a4308_1.json @@ -0,0 +1,75 @@ +{ + "name": "conda-anaconda-tos", + "version": "0.2.2", + "build": "py313h06a4308_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "conda-anaconda-tos-0.2.2-py313h06a4308_1.conda", + "md5": "48b92f96da51225fe57f3fe687eec943", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/conda-anaconda-tos-0.2.2-py313h06a4308_1.conda", + "sha256": "db63dbb7179e28fed7616989cf9c52637a5cd4008929bd5d5c9063094ec098cd", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "conda >=24.11", + "pydantic", + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313", + "rich" + ], + "constrains": [], + "license": "BSD-3-Clause", + "license_family": "BSD", + "timestamp": 1755123417000, + "size": 49390, + "requested_spec": "pkgs/main/linux-64::conda-anaconda-tos==0.2.2=py313h06a4308_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/conda-anaconda-tos-0.2.2-py313h06a4308_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/conda-anaconda-tos-0.2.2-py313h06a4308_1", + "files": [ + "bin/.conda-anaconda-tos-pre-unlink.sh", + "lib/python3.13/site-packages/conda_anaconda_tos-0.2.2.dist-info/INSTALLER", + "lib/python3.13/site-packages/conda_anaconda_tos-0.2.2.dist-info/METADATA", + "lib/python3.13/site-packages/conda_anaconda_tos-0.2.2.dist-info/RECORD", + "lib/python3.13/site-packages/conda_anaconda_tos-0.2.2.dist-info/REQUESTED", + "lib/python3.13/site-packages/conda_anaconda_tos-0.2.2.dist-info/WHEEL", + "lib/python3.13/site-packages/conda_anaconda_tos-0.2.2.dist-info/direct_url.json", + "lib/python3.13/site-packages/conda_anaconda_tos-0.2.2.dist-info/entry_points.txt", + "lib/python3.13/site-packages/conda_anaconda_tos-0.2.2.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/conda_anaconda_tos/__init__.py", + "lib/python3.13/site-packages/conda_anaconda_tos/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda_anaconda_tos/__pycache__/_version.cpython-313.pyc", + "lib/python3.13/site-packages/conda_anaconda_tos/__pycache__/api.cpython-313.pyc", + "lib/python3.13/site-packages/conda_anaconda_tos/__pycache__/exceptions.cpython-313.pyc", + "lib/python3.13/site-packages/conda_anaconda_tos/__pycache__/local.cpython-313.pyc", + "lib/python3.13/site-packages/conda_anaconda_tos/__pycache__/models.cpython-313.pyc", + "lib/python3.13/site-packages/conda_anaconda_tos/__pycache__/path.cpython-313.pyc", + "lib/python3.13/site-packages/conda_anaconda_tos/__pycache__/plugin.cpython-313.pyc", + "lib/python3.13/site-packages/conda_anaconda_tos/__pycache__/remote.cpython-313.pyc", + "lib/python3.13/site-packages/conda_anaconda_tos/_version.py", + "lib/python3.13/site-packages/conda_anaconda_tos/api.py", + "lib/python3.13/site-packages/conda_anaconda_tos/console/__init__.py", + "lib/python3.13/site-packages/conda_anaconda_tos/console/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda_anaconda_tos/console/__pycache__/mappers.cpython-313.pyc", + "lib/python3.13/site-packages/conda_anaconda_tos/console/__pycache__/prompt.cpython-313.pyc", + "lib/python3.13/site-packages/conda_anaconda_tos/console/__pycache__/render.cpython-313.pyc", + "lib/python3.13/site-packages/conda_anaconda_tos/console/mappers.py", + "lib/python3.13/site-packages/conda_anaconda_tos/console/prompt.py", + "lib/python3.13/site-packages/conda_anaconda_tos/console/render.py", + "lib/python3.13/site-packages/conda_anaconda_tos/exceptions.py", + "lib/python3.13/site-packages/conda_anaconda_tos/local.py", + "lib/python3.13/site-packages/conda_anaconda_tos/models.py", + "lib/python3.13/site-packages/conda_anaconda_tos/path.py", + "lib/python3.13/site-packages/conda_anaconda_tos/plugin.py", + "lib/python3.13/site-packages/conda_anaconda_tos/py.typed", + "lib/python3.13/site-packages/conda_anaconda_tos/remote.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/conda-anaconda-tos-0.2.2-py313h06a4308_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/conda-content-trust-0.2.0-py313h06a4308_1.json b/miniconda3/conda-meta/conda-content-trust-0.2.0-py313h06a4308_1.json new file mode 100644 index 0000000000000000000000000000000000000000..01d144a5e80a2d4caf6ce4a78c519c8afb6bdfe5 --- /dev/null +++ b/miniconda3/conda-meta/conda-content-trust-0.2.0-py313h06a4308_1.json @@ -0,0 +1,77 @@ +{ + "name": "conda-content-trust", + "version": "0.2.0", + "build": "py313h06a4308_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "conda-content-trust-0.2.0-py313h06a4308_1.conda", + "md5": "aefc551e21e13ecc1de44ee589aea77d", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/conda-content-trust-0.2.0-py313h06a4308_1.conda", + "sha256": "4a9f6f94219e6e603a7e69beb3a391096a1cf9aec249e100f30dce3eac7a233e", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "cryptography >=41", + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "BSD-3-Clause", + "license_family": "BSD", + "timestamp": 1728487079000, + "size": 62054, + "requested_spec": "pkgs/main/linux-64::conda-content-trust==0.2.0=py313h06a4308_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/conda-content-trust-0.2.0-py313h06a4308_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/conda-content-trust-0.2.0-py313h06a4308_1", + "files": [ + "bin/conda-content-trust", + "lib/python3.13/site-packages/conda_content_trust-0.2.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/conda_content_trust-0.2.0.dist-info/METADATA", + "lib/python3.13/site-packages/conda_content_trust-0.2.0.dist-info/RECORD", + "lib/python3.13/site-packages/conda_content_trust-0.2.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/conda_content_trust-0.2.0.dist-info/WHEEL", + "lib/python3.13/site-packages/conda_content_trust-0.2.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/conda_content_trust-0.2.0.dist-info/entry_points.txt", + "lib/python3.13/site-packages/conda_content_trust-0.2.0.dist-info/licenses/AUTHORS.md", + "lib/python3.13/site-packages/conda_content_trust-0.2.0.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/conda_content_trust/__init__.py", + "lib/python3.13/site-packages/conda_content_trust/__main__.py", + "lib/python3.13/site-packages/conda_content_trust/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda_content_trust/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/site-packages/conda_content_trust/__pycache__/__version__.cpython-313.pyc", + "lib/python3.13/site-packages/conda_content_trust/__pycache__/authentication.cpython-313.pyc", + "lib/python3.13/site-packages/conda_content_trust/__pycache__/cli.cpython-313.pyc", + "lib/python3.13/site-packages/conda_content_trust/__pycache__/common.cpython-313.pyc", + "lib/python3.13/site-packages/conda_content_trust/__pycache__/metadata_construction.cpython-313.pyc", + "lib/python3.13/site-packages/conda_content_trust/__pycache__/plugin.cpython-313.pyc", + "lib/python3.13/site-packages/conda_content_trust/__pycache__/root_signing.cpython-313.pyc", + "lib/python3.13/site-packages/conda_content_trust/__pycache__/signing.cpython-313.pyc", + "lib/python3.13/site-packages/conda_content_trust/__version__.py", + "lib/python3.13/site-packages/conda_content_trust/authentication.py", + "lib/python3.13/site-packages/conda_content_trust/cli.py", + "lib/python3.13/site-packages/conda_content_trust/common.py", + "lib/python3.13/site-packages/conda_content_trust/metadata_construction.py", + "lib/python3.13/site-packages/conda_content_trust/plugin.py", + "lib/python3.13/site-packages/conda_content_trust/root_signing.py", + "lib/python3.13/site-packages/conda_content_trust/signing.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/conda-content-trust", + "prefix_placeholder": "/work/perseverance-python-buildout/croot/conda-content-trust_1728487058234/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pla", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "f7eb89a73c12c4d17397c4c9f27bb824a660c9fd2c53b6fc3fd531522f6bef92", + "size_in_bytes": 474, + "sha256_in_prefix": "2b24a2f588ab411b7fd4813de3d9ee20febb08890b9585f2fbebee314b755b1c" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/conda-content-trust-0.2.0-py313h06a4308_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/conda-libmamba-solver-25.11.0-pyhdf14ebd_0.json b/miniconda3/conda-meta/conda-libmamba-solver-25.11.0-pyhdf14ebd_0.json new file mode 100644 index 0000000000000000000000000000000000000000..f606eb3b5ab3b871fe19cfad5f5163b7c2c5a2a3 --- /dev/null +++ b/miniconda3/conda-meta/conda-libmamba-solver-25.11.0-pyhdf14ebd_0.json @@ -0,0 +1,135 @@ +{ + "name": "conda-libmamba-solver", + "version": "25.11.0", + "build": "pyhdf14ebd_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/noarch", + "subdir": "noarch", + "fn": "conda-libmamba-solver-25.11.0-pyhdf14ebd_0.conda", + "md5": "55ec979db3871d534aab09d7a06f71e6", + "url": "https://repo.anaconda.com/pkgs/main/noarch/conda-libmamba-solver-25.11.0-pyhdf14ebd_0.conda", + "sha256": "1c44d897ecf2cf2324d972d699e3a1f32e5df57dd15ebdb3e9d028e7e99fb0b7", + "depends": [ + "boltons >=23.0.0", + "conda >=25.9", + "libmambapy >=2", + "msgpack-python >=1.1.1", + "python >=3.10", + "requests >=2.28.0,<3.0.0", + "zstandard >=0.15" + ], + "constrains": [], + "noarch": "python", + "license": "BSD-3-Clause", + "license_family": "BSD", + "package_type": "noarch_python", + "timestamp": 1764245653000, + "size": 55219, + "requested_spec": "pkgs/main/noarch::conda-libmamba-solver==25.11.0=pyhdf14ebd_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/conda-libmamba-solver-25.11.0-pyhdf14ebd_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/conda-libmamba-solver-25.11.0-pyhdf14ebd_0", + "files": [ + "lib/python3.13/site-packages/conda_libmamba_solver-25.11.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/conda_libmamba_solver-25.11.0.dist-info/METADATA", + "lib/python3.13/site-packages/conda_libmamba_solver-25.11.0.dist-info/RECORD", + "lib/python3.13/site-packages/conda_libmamba_solver-25.11.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/conda_libmamba_solver-25.11.0.dist-info/WHEEL", + "lib/python3.13/site-packages/conda_libmamba_solver-25.11.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/conda_libmamba_solver-25.11.0.dist-info/entry_points.txt", + "lib/python3.13/site-packages/conda_libmamba_solver-25.11.0.dist-info/licenses/AUTHORS.md", + "lib/python3.13/site-packages/conda_libmamba_solver-25.11.0.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/conda_libmamba_solver/__init__.py", + "lib/python3.13/site-packages/conda_libmamba_solver/conda_build_exceptions.py", + "lib/python3.13/site-packages/conda_libmamba_solver/exceptions.py", + "lib/python3.13/site-packages/conda_libmamba_solver/index.py", + "lib/python3.13/site-packages/conda_libmamba_solver/mamba_utils.py", + "lib/python3.13/site-packages/conda_libmamba_solver/plugin.py", + "lib/python3.13/site-packages/conda_libmamba_solver/repoquery.py", + "lib/python3.13/site-packages/conda_libmamba_solver/shards.py", + "lib/python3.13/site-packages/conda_libmamba_solver/shards_cache.py", + "lib/python3.13/site-packages/conda_libmamba_solver/shards_subset.py", + "lib/python3.13/site-packages/conda_libmamba_solver/shards_typing.py", + "lib/python3.13/site-packages/conda_libmamba_solver/solver.py", + "lib/python3.13/site-packages/conda_libmamba_solver/state.py", + "lib/python3.13/site-packages/conda_libmamba_solver/utils.py", + "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/conda_build_exceptions.cpython-313.pyc", + "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/exceptions.cpython-313.pyc", + "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/index.cpython-313.pyc", + "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/mamba_utils.cpython-313.pyc", + "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/plugin.cpython-313.pyc", + "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/repoquery.cpython-313.pyc", + "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/shards.cpython-313.pyc", + "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/shards_cache.cpython-313.pyc", + "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/shards_subset.cpython-313.pyc", + "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/shards_typing.cpython-313.pyc", + "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/solver.cpython-313.pyc", + "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/state.cpython-313.pyc", + "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/utils.cpython-313.pyc" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/conda_build_exceptions.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/exceptions.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/index.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/mamba_utils.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/plugin.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/repoquery.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/shards.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/shards_cache.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/shards_subset.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/shards_typing.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/solver.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/state.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/conda_libmamba_solver/__pycache__/utils.cpython-313.pyc", + "path_type": "pyc_file" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/conda-libmamba-solver-25.11.0-pyhdf14ebd_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/conda-package-handling-2.4.0-py313h06a4308_1.json b/miniconda3/conda-meta/conda-package-handling-2.4.0-py313h06a4308_1.json new file mode 100644 index 0000000000000000000000000000000000000000..42129b0c651ffefcbc238e882c1c10f04ed46931 --- /dev/null +++ b/miniconda3/conda-meta/conda-package-handling-2.4.0-py313h06a4308_1.json @@ -0,0 +1,81 @@ +{ + "name": "conda-package-handling", + "version": "2.4.0", + "build": "py313h06a4308_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "conda-package-handling-2.4.0-py313h06a4308_1.conda", + "md5": "8df01d8631f16021fe6e7f0093de07db", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/conda-package-handling-2.4.0-py313h06a4308_1.conda", + "sha256": "d1e652dbd4390b12bcf938ece3e85636c12ab54d91a25de7dd1ac8ca84b1b8b1", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "conda-package-streaming >=0.9.0", + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313", + "zstandard >=0.15" + ], + "constrains": [], + "license": "BSD-3-Clause", + "license_family": "BSD", + "timestamp": 1762366426000, + "size": 284840, + "requested_spec": "pkgs/main/linux-64::conda-package-handling==2.4.0=py313h06a4308_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/conda-package-handling-2.4.0-py313h06a4308_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/conda-package-handling-2.4.0-py313h06a4308_1", + "files": [ + "bin/cph", + "lib/python3.13/site-packages/conda_package_handling-2.4.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/conda_package_handling-2.4.0.dist-info/METADATA", + "lib/python3.13/site-packages/conda_package_handling-2.4.0.dist-info/RECORD", + "lib/python3.13/site-packages/conda_package_handling-2.4.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/conda_package_handling-2.4.0.dist-info/WHEEL", + "lib/python3.13/site-packages/conda_package_handling-2.4.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/conda_package_handling-2.4.0.dist-info/entry_points.txt", + "lib/python3.13/site-packages/conda_package_handling-2.4.0.dist-info/licenses/AUTHORS.md", + "lib/python3.13/site-packages/conda_package_handling-2.4.0.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/conda_package_handling-2.4.0.dist-info/top_level.txt", + "lib/python3.13/site-packages/conda_package_handling/__init__.py", + "lib/python3.13/site-packages/conda_package_handling/__main__.py", + "lib/python3.13/site-packages/conda_package_handling/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda_package_handling/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/site-packages/conda_package_handling/__pycache__/api.cpython-313.pyc", + "lib/python3.13/site-packages/conda_package_handling/__pycache__/cli.cpython-313.pyc", + "lib/python3.13/site-packages/conda_package_handling/__pycache__/conda_fmt.cpython-313.pyc", + "lib/python3.13/site-packages/conda_package_handling/__pycache__/exceptions.cpython-313.pyc", + "lib/python3.13/site-packages/conda_package_handling/__pycache__/interface.cpython-313.pyc", + "lib/python3.13/site-packages/conda_package_handling/__pycache__/streaming.cpython-313.pyc", + "lib/python3.13/site-packages/conda_package_handling/__pycache__/tarball.cpython-313.pyc", + "lib/python3.13/site-packages/conda_package_handling/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/site-packages/conda_package_handling/__pycache__/validate.cpython-313.pyc", + "lib/python3.13/site-packages/conda_package_handling/api.py", + "lib/python3.13/site-packages/conda_package_handling/cli.py", + "lib/python3.13/site-packages/conda_package_handling/conda_fmt.py", + "lib/python3.13/site-packages/conda_package_handling/exceptions.py", + "lib/python3.13/site-packages/conda_package_handling/interface.py", + "lib/python3.13/site-packages/conda_package_handling/streaming.py", + "lib/python3.13/site-packages/conda_package_handling/tarball.py", + "lib/python3.13/site-packages/conda_package_handling/utils.py", + "lib/python3.13/site-packages/conda_package_handling/validate.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/cph", + "prefix_placeholder": "/home/task_176236637997838/conda-bld/conda-package-handling_1762366405159/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "c96ad68d415ee975152c83a9a089da0d99c3316932c279bb80f9569122233496", + "size_in_bytes": 479, + "sha256_in_prefix": "634f663261342c152cc6f02910550255beec0422fa1357bf9a57f4a3fc39aff1" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/conda-package-handling-2.4.0-py313h06a4308_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/conda-package-streaming-0.12.0-py313h06a4308_1.json b/miniconda3/conda-meta/conda-package-streaming-0.12.0-py313h06a4308_1.json new file mode 100644 index 0000000000000000000000000000000000000000..cd1eab9bd77523e2ec30ecb431988aac94c88231 --- /dev/null +++ b/miniconda3/conda-meta/conda-package-streaming-0.12.0-py313h06a4308_1.json @@ -0,0 +1,63 @@ +{ + "name": "conda-package-streaming", + "version": "0.12.0", + "build": "py313h06a4308_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "conda-package-streaming-0.12.0-py313h06a4308_1.conda", + "md5": "56c2a9c6a706a12193c0b98ef951b4b6", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/conda-package-streaming-0.12.0-py313h06a4308_1.conda", + "sha256": "8d1ff42b4560986c9d46ef2114cd77ae791ec4400a5ba4eb9a4b22ad540466c1", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313", + "requests", + "zstandard >=0.15" + ], + "constrains": [], + "license": "BSD-3-Clause", + "license_family": "BSD", + "timestamp": 1762361653000, + "size": 38518, + "requested_spec": "pkgs/main/linux-64::conda-package-streaming==0.12.0=py313h06a4308_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/conda-package-streaming-0.12.0-py313h06a4308_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/conda-package-streaming-0.12.0-py313h06a4308_1", + "files": [ + "lib/python3.13/site-packages/conda_package_streaming-0.12.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/conda_package_streaming-0.12.0.dist-info/METADATA", + "lib/python3.13/site-packages/conda_package_streaming-0.12.0.dist-info/RECORD", + "lib/python3.13/site-packages/conda_package_streaming-0.12.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/conda_package_streaming-0.12.0.dist-info/WHEEL", + "lib/python3.13/site-packages/conda_package_streaming-0.12.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/conda_package_streaming-0.12.0.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/conda_package_streaming/__init__.py", + "lib/python3.13/site-packages/conda_package_streaming/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/conda_package_streaming/__pycache__/create.cpython-313.pyc", + "lib/python3.13/site-packages/conda_package_streaming/__pycache__/exceptions.cpython-313.pyc", + "lib/python3.13/site-packages/conda_package_streaming/__pycache__/extract.cpython-313.pyc", + "lib/python3.13/site-packages/conda_package_streaming/__pycache__/lazy_wheel.cpython-313.pyc", + "lib/python3.13/site-packages/conda_package_streaming/__pycache__/package_streaming.cpython-313.pyc", + "lib/python3.13/site-packages/conda_package_streaming/__pycache__/s3.cpython-313.pyc", + "lib/python3.13/site-packages/conda_package_streaming/__pycache__/transmute.cpython-313.pyc", + "lib/python3.13/site-packages/conda_package_streaming/__pycache__/url.cpython-313.pyc", + "lib/python3.13/site-packages/conda_package_streaming/create.py", + "lib/python3.13/site-packages/conda_package_streaming/exceptions.py", + "lib/python3.13/site-packages/conda_package_streaming/extract.py", + "lib/python3.13/site-packages/conda_package_streaming/lazy_wheel.py", + "lib/python3.13/site-packages/conda_package_streaming/package_streaming.py", + "lib/python3.13/site-packages/conda_package_streaming/s3.py", + "lib/python3.13/site-packages/conda_package_streaming/transmute.py", + "lib/python3.13/site-packages/conda_package_streaming/url.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/conda-package-streaming-0.12.0-py313h06a4308_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/cpp-expected-1.1.0-hdb19cb5_0.json b/miniconda3/conda-meta/cpp-expected-1.1.0-hdb19cb5_0.json new file mode 100644 index 0000000000000000000000000000000000000000..2ef07e7b1ae3c4a9946ce7b0b2e7eceace8ad220 --- /dev/null +++ b/miniconda3/conda-meta/cpp-expected-1.1.0-hdb19cb5_0.json @@ -0,0 +1,40 @@ +{ + "name": "cpp-expected", + "version": "1.1.0", + "build": "hdb19cb5_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "cpp-expected-1.1.0-hdb19cb5_0.conda", + "md5": "3a195bcf47b691adb4a635a8b7f396f7", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/cpp-expected-1.1.0-hdb19cb5_0.conda", + "sha256": "8718137ba3afc2eb8eb986e17442968aec45b32bbd746b64bc239c3019ec7216", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "libgcc-ng >=11.2.0", + "libstdcxx-ng >=11.2.0" + ], + "constrains": [], + "license": "CC0-1.0", + "license_family": "CC", + "timestamp": 1734039334000, + "size": 132687, + "requested_spec": "pkgs/main/linux-64::cpp-expected==1.1.0=hdb19cb5_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/cpp-expected-1.1.0-hdb19cb5_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/cpp-expected-1.1.0-hdb19cb5_0", + "files": [ + "include/tl/expected.hpp", + "share/cmake/tl-expected/tl-expected-config-version.cmake", + "share/cmake/tl-expected/tl-expected-config.cmake", + "share/cmake/tl-expected/tl-expected-targets.cmake" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/cpp-expected-1.1.0-hdb19cb5_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/cryptography-46.0.5-py313h04fe016_1.json b/miniconda3/conda-meta/cryptography-46.0.5-py313h04fe016_1.json new file mode 100644 index 0000000000000000000000000000000000000000..3a35fbd8b5c124438b604897c0d271d7e65d4696 --- /dev/null +++ b/miniconda3/conda-meta/cryptography-46.0.5-py313h04fe016_1.json @@ -0,0 +1,224 @@ +{ + "name": "cryptography", + "version": "46.0.5", + "build": "py313h04fe016_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "cryptography-46.0.5-py313h04fe016_1.conda", + "md5": "72960bef9c9245c6c53204182d4d4012", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/cryptography-46.0.5-py313h04fe016_1.conda", + "sha256": "c76ea9750feb5fa1c2c93687f3081ce0b846136f67637c242c7919807c5fbc02", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "cffi >=2.0.0", + "libgcc >=14", + "openssl >=3.5.5,<4.0a0", + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [ + "pyopenssl >=23.0.0" + ], + "license": "Apache-2.0 OR BSD-3-Clause", + "license_family": "OTHER", + "timestamp": 1772475390000, + "size": 1706134, + "requested_spec": "pkgs/main/linux-64::cryptography==46.0.5=py313h04fe016_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/cryptography-46.0.5-py313h04fe016_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/cryptography-46.0.5-py313h04fe016_1", + "files": [ + "lib/python3.13/site-packages/cryptography-46.0.5.dist-info/INSTALLER", + "lib/python3.13/site-packages/cryptography-46.0.5.dist-info/METADATA", + "lib/python3.13/site-packages/cryptography-46.0.5.dist-info/RECORD", + "lib/python3.13/site-packages/cryptography-46.0.5.dist-info/REQUESTED", + "lib/python3.13/site-packages/cryptography-46.0.5.dist-info/WHEEL", + "lib/python3.13/site-packages/cryptography-46.0.5.dist-info/direct_url.json", + "lib/python3.13/site-packages/cryptography-46.0.5.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/cryptography-46.0.5.dist-info/licenses/LICENSE.APACHE", + "lib/python3.13/site-packages/cryptography-46.0.5.dist-info/licenses/LICENSE.BSD", + "lib/python3.13/site-packages/cryptography/__about__.py", + "lib/python3.13/site-packages/cryptography/__init__.py", + "lib/python3.13/site-packages/cryptography/__pycache__/__about__.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/__pycache__/exceptions.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/__pycache__/fernet.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/exceptions.py", + "lib/python3.13/site-packages/cryptography/fernet.py", + "lib/python3.13/site-packages/cryptography/hazmat/__init__.py", + "lib/python3.13/site-packages/cryptography/hazmat/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/__pycache__/_oid.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/_oid.py", + "lib/python3.13/site-packages/cryptography/hazmat/asn1/__init__.py", + "lib/python3.13/site-packages/cryptography/hazmat/asn1/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/asn1/__pycache__/asn1.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/asn1/asn1.py", + "lib/python3.13/site-packages/cryptography/hazmat/backends/__init__.py", + "lib/python3.13/site-packages/cryptography/hazmat/backends/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/backends/openssl/__init__.py", + "lib/python3.13/site-packages/cryptography/hazmat/backends/openssl/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/backends/openssl/__pycache__/backend.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/backends/openssl/backend.py", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/__init__.py", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust.abi3.so", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/__init__.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/_openssl.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/asn1.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/declarative_asn1.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/exceptions.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/ocsp.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/__init__.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/aead.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/ciphers.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/cmac.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/dh.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/dsa.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/ec.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/ed25519.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/ed448.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/hashes.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/hmac.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/kdf.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/keys.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/poly1305.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/rsa.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/x25519.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/x448.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/pkcs12.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/pkcs7.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/test_support.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/x509.pyi", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/openssl/__init__.py", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/openssl/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/openssl/__pycache__/_conditional.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/openssl/__pycache__/binding.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/openssl/_conditional.py", + "lib/python3.13/site-packages/cryptography/hazmat/bindings/openssl/binding.py", + "lib/python3.13/site-packages/cryptography/hazmat/decrepit/__init__.py", + "lib/python3.13/site-packages/cryptography/hazmat/decrepit/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/decrepit/ciphers/__init__.py", + "lib/python3.13/site-packages/cryptography/hazmat/decrepit/ciphers/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/decrepit/ciphers/__pycache__/algorithms.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/decrepit/ciphers/algorithms.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/__init__.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/__pycache__/_asymmetric.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/__pycache__/_cipheralgorithm.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/__pycache__/_serialization.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/__pycache__/cmac.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/__pycache__/constant_time.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/__pycache__/hashes.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/__pycache__/hmac.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/__pycache__/keywrap.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/__pycache__/padding.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/__pycache__/poly1305.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/_asymmetric.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/_cipheralgorithm.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/_serialization.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/asymmetric/__init__.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/dh.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/dsa.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/ec.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/ed25519.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/ed448.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/padding.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/rsa.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/types.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/x25519.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/x448.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/asymmetric/dh.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/asymmetric/dsa.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/asymmetric/ec.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/asymmetric/ed25519.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/asymmetric/ed448.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/asymmetric/padding.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/asymmetric/rsa.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/asymmetric/types.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/asymmetric/utils.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/asymmetric/x25519.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/asymmetric/x448.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/ciphers/__init__.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/aead.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/algorithms.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/base.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/modes.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/ciphers/aead.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/ciphers/algorithms.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/ciphers/base.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/ciphers/modes.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/cmac.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/constant_time.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/hashes.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/hmac.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/kdf/__init__.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/argon2.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/concatkdf.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/hkdf.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/kbkdf.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/pbkdf2.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/scrypt.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/x963kdf.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/kdf/argon2.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/kdf/concatkdf.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/kdf/hkdf.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/kdf/kbkdf.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/kdf/pbkdf2.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/kdf/scrypt.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/kdf/x963kdf.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/keywrap.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/padding.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/poly1305.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/serialization/__init__.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/base.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/pkcs12.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/pkcs7.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/ssh.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/serialization/base.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/serialization/pkcs12.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/serialization/pkcs7.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/serialization/ssh.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/twofactor/__init__.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/twofactor/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/twofactor/__pycache__/hotp.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/twofactor/__pycache__/totp.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/twofactor/hotp.py", + "lib/python3.13/site-packages/cryptography/hazmat/primitives/twofactor/totp.py", + "lib/python3.13/site-packages/cryptography/py.typed", + "lib/python3.13/site-packages/cryptography/utils.py", + "lib/python3.13/site-packages/cryptography/x509/__init__.py", + "lib/python3.13/site-packages/cryptography/x509/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/x509/__pycache__/base.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/x509/__pycache__/certificate_transparency.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/x509/__pycache__/extensions.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/x509/__pycache__/general_name.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/x509/__pycache__/name.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/x509/__pycache__/ocsp.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/x509/__pycache__/oid.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/x509/__pycache__/verification.cpython-313.pyc", + "lib/python3.13/site-packages/cryptography/x509/base.py", + "lib/python3.13/site-packages/cryptography/x509/certificate_transparency.py", + "lib/python3.13/site-packages/cryptography/x509/extensions.py", + "lib/python3.13/site-packages/cryptography/x509/general_name.py", + "lib/python3.13/site-packages/cryptography/x509/name.py", + "lib/python3.13/site-packages/cryptography/x509/ocsp.py", + "lib/python3.13/site-packages/cryptography/x509/oid.py", + "lib/python3.13/site-packages/cryptography/x509/verification.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/cryptography-46.0.5-py313h04fe016_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/dbus-1.16.2-h5bd4931_0.json b/miniconda3/conda-meta/dbus-1.16.2-h5bd4931_0.json new file mode 100644 index 0000000000000000000000000000000000000000..d5efcf0ffc5d7d4544acca1185fa40dd6b8c9674 --- /dev/null +++ b/miniconda3/conda-meta/dbus-1.16.2-h5bd4931_0.json @@ -0,0 +1,198 @@ +{ + "name": "dbus", + "version": "1.16.2", + "build": "h5bd4931_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "dbus-1.16.2-h5bd4931_0.conda", + "md5": "4c4aef417b613e7111d90cf2348b231a", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/dbus-1.16.2-h5bd4931_0.conda", + "sha256": "ff936d58ce18451f18cba16a8ade9365199a6321d4eb1c60c1eb1d8e3932c65b", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.17,<3.0.a0", + "expat >=2.7.1,<3.0a0", + "libgcc-ng >=11.2.0", + "libstdcxx-ng >=11.2.0", + "xorg-libx11 >=1.8.12,<2.0a0" + ], + "constrains": [], + "license": "GPL-2.0-or-later", + "license_family": "GPL", + "timestamp": 1756144852000, + "size": 1259937, + "requested_spec": "pkgs/main/linux-64::dbus==1.16.2=h5bd4931_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/dbus-1.16.2-h5bd4931_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/dbus-1.16.2-h5bd4931_0", + "files": [ + "bin/dbus-cleanup-sockets", + "bin/dbus-daemon", + "bin/dbus-launch", + "bin/dbus-monitor", + "bin/dbus-run-session", + "bin/dbus-send", + "bin/dbus-test-tool", + "bin/dbus-update-activation-environment", + "bin/dbus-uuidgen", + "etc/dbus-1/session.conf", + "etc/dbus-1/system.conf", + "include/dbus-1.0/dbus/dbus-address.h", + "include/dbus-1.0/dbus/dbus-bus.h", + "include/dbus-1.0/dbus/dbus-connection.h", + "include/dbus-1.0/dbus/dbus-errors.h", + "include/dbus-1.0/dbus/dbus-macros.h", + "include/dbus-1.0/dbus/dbus-memory.h", + "include/dbus-1.0/dbus/dbus-message.h", + "include/dbus-1.0/dbus/dbus-misc.h", + "include/dbus-1.0/dbus/dbus-pending-call.h", + "include/dbus-1.0/dbus/dbus-protocol.h", + "include/dbus-1.0/dbus/dbus-server.h", + "include/dbus-1.0/dbus/dbus-shared.h", + "include/dbus-1.0/dbus/dbus-signature.h", + "include/dbus-1.0/dbus/dbus-syntax.h", + "include/dbus-1.0/dbus/dbus-threads.h", + "include/dbus-1.0/dbus/dbus-types.h", + "include/dbus-1.0/dbus/dbus.h", + "lib/cmake/DBus1/DBus1Config.cmake", + "lib/cmake/DBus1/DBus1ConfigVersion.cmake", + "lib/dbus-1.0/include/dbus/dbus-arch-deps.h", + "lib/libdbus-1.so", + "lib/libdbus-1.so.3", + "lib/libdbus-1.so.3.38.3", + "lib/pkgconfig/dbus-1.pc", + "libexec/dbus-daemon-launch-helper", + "share/dbus-1/session.conf", + "share/dbus-1/system.conf", + "share/doc/dbus/diagram.png", + "share/doc/dbus/diagram.svg", + "share/doc/dbus/examples/GetAllMatchRules.py", + "share/doc/dbus/examples/__pycache__/GetAllMatchRules.cpython-313.pyc", + "share/doc/dbus/examples/example-session-disable-stats.conf", + "share/doc/dbus/examples/example-system-enable-stats.conf", + "share/doc/dbus/examples/example-system-hardening-without-traditional-activation.conf", + "share/doc/dbus/index.html", + "share/doc/dbus/system-activation.txt", + "share/xml/dbus-1/busconfig.dtd", + "share/xml/dbus-1/catalog.xml", + "share/xml/dbus-1/introspect.dtd" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/dbus-daemon", + "prefix_placeholder": "/croot/dbus_1756144781092/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "4276d599091a53feb21011cbbd3c260b0bc72bb0b04a0a2b45d1237a9bc12163", + "size_in_bytes": 924472, + "sha256_in_prefix": "f5ff8d99682ab0771d4d69bc5ee333193531ea6cd7f4c7c2ffe91a2e18568f61" + }, + { + "_path": "bin/dbus-launch", + "prefix_placeholder": "/croot/dbus_1756144781092/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "544f403540d8af7db60642ab18184705e7392ec724e28aec6e7b620f60fd42c4", + "size_in_bytes": 110064, + "sha256_in_prefix": "01b7bca627fe06f37faf29b79bc8776d2c0396f7782607d15bc4af72cd878a48" + }, + { + "_path": "etc/dbus-1/session.conf", + "prefix_placeholder": "/croot/dbus_1756144781092/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "de8b3097b2a479eefd42dd78997c63e924f44106a5a96f37fafd0ec789ed055c", + "size_in_bytes": 1340, + "sha256_in_prefix": "9959944d6f4d95f8df90622f08a8204947bafa023b85ecbe08760d6491c39fd9" + }, + { + "_path": "etc/dbus-1/system.conf", + "prefix_placeholder": "/croot/dbus_1756144781092/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "5cce45bb781964badb4eb94100ef3c76749aff8fc6d0dc2abacd1b6c8f0b5848", + "size_in_bytes": 1335, + "sha256_in_prefix": "9104de2fb338635a722b9a93ef71aaa5665c31cdfb85d78239b75c30836ab7cf" + }, + { + "_path": "lib/libdbus-1.so.3.38.3", + "prefix_placeholder": "/croot/dbus_1756144781092/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "2c6aed297959d20918b415241081280e1311f43774a0d07c936c0360cbfcb6b6", + "size_in_bytes": 1401000, + "sha256_in_prefix": "463676bf08f9f7e393e1d1195de0254db7aa4713ab6f6c89240482577617857a" + }, + { + "_path": "lib/pkgconfig/dbus-1.pc", + "prefix_placeholder": "/croot/dbus_1756144781092/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "66d00dd077eeded1c6f5e364e7037d6918179f3d5c416be34912600e0241463d", + "size_in_bytes": 1382, + "sha256_in_prefix": "e9a830f4e5486520700a9caa797a28b4d81c15ed956de20f4d2ea2f680f97a1a" + }, + { + "_path": "libexec/dbus-daemon-launch-helper", + "prefix_placeholder": "/croot/dbus_1756144781092/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "96d0ed5c03e05460387dcc058134a6c2d24f94ac2b4d5f40d3e2d5b18f03d402", + "size_in_bytes": 206880, + "sha256_in_prefix": "ffdd03b274f7d2c3c182a430386461314f55df3affa6920a4dcd2440e4eaba03" + }, + { + "_path": "share/dbus-1/session.conf", + "prefix_placeholder": "/croot/dbus_1756144781092/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "926274616594450611ed76ed229fd3ed335dd6f8a586e04cb1d68d2de1d2124f", + "size_in_bytes": 4326, + "sha256_in_prefix": "41d5667abac695cefddd60038225cdb0e711f4151084e112f4cca8a007a3aba7" + }, + { + "_path": "share/dbus-1/system.conf", + "prefix_placeholder": "/croot/dbus_1756144781092/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "42a89b0fd5f0785ef398ef1b2e2cb94e02f95083f59d051f3b2bd14ce01c32e5", + "size_in_bytes": 7336, + "sha256_in_prefix": "4bab6a80ca240230291abe0d913428d47b0b03d0caa0a5db4031591cfab65928" + }, + { + "_path": "share/doc/dbus/examples/example-session-disable-stats.conf", + "prefix_placeholder": "/croot/dbus_1756144781092/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "15e5e96c6ef7a6e878586a0e2c04220b7553f9281ec1c64f4c86ec9b91104ef7", + "size_in_bytes": 861, + "sha256_in_prefix": "cc5f8cb3a62c3773857a098fd4a41b45ff7b2819e262e0d1d851c3ce12402591" + }, + { + "_path": "share/doc/dbus/examples/example-system-enable-stats.conf", + "prefix_placeholder": "/croot/dbus_1756144781092/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "0c1326fcbcf8c2a11429361dbb2975e2f896cfb2c696e1f0594f8ec6e185dc38", + "size_in_bytes": 827, + "sha256_in_prefix": "2357f7f93b4a8318da93edb0d2416644a7d1bf35d80f1d19c88c1aa3cda2911a" + }, + { + "_path": "share/xml/dbus-1/catalog.xml", + "prefix_placeholder": "/croot/dbus_1756144781092/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "258bc441065d4e0104ceef804fef81a2a3646c0226ffd5477d5090b457912ee1", + "size_in_bytes": 1616, + "sha256_in_prefix": "ac1eae6f1d9e13fac044418fe79cf715fcb71ae48bbe163cd63f20d8e179f614" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/dbus-1.16.2-h5bd4931_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/distro-1.9.0-py313h06a4308_0.json b/miniconda3/conda-meta/distro-1.9.0-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..14f65f39ab1393327d1a0b7eaaf72b872d5f1080 --- /dev/null +++ b/miniconda3/conda-meta/distro-1.9.0-py313h06a4308_0.json @@ -0,0 +1,63 @@ +{ + "name": "distro", + "version": "1.9.0", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "distro-1.9.0-py313h06a4308_0.conda", + "md5": "1fd7ab065e9958e7bbd4d3fbf175742b", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/distro-1.9.0-py313h06a4308_0.conda", + "sha256": "57e25d204f2e891ab2f68a776b9e21cc681adfe089ea35a18aa05e5aa950a4c7", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "Apache-2.0", + "license_family": "Apache", + "timestamp": 1728396132000, + "size": 37917, + "requested_spec": "pkgs/main/linux-64::distro==1.9.0=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/distro-1.9.0-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/distro-1.9.0-py313h06a4308_0", + "files": [ + "bin/distro", + "lib/python3.13/site-packages/distro-1.9.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/distro-1.9.0.dist-info/LICENSE", + "lib/python3.13/site-packages/distro-1.9.0.dist-info/METADATA", + "lib/python3.13/site-packages/distro-1.9.0.dist-info/RECORD", + "lib/python3.13/site-packages/distro-1.9.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/distro-1.9.0.dist-info/WHEEL", + "lib/python3.13/site-packages/distro-1.9.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/distro-1.9.0.dist-info/entry_points.txt", + "lib/python3.13/site-packages/distro-1.9.0.dist-info/top_level.txt", + "lib/python3.13/site-packages/distro/__init__.py", + "lib/python3.13/site-packages/distro/__main__.py", + "lib/python3.13/site-packages/distro/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/distro/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/site-packages/distro/__pycache__/distro.cpython-313.pyc", + "lib/python3.13/site-packages/distro/distro.py", + "lib/python3.13/site-packages/distro/py.typed" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/distro", + "prefix_placeholder": "/work/perseverance-python-buildout/croot/distro_1728396110052/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeh", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "06deb672af80caaa59d4472bad88f761b41904614371ab924f4192457a063712", + "size_in_bytes": 466, + "sha256_in_prefix": "62f9605924c04292d4f84feb0fcad4ddb81b0919e58566838848554f64a92c73" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/distro-1.9.0-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/expat-2.7.4-h7354ed3_0.json b/miniconda3/conda-meta/expat-2.7.4-h7354ed3_0.json new file mode 100644 index 0000000000000000000000000000000000000000..56ac9eb1fb5bb834bbb689e5acba32189661db93 --- /dev/null +++ b/miniconda3/conda-meta/expat-2.7.4-h7354ed3_0.json @@ -0,0 +1,40 @@ +{ + "name": "expat", + "version": "2.7.4", + "build": "h7354ed3_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "expat-2.7.4-h7354ed3_0.conda", + "md5": "575218bf09aa99037a6e3bb1f43796a8", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/expat-2.7.4-h7354ed3_0.conda", + "sha256": "6dc018cce7a88683c5e9b8ed14906ff342e8fee7307205123c588f9775a1b026", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "libexpat 2.7.4 h7354ed3_0", + "libgcc >=14", + "libstdcxx >=14" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1770062547000, + "size": 25302, + "requested_spec": "pkgs/main/linux-64::expat==2.7.4=h7354ed3_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/expat-2.7.4-h7354ed3_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/expat-2.7.4-h7354ed3_0", + "files": [ + "bin/xmlwf", + "share/man/man1/xmlwf.1" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/expat-2.7.4-h7354ed3_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/fmt-11.2.0-hca5f364_0.json b/miniconda3/conda-meta/fmt-11.2.0-hca5f364_0.json new file mode 100644 index 0000000000000000000000000000000000000000..51c81df44ba2720a2f50322657e97781b69e8e23 --- /dev/null +++ b/miniconda3/conda-meta/fmt-11.2.0-hca5f364_0.json @@ -0,0 +1,69 @@ +{ + "name": "fmt", + "version": "11.2.0", + "build": "hca5f364_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "fmt-11.2.0-hca5f364_0.conda", + "md5": "0615a40b477dd3a4488d67cd422a1365", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/fmt-11.2.0-hca5f364_0.conda", + "sha256": "851afd6890164c6894572c275a7d3fb87dac4ce8b3760925febb2c3779306275", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.17,<3.0.a0", + "libgcc-ng >=11.2.0", + "libstdcxx-ng >=11.2.0" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1754990938000, + "size": 206513, + "requested_spec": "pkgs/main/linux-64::fmt==11.2.0=hca5f364_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/fmt-11.2.0-hca5f364_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/fmt-11.2.0-hca5f364_0", + "files": [ + "include/fmt/args.h", + "include/fmt/base.h", + "include/fmt/chrono.h", + "include/fmt/color.h", + "include/fmt/compile.h", + "include/fmt/core.h", + "include/fmt/format-inl.h", + "include/fmt/format.h", + "include/fmt/os.h", + "include/fmt/ostream.h", + "include/fmt/printf.h", + "include/fmt/ranges.h", + "include/fmt/std.h", + "include/fmt/xchar.h", + "lib/cmake/fmt/fmt-config-version.cmake", + "lib/cmake/fmt/fmt-config.cmake", + "lib/cmake/fmt/fmt-targets-release.cmake", + "lib/cmake/fmt/fmt-targets.cmake", + "lib/libfmt.so", + "lib/libfmt.so.11", + "lib/libfmt.so.11.2.0", + "lib/pkgconfig/fmt.pc" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/pkgconfig/fmt.pc", + "prefix_placeholder": "/croot/fmt_1754990818093/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pla", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "5880c1d2a6141abde102618ff3ee5e7275b2f4b742ca0d4646c910437ece16c8", + "size_in_bytes": 703, + "sha256_in_prefix": "f3209d70d63bc76b337922ddf8cf9829df1fd7868b737c19a82066563da33ba9" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/fmt-11.2.0-hca5f364_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/frozendict-2.4.6-py313hee96239_0.json b/miniconda3/conda-meta/frozendict-2.4.6-py313hee96239_0.json new file mode 100644 index 0000000000000000000000000000000000000000..8e1382804779ec0e90f6483eac81e1ca14e179a0 --- /dev/null +++ b/miniconda3/conda-meta/frozendict-2.4.6-py313hee96239_0.json @@ -0,0 +1,60 @@ +{ + "name": "frozendict", + "version": "2.4.6", + "build": "py313hee96239_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "frozendict-2.4.6-py313hee96239_0.conda", + "md5": "26dfe875df9973e0e98ec5add063e00e", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/frozendict-2.4.6-py313hee96239_0.conda", + "sha256": "bbd8544cebc4a43a7c92898ffed3d4e668c236dbd3e7c6307758c31b75f0e3d3", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "libgcc-ng >=11.2.0", + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "LGPL-3.0-only", + "license_family": "LGPL", + "timestamp": 1761750688000, + "size": 39148, + "requested_spec": "pkgs/main/linux-64::frozendict==2.4.6=py313hee96239_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/frozendict-2.4.6-py313hee96239_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/frozendict-2.4.6-py313hee96239_0", + "files": [ + "lib/python3.13/site-packages/frozendict-2.4.6.dist-info/INSTALLER", + "lib/python3.13/site-packages/frozendict-2.4.6.dist-info/METADATA", + "lib/python3.13/site-packages/frozendict-2.4.6.dist-info/RECORD", + "lib/python3.13/site-packages/frozendict-2.4.6.dist-info/REQUESTED", + "lib/python3.13/site-packages/frozendict-2.4.6.dist-info/WHEEL", + "lib/python3.13/site-packages/frozendict-2.4.6.dist-info/direct_url.json", + "lib/python3.13/site-packages/frozendict-2.4.6.dist-info/licenses/LICENSE.txt", + "lib/python3.13/site-packages/frozendict-2.4.6.dist-info/top_level.txt", + "lib/python3.13/site-packages/frozendict/__init__.py", + "lib/python3.13/site-packages/frozendict/__init__.pyi", + "lib/python3.13/site-packages/frozendict/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/frozendict/__pycache__/_frozendict_py.cpython-313.pyc", + "lib/python3.13/site-packages/frozendict/__pycache__/cool.cpython-313.pyc", + "lib/python3.13/site-packages/frozendict/__pycache__/core.cpython-313.pyc", + "lib/python3.13/site-packages/frozendict/__pycache__/monkeypatch.cpython-313.pyc", + "lib/python3.13/site-packages/frozendict/__pycache__/version.cpython-313.pyc", + "lib/python3.13/site-packages/frozendict/_frozendict_py.py", + "lib/python3.13/site-packages/frozendict/cool.py", + "lib/python3.13/site-packages/frozendict/core.py", + "lib/python3.13/site-packages/frozendict/monkeypatch.py", + "lib/python3.13/site-packages/frozendict/py.typed", + "lib/python3.13/site-packages/frozendict/version.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/frozendict-2.4.6-py313hee96239_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/gettext-0.25.1-h92eb808_0.json b/miniconda3/conda-meta/gettext-0.25.1-h92eb808_0.json new file mode 100644 index 0000000000000000000000000000000000000000..9d8e2fdad16d5865c49e7f878187f357b73ff96f --- /dev/null +++ b/miniconda3/conda-meta/gettext-0.25.1-h92eb808_0.json @@ -0,0 +1,2266 @@ +{ + "name": "gettext", + "version": "0.25.1", + "build": "h92eb808_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "gettext-0.25.1-h92eb808_0.conda", + "md5": "df53b928c3a9dd53c7f4e87cc03e03d2", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/gettext-0.25.1-h92eb808_0.conda", + "sha256": "1a83e26f502a98bce1348b67f61e8ada17304080be574e743a434ccbefc8c142", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "gettext-tools 0.25.1 h6a67909_0", + "libasprintf 0.25.1 hf2ab22a_0", + "libasprintf-devel 0.25.1 hf2ab22a_0", + "libgcc >=14", + "libgettextpo 0.25.1 hf2ab22a_0", + "libgettextpo-devel 0.25.1 hf2ab22a_0", + "libiconv >=1.18,<2.0a0", + "libstdcxx >=14" + ], + "constrains": [], + "license": "LGPL-2.1-or-later AND GPL-3.0-or-later", + "timestamp": 1772045309000, + "size": 535333, + "requested_spec": "pkgs/main/linux-64::gettext==0.25.1=h92eb808_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/gettext-0.25.1-h92eb808_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/gettext-0.25.1-h92eb808_0", + "files": [ + "share/doc/gettext/examples/README", + "share/doc/gettext/examples/build-aux/csharp.m4", + "share/doc/gettext/examples/build-aux/csharpcomp.m4", + "share/doc/gettext/examples/build-aux/csharpcomp.sh.in", + "share/doc/gettext/examples/build-aux/csharpexec-test.exe", + "share/doc/gettext/examples/build-aux/csharpexec.m4", + "share/doc/gettext/examples/build-aux/csharpexec.sh.in", + "share/doc/gettext/examples/build-aux/dcomp.m4", + "share/doc/gettext/examples/build-aux/dcomp.sh.in", + "share/doc/gettext/examples/build-aux/gocomp.m4", + "share/doc/gettext/examples/build-aux/gocomp.sh.in", + "share/doc/gettext/examples/build-aux/javacomp.m4", + "share/doc/gettext/examples/build-aux/javacomp.sh.in", + "share/doc/gettext/examples/build-aux/javaexec.m4", + "share/doc/gettext/examples/build-aux/javaexec.sh.in", + "share/doc/gettext/examples/build-aux/modula2comp.m4", + "share/doc/gettext/examples/hello-c++-gnome2/INSTALL", + "share/doc/gettext/examples/hello-c++-gnome2/Makefile.am", + "share/doc/gettext/examples/hello-c++-gnome2/autoclean.sh", + "share/doc/gettext/examples/hello-c++-gnome2/autogen.sh", + "share/doc/gettext/examples/hello-c++-gnome2/configure.ac", + "share/doc/gettext/examples/hello-c++-gnome2/hello.cc", + "share/doc/gettext/examples/hello-c++-gnome2/m4/Makefile.am", + "share/doc/gettext/examples/hello-c++-gnome2/m4/gnome-gnorba-check.m4", + "share/doc/gettext/examples/hello-c++-gnome2/m4/gnome-orbit-check.m4", + "share/doc/gettext/examples/hello-c++-gnome2/m4/gnome.m4", + "share/doc/gettext/examples/hello-c++-gnome2/m4/gtk--.m4", + "share/doc/gettext/examples/hello-c++-gnome2/m4/gtk.m4", + "share/doc/gettext/examples/hello-c++-gnome2/po/LINGUAS", + "share/doc/gettext/examples/hello-c++-gnome2/po/Makevars", + "share/doc/gettext/examples/hello-c++-gnome2/po/POTFILES.in", + "share/doc/gettext/examples/hello-c++-gnome2/po/af.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/ast.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/bg.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/ca.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/cs.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/da.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/de.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/el.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/eo.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/es.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/fi.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/fr.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/ga.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/gl.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/hr.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/hu.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/id.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/it.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/ja.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/ka.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/ky.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/lv.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/ms.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/mt.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/nb.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/nl.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/nn.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/pl.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/pt.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/pt_BR.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/ro.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/ru.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/sk.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/sl.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/sq.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/sr.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/sv.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/ta.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/tr.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/uk.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/vi.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/zh_CN.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/zh_HK.po", + "share/doc/gettext/examples/hello-c++-gnome2/po/zh_TW.po", + "share/doc/gettext/examples/hello-c++-gnome3/INSTALL", + "share/doc/gettext/examples/hello-c++-gnome3/Makefile.am", + "share/doc/gettext/examples/hello-c++-gnome3/README", + "share/doc/gettext/examples/hello-c++-gnome3/autoclean.sh", + "share/doc/gettext/examples/hello-c++-gnome3/autogen.sh", + "share/doc/gettext/examples/hello-c++-gnome3/configure.ac", + "share/doc/gettext/examples/hello-c++-gnome3/hello.cc", + "share/doc/gettext/examples/hello-c++-gnome3/hello.desktop.in.in", + "share/doc/gettext/examples/hello-c++-gnome3/hello.gresource.xml", + "share/doc/gettext/examples/hello-c++-gnome3/hello.ui", + "share/doc/gettext/examples/hello-c++-gnome3/m4/Makefile.am", + "share/doc/gettext/examples/hello-c++-gnome3/po/LINGUAS", + "share/doc/gettext/examples/hello-c++-gnome3/po/Makevars", + "share/doc/gettext/examples/hello-c++-gnome3/po/POTFILES.in", + "share/doc/gettext/examples/hello-c++-gnome3/po/af.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/ast.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/bg.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/ca.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/cs.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/da.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/de.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/el.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/eo.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/es.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/fi.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/fr.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/ga.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/gl.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/hr.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/hu.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/id.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/it.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/ja.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/ka.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/ky.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/lv.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/ms.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/mt.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/nb.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/nl.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/nn.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/pl.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/pt.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/pt_BR.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/ro.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/ru.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/sk.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/sl.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/sq.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/sr.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/sv.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/ta.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/tr.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/uk.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/vi.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/zh_CN.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/zh_HK.po", + "share/doc/gettext/examples/hello-c++-gnome3/po/zh_TW.po", + "share/doc/gettext/examples/hello-c++-kde/BUGS", + "share/doc/gettext/examples/hello-c++-kde/INSTALL", + "share/doc/gettext/examples/hello-c++-kde/Makefile.am", + "share/doc/gettext/examples/hello-c++-kde/admin/ChangeLog", + "share/doc/gettext/examples/hello-c++-kde/admin/Doxyfile.am", + "share/doc/gettext/examples/hello-c++-kde/admin/Doxyfile.global", + "share/doc/gettext/examples/hello-c++-kde/admin/Makefile.common", + "share/doc/gettext/examples/hello-c++-kde/admin/acinclude.m4.in", + "share/doc/gettext/examples/hello-c++-kde/admin/am_edit", + "share/doc/gettext/examples/hello-c++-kde/admin/compile", + "share/doc/gettext/examples/hello-c++-kde/admin/conf.change.pl", + "share/doc/gettext/examples/hello-c++-kde/admin/config.guess", + "share/doc/gettext/examples/hello-c++-kde/admin/config.pl", + "share/doc/gettext/examples/hello-c++-kde/admin/config.sub", + "share/doc/gettext/examples/hello-c++-kde/admin/configure.in.bot.end", + "share/doc/gettext/examples/hello-c++-kde/admin/configure.in.min", + "share/doc/gettext/examples/hello-c++-kde/admin/cvs-clean.pl", + "share/doc/gettext/examples/hello-c++-kde/admin/cvs.sh", + "share/doc/gettext/examples/hello-c++-kde/admin/debianrules", + "share/doc/gettext/examples/hello-c++-kde/admin/depcomp", + "share/doc/gettext/examples/hello-c++-kde/admin/detect-autoconf.sh", + "share/doc/gettext/examples/hello-c++-kde/admin/install-sh", + "share/doc/gettext/examples/hello-c++-kde/admin/libtool.m4.in", + "share/doc/gettext/examples/hello-c++-kde/admin/ltmain.sh", + "share/doc/gettext/examples/hello-c++-kde/admin/missing", + "share/doc/gettext/examples/hello-c++-kde/admin/mkinstalldirs", + "share/doc/gettext/examples/hello-c++-kde/admin/ylwrap", + "share/doc/gettext/examples/hello-c++-kde/autoclean.sh", + "share/doc/gettext/examples/hello-c++-kde/autogen.sh", + "share/doc/gettext/examples/hello-c++-kde/configure.in.in", + "share/doc/gettext/examples/hello-c++-kde/hello.cc", + "share/doc/gettext/examples/hello-c++-kde/hellowindow.cc", + "share/doc/gettext/examples/hello-c++-kde/hellowindow.h", + "share/doc/gettext/examples/hello-c++-kde/m4/Makefile.am", + "share/doc/gettext/examples/hello-c++-kde/po/LINGUAS", + "share/doc/gettext/examples/hello-c++-kde/po/Makevars", + "share/doc/gettext/examples/hello-c++-kde/po/POTFILES.in", + "share/doc/gettext/examples/hello-c++-kde/po/af.po", + "share/doc/gettext/examples/hello-c++-kde/po/ast.po", + "share/doc/gettext/examples/hello-c++-kde/po/bg.po", + "share/doc/gettext/examples/hello-c++-kde/po/ca.po", + "share/doc/gettext/examples/hello-c++-kde/po/cs.po", + "share/doc/gettext/examples/hello-c++-kde/po/da.po", + "share/doc/gettext/examples/hello-c++-kde/po/de.po", + "share/doc/gettext/examples/hello-c++-kde/po/el.po", + "share/doc/gettext/examples/hello-c++-kde/po/eo.po", + "share/doc/gettext/examples/hello-c++-kde/po/es.po", + "share/doc/gettext/examples/hello-c++-kde/po/fi.po", + "share/doc/gettext/examples/hello-c++-kde/po/fr.po", + "share/doc/gettext/examples/hello-c++-kde/po/ga.po", + "share/doc/gettext/examples/hello-c++-kde/po/gl.po", + "share/doc/gettext/examples/hello-c++-kde/po/hr.po", + "share/doc/gettext/examples/hello-c++-kde/po/hu.po", + "share/doc/gettext/examples/hello-c++-kde/po/id.po", + "share/doc/gettext/examples/hello-c++-kde/po/it.po", + "share/doc/gettext/examples/hello-c++-kde/po/ja.po", + "share/doc/gettext/examples/hello-c++-kde/po/ka.po", + "share/doc/gettext/examples/hello-c++-kde/po/ky.po", + "share/doc/gettext/examples/hello-c++-kde/po/lv.po", + "share/doc/gettext/examples/hello-c++-kde/po/ms.po", + "share/doc/gettext/examples/hello-c++-kde/po/mt.po", + "share/doc/gettext/examples/hello-c++-kde/po/nb.po", + "share/doc/gettext/examples/hello-c++-kde/po/nl.po", + "share/doc/gettext/examples/hello-c++-kde/po/nn.po", + "share/doc/gettext/examples/hello-c++-kde/po/pl.po", + "share/doc/gettext/examples/hello-c++-kde/po/pt.po", + "share/doc/gettext/examples/hello-c++-kde/po/pt_BR.po", + "share/doc/gettext/examples/hello-c++-kde/po/ro.po", + "share/doc/gettext/examples/hello-c++-kde/po/ru.po", + "share/doc/gettext/examples/hello-c++-kde/po/sk.po", + "share/doc/gettext/examples/hello-c++-kde/po/sl.po", + "share/doc/gettext/examples/hello-c++-kde/po/sq.po", + "share/doc/gettext/examples/hello-c++-kde/po/sr.po", + "share/doc/gettext/examples/hello-c++-kde/po/sv.po", + "share/doc/gettext/examples/hello-c++-kde/po/ta.po", + "share/doc/gettext/examples/hello-c++-kde/po/tr.po", + "share/doc/gettext/examples/hello-c++-kde/po/uk.po", + "share/doc/gettext/examples/hello-c++-kde/po/vi.po", + "share/doc/gettext/examples/hello-c++-kde/po/zh_CN.po", + "share/doc/gettext/examples/hello-c++-kde/po/zh_HK.po", + "share/doc/gettext/examples/hello-c++-kde/po/zh_TW.po", + "share/doc/gettext/examples/hello-c++-qt/BUGS", + "share/doc/gettext/examples/hello-c++-qt/INSTALL", + "share/doc/gettext/examples/hello-c++-qt/Makefile.am", + "share/doc/gettext/examples/hello-c++-qt/autoclean.sh", + "share/doc/gettext/examples/hello-c++-qt/autogen.sh", + "share/doc/gettext/examples/hello-c++-qt/configure.ac", + "share/doc/gettext/examples/hello-c++-qt/hello.cc", + "share/doc/gettext/examples/hello-c++-qt/m4/Makefile.am", + "share/doc/gettext/examples/hello-c++-qt/m4/qt.m4", + "share/doc/gettext/examples/hello-c++-qt/po/LINGUAS", + "share/doc/gettext/examples/hello-c++-qt/po/Makefile.am", + "share/doc/gettext/examples/hello-c++-qt/po/af.po", + "share/doc/gettext/examples/hello-c++-qt/po/ast.po", + "share/doc/gettext/examples/hello-c++-qt/po/bg.po", + "share/doc/gettext/examples/hello-c++-qt/po/ca.po", + "share/doc/gettext/examples/hello-c++-qt/po/cs.po", + "share/doc/gettext/examples/hello-c++-qt/po/da.po", + "share/doc/gettext/examples/hello-c++-qt/po/de.po", + "share/doc/gettext/examples/hello-c++-qt/po/el.po", + "share/doc/gettext/examples/hello-c++-qt/po/eo.po", + "share/doc/gettext/examples/hello-c++-qt/po/es.po", + "share/doc/gettext/examples/hello-c++-qt/po/fi.po", + "share/doc/gettext/examples/hello-c++-qt/po/fr.po", + "share/doc/gettext/examples/hello-c++-qt/po/ga.po", + "share/doc/gettext/examples/hello-c++-qt/po/gl.po", + "share/doc/gettext/examples/hello-c++-qt/po/hr.po", + "share/doc/gettext/examples/hello-c++-qt/po/hu.po", + "share/doc/gettext/examples/hello-c++-qt/po/id.po", + "share/doc/gettext/examples/hello-c++-qt/po/it.po", + "share/doc/gettext/examples/hello-c++-qt/po/ja.po", + "share/doc/gettext/examples/hello-c++-qt/po/ka.po", + "share/doc/gettext/examples/hello-c++-qt/po/ky.po", + "share/doc/gettext/examples/hello-c++-qt/po/lv.po", + "share/doc/gettext/examples/hello-c++-qt/po/ms.po", + "share/doc/gettext/examples/hello-c++-qt/po/mt.po", + "share/doc/gettext/examples/hello-c++-qt/po/nb.po", + "share/doc/gettext/examples/hello-c++-qt/po/nl.po", + "share/doc/gettext/examples/hello-c++-qt/po/nn.po", + "share/doc/gettext/examples/hello-c++-qt/po/pl.po", + "share/doc/gettext/examples/hello-c++-qt/po/pt.po", + "share/doc/gettext/examples/hello-c++-qt/po/pt_BR.po", + "share/doc/gettext/examples/hello-c++-qt/po/ro.po", + "share/doc/gettext/examples/hello-c++-qt/po/ru.po", + "share/doc/gettext/examples/hello-c++-qt/po/sk.po", + "share/doc/gettext/examples/hello-c++-qt/po/sl.po", + "share/doc/gettext/examples/hello-c++-qt/po/sq.po", + "share/doc/gettext/examples/hello-c++-qt/po/sr.po", + "share/doc/gettext/examples/hello-c++-qt/po/sv.po", + "share/doc/gettext/examples/hello-c++-qt/po/ta.po", + "share/doc/gettext/examples/hello-c++-qt/po/tr.po", + "share/doc/gettext/examples/hello-c++-qt/po/uk.po", + "share/doc/gettext/examples/hello-c++-qt/po/vi.po", + "share/doc/gettext/examples/hello-c++-qt/po/zh_CN.po", + "share/doc/gettext/examples/hello-c++-qt/po/zh_HK.po", + "share/doc/gettext/examples/hello-c++-qt/po/zh_TW.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/INSTALL", + "share/doc/gettext/examples/hello-c++-wxwidgets/Makefile.am", + "share/doc/gettext/examples/hello-c++-wxwidgets/autoclean.sh", + "share/doc/gettext/examples/hello-c++-wxwidgets/autogen.sh", + "share/doc/gettext/examples/hello-c++-wxwidgets/configure.ac", + "share/doc/gettext/examples/hello-c++-wxwidgets/hello.cc", + "share/doc/gettext/examples/hello-c++-wxwidgets/m4/Makefile.am", + "share/doc/gettext/examples/hello-c++-wxwidgets/m4/wxwidgets.m4", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/LINGUAS", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/Makefile.am", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/af.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/ast.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/bg.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/ca.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/cs.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/da.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/de.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/el.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/eo.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/es.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/fi.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/fr.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/ga.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/gl.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/hr.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/hu.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/id.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/it.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/ja.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/ka.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/ky.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/lv.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/ms.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/mt.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/nb.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/nl.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/nn.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/pl.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/pt.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/pt_BR.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/ro.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/ru.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/sk.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/sl.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/sq.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/sr.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/sv.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/ta.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/tr.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/uk.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/vi.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/zh_CN.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/zh_HK.po", + "share/doc/gettext/examples/hello-c++-wxwidgets/po/zh_TW.po", + "share/doc/gettext/examples/hello-c++/INSTALL", + "share/doc/gettext/examples/hello-c++/Makefile.am", + "share/doc/gettext/examples/hello-c++/autoclean.sh", + "share/doc/gettext/examples/hello-c++/autogen.sh", + "share/doc/gettext/examples/hello-c++/configure.ac", + "share/doc/gettext/examples/hello-c++/hello.cc", + "share/doc/gettext/examples/hello-c++/m4/Makefile.am", + "share/doc/gettext/examples/hello-c++/po/LINGUAS", + "share/doc/gettext/examples/hello-c++/po/Makevars", + "share/doc/gettext/examples/hello-c++/po/POTFILES.in", + "share/doc/gettext/examples/hello-c++/po/af.po", + "share/doc/gettext/examples/hello-c++/po/ast.po", + "share/doc/gettext/examples/hello-c++/po/bg.po", + "share/doc/gettext/examples/hello-c++/po/ca.po", + "share/doc/gettext/examples/hello-c++/po/cs.po", + "share/doc/gettext/examples/hello-c++/po/da.po", + "share/doc/gettext/examples/hello-c++/po/de.po", + "share/doc/gettext/examples/hello-c++/po/el.po", + "share/doc/gettext/examples/hello-c++/po/eo.po", + "share/doc/gettext/examples/hello-c++/po/es.po", + "share/doc/gettext/examples/hello-c++/po/fi.po", + "share/doc/gettext/examples/hello-c++/po/fr.po", + "share/doc/gettext/examples/hello-c++/po/ga.po", + "share/doc/gettext/examples/hello-c++/po/gl.po", + "share/doc/gettext/examples/hello-c++/po/hr.po", + "share/doc/gettext/examples/hello-c++/po/hu.po", + "share/doc/gettext/examples/hello-c++/po/id.po", + "share/doc/gettext/examples/hello-c++/po/it.po", + "share/doc/gettext/examples/hello-c++/po/ja.po", + "share/doc/gettext/examples/hello-c++/po/ka.po", + "share/doc/gettext/examples/hello-c++/po/ky.po", + "share/doc/gettext/examples/hello-c++/po/lv.po", + "share/doc/gettext/examples/hello-c++/po/ms.po", + "share/doc/gettext/examples/hello-c++/po/mt.po", + "share/doc/gettext/examples/hello-c++/po/nb.po", + "share/doc/gettext/examples/hello-c++/po/nl.po", + "share/doc/gettext/examples/hello-c++/po/nn.po", + "share/doc/gettext/examples/hello-c++/po/pl.po", + "share/doc/gettext/examples/hello-c++/po/pt.po", + "share/doc/gettext/examples/hello-c++/po/pt_BR.po", + "share/doc/gettext/examples/hello-c++/po/ro.po", + "share/doc/gettext/examples/hello-c++/po/ru.po", + "share/doc/gettext/examples/hello-c++/po/sk.po", + "share/doc/gettext/examples/hello-c++/po/sl.po", + "share/doc/gettext/examples/hello-c++/po/sq.po", + "share/doc/gettext/examples/hello-c++/po/sr.po", + "share/doc/gettext/examples/hello-c++/po/sv.po", + "share/doc/gettext/examples/hello-c++/po/ta.po", + "share/doc/gettext/examples/hello-c++/po/tr.po", + "share/doc/gettext/examples/hello-c++/po/uk.po", + "share/doc/gettext/examples/hello-c++/po/vi.po", + "share/doc/gettext/examples/hello-c++/po/zh_CN.po", + "share/doc/gettext/examples/hello-c++/po/zh_HK.po", + "share/doc/gettext/examples/hello-c++/po/zh_TW.po", + "share/doc/gettext/examples/hello-c++20/INSTALL", + "share/doc/gettext/examples/hello-c++20/Makefile.am", + "share/doc/gettext/examples/hello-c++20/autoclean.sh", + "share/doc/gettext/examples/hello-c++20/autogen.sh", + "share/doc/gettext/examples/hello-c++20/configure.ac", + "share/doc/gettext/examples/hello-c++20/hello.cc", + "share/doc/gettext/examples/hello-c++20/m4/Makefile.am", + "share/doc/gettext/examples/hello-c++20/po/LINGUAS", + "share/doc/gettext/examples/hello-c++20/po/Makevars", + "share/doc/gettext/examples/hello-c++20/po/POTFILES.in", + "share/doc/gettext/examples/hello-c++20/po/af.po", + "share/doc/gettext/examples/hello-c++20/po/ast.po", + "share/doc/gettext/examples/hello-c++20/po/bg.po", + "share/doc/gettext/examples/hello-c++20/po/ca.po", + "share/doc/gettext/examples/hello-c++20/po/cs.po", + "share/doc/gettext/examples/hello-c++20/po/da.po", + "share/doc/gettext/examples/hello-c++20/po/de.po", + "share/doc/gettext/examples/hello-c++20/po/el.po", + "share/doc/gettext/examples/hello-c++20/po/eo.po", + "share/doc/gettext/examples/hello-c++20/po/es.po", + "share/doc/gettext/examples/hello-c++20/po/fi.po", + "share/doc/gettext/examples/hello-c++20/po/fr.po", + "share/doc/gettext/examples/hello-c++20/po/ga.po", + "share/doc/gettext/examples/hello-c++20/po/gl.po", + "share/doc/gettext/examples/hello-c++20/po/hr.po", + "share/doc/gettext/examples/hello-c++20/po/hu.po", + "share/doc/gettext/examples/hello-c++20/po/id.po", + "share/doc/gettext/examples/hello-c++20/po/it.po", + "share/doc/gettext/examples/hello-c++20/po/ja.po", + "share/doc/gettext/examples/hello-c++20/po/ka.po", + "share/doc/gettext/examples/hello-c++20/po/ky.po", + "share/doc/gettext/examples/hello-c++20/po/lv.po", + "share/doc/gettext/examples/hello-c++20/po/ms.po", + "share/doc/gettext/examples/hello-c++20/po/mt.po", + "share/doc/gettext/examples/hello-c++20/po/nb.po", + "share/doc/gettext/examples/hello-c++20/po/nl.po", + "share/doc/gettext/examples/hello-c++20/po/nn.po", + "share/doc/gettext/examples/hello-c++20/po/pl.po", + "share/doc/gettext/examples/hello-c++20/po/pt.po", + "share/doc/gettext/examples/hello-c++20/po/pt_BR.po", + "share/doc/gettext/examples/hello-c++20/po/ro.po", + "share/doc/gettext/examples/hello-c++20/po/ru.po", + "share/doc/gettext/examples/hello-c++20/po/sk.po", + "share/doc/gettext/examples/hello-c++20/po/sl.po", + "share/doc/gettext/examples/hello-c++20/po/sq.po", + "share/doc/gettext/examples/hello-c++20/po/sr.po", + "share/doc/gettext/examples/hello-c++20/po/sv.po", + "share/doc/gettext/examples/hello-c++20/po/ta.po", + "share/doc/gettext/examples/hello-c++20/po/tr.po", + "share/doc/gettext/examples/hello-c++20/po/uk.po", + "share/doc/gettext/examples/hello-c++20/po/vi.po", + "share/doc/gettext/examples/hello-c++20/po/zh_CN.po", + "share/doc/gettext/examples/hello-c++20/po/zh_HK.po", + "share/doc/gettext/examples/hello-c++20/po/zh_TW.po", + "share/doc/gettext/examples/hello-c-gnome2/INSTALL", + "share/doc/gettext/examples/hello-c-gnome2/Makefile.am", + "share/doc/gettext/examples/hello-c-gnome2/autoclean.sh", + "share/doc/gettext/examples/hello-c-gnome2/autogen.sh", + "share/doc/gettext/examples/hello-c-gnome2/configure.ac", + "share/doc/gettext/examples/hello-c-gnome2/hello.c", + "share/doc/gettext/examples/hello-c-gnome2/m4/Makefile.am", + "share/doc/gettext/examples/hello-c-gnome2/m4/gnome-gnorba-check.m4", + "share/doc/gettext/examples/hello-c-gnome2/m4/gnome-orbit-check.m4", + "share/doc/gettext/examples/hello-c-gnome2/m4/gnome.m4", + "share/doc/gettext/examples/hello-c-gnome2/po/LINGUAS", + "share/doc/gettext/examples/hello-c-gnome2/po/Makevars", + "share/doc/gettext/examples/hello-c-gnome2/po/POTFILES.in", + "share/doc/gettext/examples/hello-c-gnome2/po/af.po", + "share/doc/gettext/examples/hello-c-gnome2/po/ast.po", + "share/doc/gettext/examples/hello-c-gnome2/po/bg.po", + "share/doc/gettext/examples/hello-c-gnome2/po/ca.po", + "share/doc/gettext/examples/hello-c-gnome2/po/cs.po", + "share/doc/gettext/examples/hello-c-gnome2/po/da.po", + "share/doc/gettext/examples/hello-c-gnome2/po/de.po", + "share/doc/gettext/examples/hello-c-gnome2/po/el.po", + "share/doc/gettext/examples/hello-c-gnome2/po/eo.po", + "share/doc/gettext/examples/hello-c-gnome2/po/es.po", + "share/doc/gettext/examples/hello-c-gnome2/po/fi.po", + "share/doc/gettext/examples/hello-c-gnome2/po/fr.po", + "share/doc/gettext/examples/hello-c-gnome2/po/ga.po", + "share/doc/gettext/examples/hello-c-gnome2/po/gl.po", + "share/doc/gettext/examples/hello-c-gnome2/po/hr.po", + "share/doc/gettext/examples/hello-c-gnome2/po/hu.po", + "share/doc/gettext/examples/hello-c-gnome2/po/id.po", + "share/doc/gettext/examples/hello-c-gnome2/po/it.po", + "share/doc/gettext/examples/hello-c-gnome2/po/ja.po", + "share/doc/gettext/examples/hello-c-gnome2/po/ka.po", + "share/doc/gettext/examples/hello-c-gnome2/po/ky.po", + "share/doc/gettext/examples/hello-c-gnome2/po/lv.po", + "share/doc/gettext/examples/hello-c-gnome2/po/ms.po", + "share/doc/gettext/examples/hello-c-gnome2/po/mt.po", + "share/doc/gettext/examples/hello-c-gnome2/po/nb.po", + "share/doc/gettext/examples/hello-c-gnome2/po/nl.po", + "share/doc/gettext/examples/hello-c-gnome2/po/nn.po", + "share/doc/gettext/examples/hello-c-gnome2/po/pl.po", + "share/doc/gettext/examples/hello-c-gnome2/po/pt.po", + "share/doc/gettext/examples/hello-c-gnome2/po/pt_BR.po", + "share/doc/gettext/examples/hello-c-gnome2/po/ro.po", + "share/doc/gettext/examples/hello-c-gnome2/po/ru.po", + "share/doc/gettext/examples/hello-c-gnome2/po/sk.po", + "share/doc/gettext/examples/hello-c-gnome2/po/sl.po", + "share/doc/gettext/examples/hello-c-gnome2/po/sq.po", + "share/doc/gettext/examples/hello-c-gnome2/po/sr.po", + "share/doc/gettext/examples/hello-c-gnome2/po/sv.po", + "share/doc/gettext/examples/hello-c-gnome2/po/ta.po", + "share/doc/gettext/examples/hello-c-gnome2/po/tr.po", + "share/doc/gettext/examples/hello-c-gnome2/po/uk.po", + "share/doc/gettext/examples/hello-c-gnome2/po/vi.po", + "share/doc/gettext/examples/hello-c-gnome2/po/zh_CN.po", + "share/doc/gettext/examples/hello-c-gnome2/po/zh_HK.po", + "share/doc/gettext/examples/hello-c-gnome2/po/zh_TW.po", + "share/doc/gettext/examples/hello-c-gnome3/INSTALL", + "share/doc/gettext/examples/hello-c-gnome3/Makefile.am", + "share/doc/gettext/examples/hello-c-gnome3/README", + "share/doc/gettext/examples/hello-c-gnome3/autoclean.sh", + "share/doc/gettext/examples/hello-c-gnome3/autogen.sh", + "share/doc/gettext/examples/hello-c-gnome3/configure.ac", + "share/doc/gettext/examples/hello-c-gnome3/hello.c", + "share/doc/gettext/examples/hello-c-gnome3/hello.desktop.in.in", + "share/doc/gettext/examples/hello-c-gnome3/hello.gresource.xml", + "share/doc/gettext/examples/hello-c-gnome3/hello.ui", + "share/doc/gettext/examples/hello-c-gnome3/hello2.c", + "share/doc/gettext/examples/hello-c-gnome3/hello2.desktop.in.in", + "share/doc/gettext/examples/hello-c-gnome3/hello2.gresource.xml", + "share/doc/gettext/examples/hello-c-gnome3/hello2.gschema.xml", + "share/doc/gettext/examples/hello-c-gnome3/hello2.ui", + "share/doc/gettext/examples/hello-c-gnome3/m4/Makefile.am", + "share/doc/gettext/examples/hello-c-gnome3/po/LINGUAS", + "share/doc/gettext/examples/hello-c-gnome3/po/Makevars", + "share/doc/gettext/examples/hello-c-gnome3/po/POTFILES.in", + "share/doc/gettext/examples/hello-c-gnome3/po/af.po", + "share/doc/gettext/examples/hello-c-gnome3/po/ast.po", + "share/doc/gettext/examples/hello-c-gnome3/po/bg.po", + "share/doc/gettext/examples/hello-c-gnome3/po/ca.po", + "share/doc/gettext/examples/hello-c-gnome3/po/cs.po", + "share/doc/gettext/examples/hello-c-gnome3/po/da.po", + "share/doc/gettext/examples/hello-c-gnome3/po/de.po", + "share/doc/gettext/examples/hello-c-gnome3/po/el.po", + "share/doc/gettext/examples/hello-c-gnome3/po/eo.po", + "share/doc/gettext/examples/hello-c-gnome3/po/es.po", + "share/doc/gettext/examples/hello-c-gnome3/po/fi.po", + "share/doc/gettext/examples/hello-c-gnome3/po/fr.po", + "share/doc/gettext/examples/hello-c-gnome3/po/ga.po", + "share/doc/gettext/examples/hello-c-gnome3/po/gl.po", + "share/doc/gettext/examples/hello-c-gnome3/po/hr.po", + "share/doc/gettext/examples/hello-c-gnome3/po/hu.po", + "share/doc/gettext/examples/hello-c-gnome3/po/id.po", + "share/doc/gettext/examples/hello-c-gnome3/po/it.po", + "share/doc/gettext/examples/hello-c-gnome3/po/ja.po", + "share/doc/gettext/examples/hello-c-gnome3/po/ka.po", + "share/doc/gettext/examples/hello-c-gnome3/po/ky.po", + "share/doc/gettext/examples/hello-c-gnome3/po/lv.po", + "share/doc/gettext/examples/hello-c-gnome3/po/ms.po", + "share/doc/gettext/examples/hello-c-gnome3/po/mt.po", + "share/doc/gettext/examples/hello-c-gnome3/po/nb.po", + "share/doc/gettext/examples/hello-c-gnome3/po/nl.po", + "share/doc/gettext/examples/hello-c-gnome3/po/nn.po", + "share/doc/gettext/examples/hello-c-gnome3/po/pl.po", + "share/doc/gettext/examples/hello-c-gnome3/po/pt.po", + "share/doc/gettext/examples/hello-c-gnome3/po/pt_BR.po", + "share/doc/gettext/examples/hello-c-gnome3/po/ro.po", + "share/doc/gettext/examples/hello-c-gnome3/po/ru.po", + "share/doc/gettext/examples/hello-c-gnome3/po/sk.po", + "share/doc/gettext/examples/hello-c-gnome3/po/sl.po", + "share/doc/gettext/examples/hello-c-gnome3/po/sq.po", + "share/doc/gettext/examples/hello-c-gnome3/po/sr.po", + "share/doc/gettext/examples/hello-c-gnome3/po/sv.po", + "share/doc/gettext/examples/hello-c-gnome3/po/ta.po", + "share/doc/gettext/examples/hello-c-gnome3/po/tr.po", + "share/doc/gettext/examples/hello-c-gnome3/po/uk.po", + "share/doc/gettext/examples/hello-c-gnome3/po/vi.po", + "share/doc/gettext/examples/hello-c-gnome3/po/zh_CN.po", + "share/doc/gettext/examples/hello-c-gnome3/po/zh_HK.po", + "share/doc/gettext/examples/hello-c-gnome3/po/zh_TW.po", + "share/doc/gettext/examples/hello-c-http/INSTALL", + "share/doc/gettext/examples/hello-c-http/Makefile.am", + "share/doc/gettext/examples/hello-c-http/autoclean.sh", + "share/doc/gettext/examples/hello-c-http/autogen.sh", + "share/doc/gettext/examples/hello-c-http/configure.ac", + "share/doc/gettext/examples/hello-c-http/hello-server.c", + "share/doc/gettext/examples/hello-c-http/m4/Makefile.am", + "share/doc/gettext/examples/hello-c-http/po/LINGUAS", + "share/doc/gettext/examples/hello-c-http/po/Makevars", + "share/doc/gettext/examples/hello-c-http/po/POTFILES.in", + "share/doc/gettext/examples/hello-c-http/po/af.po", + "share/doc/gettext/examples/hello-c-http/po/ast.po", + "share/doc/gettext/examples/hello-c-http/po/bg.po", + "share/doc/gettext/examples/hello-c-http/po/ca.po", + "share/doc/gettext/examples/hello-c-http/po/cs.po", + "share/doc/gettext/examples/hello-c-http/po/da.po", + "share/doc/gettext/examples/hello-c-http/po/de.po", + "share/doc/gettext/examples/hello-c-http/po/el.po", + "share/doc/gettext/examples/hello-c-http/po/eo.po", + "share/doc/gettext/examples/hello-c-http/po/es.po", + "share/doc/gettext/examples/hello-c-http/po/fi.po", + "share/doc/gettext/examples/hello-c-http/po/fr.po", + "share/doc/gettext/examples/hello-c-http/po/ga.po", + "share/doc/gettext/examples/hello-c-http/po/gl.po", + "share/doc/gettext/examples/hello-c-http/po/hr.po", + "share/doc/gettext/examples/hello-c-http/po/hu.po", + "share/doc/gettext/examples/hello-c-http/po/id.po", + "share/doc/gettext/examples/hello-c-http/po/it.po", + "share/doc/gettext/examples/hello-c-http/po/ja.po", + "share/doc/gettext/examples/hello-c-http/po/ka.po", + "share/doc/gettext/examples/hello-c-http/po/ky.po", + "share/doc/gettext/examples/hello-c-http/po/lv.po", + "share/doc/gettext/examples/hello-c-http/po/ms.po", + "share/doc/gettext/examples/hello-c-http/po/mt.po", + "share/doc/gettext/examples/hello-c-http/po/nb.po", + "share/doc/gettext/examples/hello-c-http/po/nl.po", + "share/doc/gettext/examples/hello-c-http/po/nn.po", + "share/doc/gettext/examples/hello-c-http/po/pl.po", + "share/doc/gettext/examples/hello-c-http/po/pt.po", + "share/doc/gettext/examples/hello-c-http/po/pt_BR.po", + "share/doc/gettext/examples/hello-c-http/po/ro.po", + "share/doc/gettext/examples/hello-c-http/po/ru.po", + "share/doc/gettext/examples/hello-c-http/po/sk.po", + "share/doc/gettext/examples/hello-c-http/po/sl.po", + "share/doc/gettext/examples/hello-c-http/po/sq.po", + "share/doc/gettext/examples/hello-c-http/po/sr.po", + "share/doc/gettext/examples/hello-c-http/po/sv.po", + "share/doc/gettext/examples/hello-c-http/po/ta.po", + "share/doc/gettext/examples/hello-c-http/po/tr.po", + "share/doc/gettext/examples/hello-c-http/po/uk.po", + "share/doc/gettext/examples/hello-c-http/po/vi.po", + "share/doc/gettext/examples/hello-c-http/po/zh_CN.po", + "share/doc/gettext/examples/hello-c-http/po/zh_HK.po", + "share/doc/gettext/examples/hello-c-http/po/zh_TW.po", + "share/doc/gettext/examples/hello-c/INSTALL", + "share/doc/gettext/examples/hello-c/Makefile.am", + "share/doc/gettext/examples/hello-c/autoclean.sh", + "share/doc/gettext/examples/hello-c/autogen.sh", + "share/doc/gettext/examples/hello-c/configure.ac", + "share/doc/gettext/examples/hello-c/hello.c", + "share/doc/gettext/examples/hello-c/m4/Makefile.am", + "share/doc/gettext/examples/hello-c/po/LINGUAS", + "share/doc/gettext/examples/hello-c/po/Makevars", + "share/doc/gettext/examples/hello-c/po/POTFILES.in", + "share/doc/gettext/examples/hello-c/po/af.po", + "share/doc/gettext/examples/hello-c/po/ast.po", + "share/doc/gettext/examples/hello-c/po/bg.po", + "share/doc/gettext/examples/hello-c/po/ca.po", + "share/doc/gettext/examples/hello-c/po/cs.po", + "share/doc/gettext/examples/hello-c/po/da.po", + "share/doc/gettext/examples/hello-c/po/de.po", + "share/doc/gettext/examples/hello-c/po/el.po", + "share/doc/gettext/examples/hello-c/po/eo.po", + "share/doc/gettext/examples/hello-c/po/es.po", + "share/doc/gettext/examples/hello-c/po/fi.po", + "share/doc/gettext/examples/hello-c/po/fr.po", + "share/doc/gettext/examples/hello-c/po/ga.po", + "share/doc/gettext/examples/hello-c/po/gl.po", + "share/doc/gettext/examples/hello-c/po/hr.po", + "share/doc/gettext/examples/hello-c/po/hu.po", + "share/doc/gettext/examples/hello-c/po/id.po", + "share/doc/gettext/examples/hello-c/po/it.po", + "share/doc/gettext/examples/hello-c/po/ja.po", + "share/doc/gettext/examples/hello-c/po/ka.po", + "share/doc/gettext/examples/hello-c/po/ky.po", + "share/doc/gettext/examples/hello-c/po/lv.po", + "share/doc/gettext/examples/hello-c/po/ms.po", + "share/doc/gettext/examples/hello-c/po/mt.po", + "share/doc/gettext/examples/hello-c/po/nb.po", + "share/doc/gettext/examples/hello-c/po/nl.po", + "share/doc/gettext/examples/hello-c/po/nn.po", + "share/doc/gettext/examples/hello-c/po/pl.po", + "share/doc/gettext/examples/hello-c/po/pt.po", + "share/doc/gettext/examples/hello-c/po/pt_BR.po", + "share/doc/gettext/examples/hello-c/po/ro.po", + "share/doc/gettext/examples/hello-c/po/ru.po", + "share/doc/gettext/examples/hello-c/po/sk.po", + "share/doc/gettext/examples/hello-c/po/sl.po", + "share/doc/gettext/examples/hello-c/po/sq.po", + "share/doc/gettext/examples/hello-c/po/sr.po", + "share/doc/gettext/examples/hello-c/po/sv.po", + "share/doc/gettext/examples/hello-c/po/ta.po", + "share/doc/gettext/examples/hello-c/po/tr.po", + "share/doc/gettext/examples/hello-c/po/uk.po", + "share/doc/gettext/examples/hello-c/po/vi.po", + "share/doc/gettext/examples/hello-c/po/zh_CN.po", + "share/doc/gettext/examples/hello-c/po/zh_HK.po", + "share/doc/gettext/examples/hello-c/po/zh_TW.po", + "share/doc/gettext/examples/hello-clisp/INSTALL", + "share/doc/gettext/examples/hello-clisp/Makefile.am", + "share/doc/gettext/examples/hello-clisp/autoclean.sh", + "share/doc/gettext/examples/hello-clisp/autogen.sh", + "share/doc/gettext/examples/hello-clisp/configure.ac", + "share/doc/gettext/examples/hello-clisp/hello.lisp.in", + "share/doc/gettext/examples/hello-clisp/m4/Makefile.am", + "share/doc/gettext/examples/hello-clisp/po/LINGUAS", + "share/doc/gettext/examples/hello-clisp/po/Makefile.am", + "share/doc/gettext/examples/hello-clisp/po/af.po", + "share/doc/gettext/examples/hello-clisp/po/ast.po", + "share/doc/gettext/examples/hello-clisp/po/bg.po", + "share/doc/gettext/examples/hello-clisp/po/ca.po", + "share/doc/gettext/examples/hello-clisp/po/cs.po", + "share/doc/gettext/examples/hello-clisp/po/da.po", + "share/doc/gettext/examples/hello-clisp/po/de.po", + "share/doc/gettext/examples/hello-clisp/po/el.po", + "share/doc/gettext/examples/hello-clisp/po/eo.po", + "share/doc/gettext/examples/hello-clisp/po/es.po", + "share/doc/gettext/examples/hello-clisp/po/fi.po", + "share/doc/gettext/examples/hello-clisp/po/fr.po", + "share/doc/gettext/examples/hello-clisp/po/ga.po", + "share/doc/gettext/examples/hello-clisp/po/gl.po", + "share/doc/gettext/examples/hello-clisp/po/hr.po", + "share/doc/gettext/examples/hello-clisp/po/hu.po", + "share/doc/gettext/examples/hello-clisp/po/id.po", + "share/doc/gettext/examples/hello-clisp/po/it.po", + "share/doc/gettext/examples/hello-clisp/po/ja.po", + "share/doc/gettext/examples/hello-clisp/po/ka.po", + "share/doc/gettext/examples/hello-clisp/po/ky.po", + "share/doc/gettext/examples/hello-clisp/po/lv.po", + "share/doc/gettext/examples/hello-clisp/po/ms.po", + "share/doc/gettext/examples/hello-clisp/po/mt.po", + "share/doc/gettext/examples/hello-clisp/po/nb.po", + "share/doc/gettext/examples/hello-clisp/po/nl.po", + "share/doc/gettext/examples/hello-clisp/po/nn.po", + "share/doc/gettext/examples/hello-clisp/po/pl.po", + "share/doc/gettext/examples/hello-clisp/po/pt.po", + "share/doc/gettext/examples/hello-clisp/po/pt_BR.po", + "share/doc/gettext/examples/hello-clisp/po/ro.po", + "share/doc/gettext/examples/hello-clisp/po/ru.po", + "share/doc/gettext/examples/hello-clisp/po/sk.po", + "share/doc/gettext/examples/hello-clisp/po/sl.po", + "share/doc/gettext/examples/hello-clisp/po/sq.po", + "share/doc/gettext/examples/hello-clisp/po/sr.po", + "share/doc/gettext/examples/hello-clisp/po/sv.po", + "share/doc/gettext/examples/hello-clisp/po/ta.po", + "share/doc/gettext/examples/hello-clisp/po/tr.po", + "share/doc/gettext/examples/hello-clisp/po/uk.po", + "share/doc/gettext/examples/hello-clisp/po/vi.po", + "share/doc/gettext/examples/hello-clisp/po/zh_CN.po", + "share/doc/gettext/examples/hello-clisp/po/zh_HK.po", + "share/doc/gettext/examples/hello-clisp/po/zh_TW.po", + "share/doc/gettext/examples/hello-csharp-forms/INSTALL", + "share/doc/gettext/examples/hello-csharp-forms/Makefile.am", + "share/doc/gettext/examples/hello-csharp-forms/README", + "share/doc/gettext/examples/hello-csharp-forms/autoclean.sh", + "share/doc/gettext/examples/hello-csharp-forms/autogen.sh", + "share/doc/gettext/examples/hello-csharp-forms/configure.ac", + "share/doc/gettext/examples/hello-csharp-forms/hello.cs", + "share/doc/gettext/examples/hello-csharp-forms/m4/Makefile.am", + "share/doc/gettext/examples/hello-csharp-forms/po/LINGUAS", + "share/doc/gettext/examples/hello-csharp-forms/po/Makefile.am", + "share/doc/gettext/examples/hello-csharp-forms/po/af.po", + "share/doc/gettext/examples/hello-csharp-forms/po/ast.po", + "share/doc/gettext/examples/hello-csharp-forms/po/bg.po", + "share/doc/gettext/examples/hello-csharp-forms/po/ca.po", + "share/doc/gettext/examples/hello-csharp-forms/po/cs.po", + "share/doc/gettext/examples/hello-csharp-forms/po/da.po", + "share/doc/gettext/examples/hello-csharp-forms/po/de.po", + "share/doc/gettext/examples/hello-csharp-forms/po/el.po", + "share/doc/gettext/examples/hello-csharp-forms/po/eo.po", + "share/doc/gettext/examples/hello-csharp-forms/po/es.po", + "share/doc/gettext/examples/hello-csharp-forms/po/fi.po", + "share/doc/gettext/examples/hello-csharp-forms/po/fr.po", + "share/doc/gettext/examples/hello-csharp-forms/po/ga.po", + "share/doc/gettext/examples/hello-csharp-forms/po/gl.po", + "share/doc/gettext/examples/hello-csharp-forms/po/hr.po", + "share/doc/gettext/examples/hello-csharp-forms/po/hu.po", + "share/doc/gettext/examples/hello-csharp-forms/po/id.po", + "share/doc/gettext/examples/hello-csharp-forms/po/it.po", + "share/doc/gettext/examples/hello-csharp-forms/po/ja.po", + "share/doc/gettext/examples/hello-csharp-forms/po/ka.po", + "share/doc/gettext/examples/hello-csharp-forms/po/ky.po", + "share/doc/gettext/examples/hello-csharp-forms/po/lv.po", + "share/doc/gettext/examples/hello-csharp-forms/po/ms.po", + "share/doc/gettext/examples/hello-csharp-forms/po/mt.po", + "share/doc/gettext/examples/hello-csharp-forms/po/nb.po", + "share/doc/gettext/examples/hello-csharp-forms/po/nl.po", + "share/doc/gettext/examples/hello-csharp-forms/po/nn.po", + "share/doc/gettext/examples/hello-csharp-forms/po/pl.po", + "share/doc/gettext/examples/hello-csharp-forms/po/pt.po", + "share/doc/gettext/examples/hello-csharp-forms/po/pt_BR.po", + "share/doc/gettext/examples/hello-csharp-forms/po/ro.po", + "share/doc/gettext/examples/hello-csharp-forms/po/ru.po", + "share/doc/gettext/examples/hello-csharp-forms/po/sk.po", + "share/doc/gettext/examples/hello-csharp-forms/po/sl.po", + "share/doc/gettext/examples/hello-csharp-forms/po/sq.po", + "share/doc/gettext/examples/hello-csharp-forms/po/sr.po", + "share/doc/gettext/examples/hello-csharp-forms/po/sv.po", + "share/doc/gettext/examples/hello-csharp-forms/po/ta.po", + "share/doc/gettext/examples/hello-csharp-forms/po/tr.po", + "share/doc/gettext/examples/hello-csharp-forms/po/uk.po", + "share/doc/gettext/examples/hello-csharp-forms/po/vi.po", + "share/doc/gettext/examples/hello-csharp-forms/po/zh_CN.po", + "share/doc/gettext/examples/hello-csharp-forms/po/zh_HK.po", + "share/doc/gettext/examples/hello-csharp-forms/po/zh_TW.po", + "share/doc/gettext/examples/hello-csharp/INSTALL", + "share/doc/gettext/examples/hello-csharp/Makefile.am", + "share/doc/gettext/examples/hello-csharp/autoclean.sh", + "share/doc/gettext/examples/hello-csharp/autogen.sh", + "share/doc/gettext/examples/hello-csharp/configure.ac", + "share/doc/gettext/examples/hello-csharp/hello.cs", + "share/doc/gettext/examples/hello-csharp/m4/Makefile.am", + "share/doc/gettext/examples/hello-csharp/po/LINGUAS", + "share/doc/gettext/examples/hello-csharp/po/Makefile.am", + "share/doc/gettext/examples/hello-csharp/po/af.po", + "share/doc/gettext/examples/hello-csharp/po/ast.po", + "share/doc/gettext/examples/hello-csharp/po/bg.po", + "share/doc/gettext/examples/hello-csharp/po/ca.po", + "share/doc/gettext/examples/hello-csharp/po/cs.po", + "share/doc/gettext/examples/hello-csharp/po/da.po", + "share/doc/gettext/examples/hello-csharp/po/de.po", + "share/doc/gettext/examples/hello-csharp/po/el.po", + "share/doc/gettext/examples/hello-csharp/po/eo.po", + "share/doc/gettext/examples/hello-csharp/po/es.po", + "share/doc/gettext/examples/hello-csharp/po/fi.po", + "share/doc/gettext/examples/hello-csharp/po/fr.po", + "share/doc/gettext/examples/hello-csharp/po/ga.po", + "share/doc/gettext/examples/hello-csharp/po/gl.po", + "share/doc/gettext/examples/hello-csharp/po/hr.po", + "share/doc/gettext/examples/hello-csharp/po/hu.po", + "share/doc/gettext/examples/hello-csharp/po/id.po", + "share/doc/gettext/examples/hello-csharp/po/it.po", + "share/doc/gettext/examples/hello-csharp/po/ja.po", + "share/doc/gettext/examples/hello-csharp/po/ka.po", + "share/doc/gettext/examples/hello-csharp/po/ky.po", + "share/doc/gettext/examples/hello-csharp/po/lv.po", + "share/doc/gettext/examples/hello-csharp/po/ms.po", + "share/doc/gettext/examples/hello-csharp/po/mt.po", + "share/doc/gettext/examples/hello-csharp/po/nb.po", + "share/doc/gettext/examples/hello-csharp/po/nl.po", + "share/doc/gettext/examples/hello-csharp/po/nn.po", + "share/doc/gettext/examples/hello-csharp/po/pl.po", + "share/doc/gettext/examples/hello-csharp/po/pt.po", + "share/doc/gettext/examples/hello-csharp/po/pt_BR.po", + "share/doc/gettext/examples/hello-csharp/po/ro.po", + "share/doc/gettext/examples/hello-csharp/po/ru.po", + "share/doc/gettext/examples/hello-csharp/po/sk.po", + "share/doc/gettext/examples/hello-csharp/po/sl.po", + "share/doc/gettext/examples/hello-csharp/po/sq.po", + "share/doc/gettext/examples/hello-csharp/po/sr.po", + "share/doc/gettext/examples/hello-csharp/po/sv.po", + "share/doc/gettext/examples/hello-csharp/po/ta.po", + "share/doc/gettext/examples/hello-csharp/po/tr.po", + "share/doc/gettext/examples/hello-csharp/po/uk.po", + "share/doc/gettext/examples/hello-csharp/po/vi.po", + "share/doc/gettext/examples/hello-csharp/po/zh_CN.po", + "share/doc/gettext/examples/hello-csharp/po/zh_HK.po", + "share/doc/gettext/examples/hello-csharp/po/zh_TW.po", + "share/doc/gettext/examples/hello-d/INSTALL", + "share/doc/gettext/examples/hello-d/Makefile.am", + "share/doc/gettext/examples/hello-d/autoclean.sh", + "share/doc/gettext/examples/hello-d/autogen.sh", + "share/doc/gettext/examples/hello-d/configure.ac", + "share/doc/gettext/examples/hello-d/hello.d.in", + "share/doc/gettext/examples/hello-d/m4/Makefile.am", + "share/doc/gettext/examples/hello-d/po/LINGUAS", + "share/doc/gettext/examples/hello-d/po/Makefile.am", + "share/doc/gettext/examples/hello-d/po/af.po", + "share/doc/gettext/examples/hello-d/po/ast.po", + "share/doc/gettext/examples/hello-d/po/bg.po", + "share/doc/gettext/examples/hello-d/po/ca.po", + "share/doc/gettext/examples/hello-d/po/cs.po", + "share/doc/gettext/examples/hello-d/po/da.po", + "share/doc/gettext/examples/hello-d/po/de.po", + "share/doc/gettext/examples/hello-d/po/el.po", + "share/doc/gettext/examples/hello-d/po/eo.po", + "share/doc/gettext/examples/hello-d/po/es.po", + "share/doc/gettext/examples/hello-d/po/fi.po", + "share/doc/gettext/examples/hello-d/po/fr.po", + "share/doc/gettext/examples/hello-d/po/ga.po", + "share/doc/gettext/examples/hello-d/po/gl.po", + "share/doc/gettext/examples/hello-d/po/hr.po", + "share/doc/gettext/examples/hello-d/po/hu.po", + "share/doc/gettext/examples/hello-d/po/id.po", + "share/doc/gettext/examples/hello-d/po/it.po", + "share/doc/gettext/examples/hello-d/po/ja.po", + "share/doc/gettext/examples/hello-d/po/ka.po", + "share/doc/gettext/examples/hello-d/po/ky.po", + "share/doc/gettext/examples/hello-d/po/lv.po", + "share/doc/gettext/examples/hello-d/po/ms.po", + "share/doc/gettext/examples/hello-d/po/mt.po", + "share/doc/gettext/examples/hello-d/po/nb.po", + "share/doc/gettext/examples/hello-d/po/nl.po", + "share/doc/gettext/examples/hello-d/po/nn.po", + "share/doc/gettext/examples/hello-d/po/pl.po", + "share/doc/gettext/examples/hello-d/po/pt.po", + "share/doc/gettext/examples/hello-d/po/pt_BR.po", + "share/doc/gettext/examples/hello-d/po/ro.po", + "share/doc/gettext/examples/hello-d/po/ru.po", + "share/doc/gettext/examples/hello-d/po/sk.po", + "share/doc/gettext/examples/hello-d/po/sl.po", + "share/doc/gettext/examples/hello-d/po/sq.po", + "share/doc/gettext/examples/hello-d/po/sr.po", + "share/doc/gettext/examples/hello-d/po/sv.po", + "share/doc/gettext/examples/hello-d/po/ta.po", + "share/doc/gettext/examples/hello-d/po/tr.po", + "share/doc/gettext/examples/hello-d/po/uk.po", + "share/doc/gettext/examples/hello-d/po/vi.po", + "share/doc/gettext/examples/hello-d/po/zh_CN.po", + "share/doc/gettext/examples/hello-d/po/zh_HK.po", + "share/doc/gettext/examples/hello-d/po/zh_TW.po", + "share/doc/gettext/examples/hello-gawk/INSTALL", + "share/doc/gettext/examples/hello-gawk/Makefile.am", + "share/doc/gettext/examples/hello-gawk/autoclean.sh", + "share/doc/gettext/examples/hello-gawk/autogen.sh", + "share/doc/gettext/examples/hello-gawk/configure.ac", + "share/doc/gettext/examples/hello-gawk/hello.awk", + "share/doc/gettext/examples/hello-gawk/m4/Makefile.am", + "share/doc/gettext/examples/hello-gawk/po/LINGUAS", + "share/doc/gettext/examples/hello-gawk/po/Makefile.am", + "share/doc/gettext/examples/hello-gawk/po/af.po", + "share/doc/gettext/examples/hello-gawk/po/ast.po", + "share/doc/gettext/examples/hello-gawk/po/bg.po", + "share/doc/gettext/examples/hello-gawk/po/ca.po", + "share/doc/gettext/examples/hello-gawk/po/cs.po", + "share/doc/gettext/examples/hello-gawk/po/da.po", + "share/doc/gettext/examples/hello-gawk/po/de.po", + "share/doc/gettext/examples/hello-gawk/po/el.po", + "share/doc/gettext/examples/hello-gawk/po/eo.po", + "share/doc/gettext/examples/hello-gawk/po/es.po", + "share/doc/gettext/examples/hello-gawk/po/fi.po", + "share/doc/gettext/examples/hello-gawk/po/fr.po", + "share/doc/gettext/examples/hello-gawk/po/ga.po", + "share/doc/gettext/examples/hello-gawk/po/gl.po", + "share/doc/gettext/examples/hello-gawk/po/hr.po", + "share/doc/gettext/examples/hello-gawk/po/hu.po", + "share/doc/gettext/examples/hello-gawk/po/id.po", + "share/doc/gettext/examples/hello-gawk/po/it.po", + "share/doc/gettext/examples/hello-gawk/po/ja.po", + "share/doc/gettext/examples/hello-gawk/po/ka.po", + "share/doc/gettext/examples/hello-gawk/po/ky.po", + "share/doc/gettext/examples/hello-gawk/po/lv.po", + "share/doc/gettext/examples/hello-gawk/po/ms.po", + "share/doc/gettext/examples/hello-gawk/po/mt.po", + "share/doc/gettext/examples/hello-gawk/po/nb.po", + "share/doc/gettext/examples/hello-gawk/po/nl.po", + "share/doc/gettext/examples/hello-gawk/po/nn.po", + "share/doc/gettext/examples/hello-gawk/po/pl.po", + "share/doc/gettext/examples/hello-gawk/po/pt.po", + "share/doc/gettext/examples/hello-gawk/po/pt_BR.po", + "share/doc/gettext/examples/hello-gawk/po/ro.po", + "share/doc/gettext/examples/hello-gawk/po/ru.po", + "share/doc/gettext/examples/hello-gawk/po/sk.po", + "share/doc/gettext/examples/hello-gawk/po/sl.po", + "share/doc/gettext/examples/hello-gawk/po/sq.po", + "share/doc/gettext/examples/hello-gawk/po/sr.po", + "share/doc/gettext/examples/hello-gawk/po/sv.po", + "share/doc/gettext/examples/hello-gawk/po/ta.po", + "share/doc/gettext/examples/hello-gawk/po/tr.po", + "share/doc/gettext/examples/hello-gawk/po/uk.po", + "share/doc/gettext/examples/hello-gawk/po/vi.po", + "share/doc/gettext/examples/hello-gawk/po/zh_CN.po", + "share/doc/gettext/examples/hello-gawk/po/zh_HK.po", + "share/doc/gettext/examples/hello-gawk/po/zh_TW.po", + "share/doc/gettext/examples/hello-go-http/INSTALL", + "share/doc/gettext/examples/hello-go-http/Makefile.am", + "share/doc/gettext/examples/hello-go-http/autoclean.sh", + "share/doc/gettext/examples/hello-go-http/autogen.sh", + "share/doc/gettext/examples/hello-go-http/configure.ac", + "share/doc/gettext/examples/hello-go-http/example1/Makefile.am", + "share/doc/gettext/examples/hello-go-http/example1/go.mod.in", + "share/doc/gettext/examples/hello-go-http/example1/hello1ml.go.in", + "share/doc/gettext/examples/hello-go-http/m4/Makefile.am", + "share/doc/gettext/examples/hello-go-http/po/LINGUAS", + "share/doc/gettext/examples/hello-go-http/po/Makefile.am", + "share/doc/gettext/examples/hello-go-http/po/af.po", + "share/doc/gettext/examples/hello-go-http/po/ast.po", + "share/doc/gettext/examples/hello-go-http/po/bg.po", + "share/doc/gettext/examples/hello-go-http/po/ca.po", + "share/doc/gettext/examples/hello-go-http/po/cs.po", + "share/doc/gettext/examples/hello-go-http/po/da.po", + "share/doc/gettext/examples/hello-go-http/po/de.po", + "share/doc/gettext/examples/hello-go-http/po/el.po", + "share/doc/gettext/examples/hello-go-http/po/eo.po", + "share/doc/gettext/examples/hello-go-http/po/es.po", + "share/doc/gettext/examples/hello-go-http/po/fi.po", + "share/doc/gettext/examples/hello-go-http/po/fr.po", + "share/doc/gettext/examples/hello-go-http/po/ga.po", + "share/doc/gettext/examples/hello-go-http/po/gl.po", + "share/doc/gettext/examples/hello-go-http/po/hr.po", + "share/doc/gettext/examples/hello-go-http/po/hu.po", + "share/doc/gettext/examples/hello-go-http/po/id.po", + "share/doc/gettext/examples/hello-go-http/po/it.po", + "share/doc/gettext/examples/hello-go-http/po/ja.po", + "share/doc/gettext/examples/hello-go-http/po/ka.po", + "share/doc/gettext/examples/hello-go-http/po/ky.po", + "share/doc/gettext/examples/hello-go-http/po/lv.po", + "share/doc/gettext/examples/hello-go-http/po/ms.po", + "share/doc/gettext/examples/hello-go-http/po/mt.po", + "share/doc/gettext/examples/hello-go-http/po/nb.po", + "share/doc/gettext/examples/hello-go-http/po/nl.po", + "share/doc/gettext/examples/hello-go-http/po/nn.po", + "share/doc/gettext/examples/hello-go-http/po/pl.po", + "share/doc/gettext/examples/hello-go-http/po/pt.po", + "share/doc/gettext/examples/hello-go-http/po/pt_BR.po", + "share/doc/gettext/examples/hello-go-http/po/ro.po", + "share/doc/gettext/examples/hello-go-http/po/ru.po", + "share/doc/gettext/examples/hello-go-http/po/sk.po", + "share/doc/gettext/examples/hello-go-http/po/sl.po", + "share/doc/gettext/examples/hello-go-http/po/sq.po", + "share/doc/gettext/examples/hello-go-http/po/sr.po", + "share/doc/gettext/examples/hello-go-http/po/sv.po", + "share/doc/gettext/examples/hello-go-http/po/ta.po", + "share/doc/gettext/examples/hello-go-http/po/tr.po", + "share/doc/gettext/examples/hello-go-http/po/uk.po", + "share/doc/gettext/examples/hello-go-http/po/vi.po", + "share/doc/gettext/examples/hello-go-http/po/zh_CN.po", + "share/doc/gettext/examples/hello-go-http/po/zh_HK.po", + "share/doc/gettext/examples/hello-go-http/po/zh_TW.po", + "share/doc/gettext/examples/hello-go/INSTALL", + "share/doc/gettext/examples/hello-go/Makefile.am", + "share/doc/gettext/examples/hello-go/autoclean.sh", + "share/doc/gettext/examples/hello-go/autogen.sh", + "share/doc/gettext/examples/hello-go/configure.ac", + "share/doc/gettext/examples/hello-go/example1/Makefile.am", + "share/doc/gettext/examples/hello-go/example1/go.mod.in", + "share/doc/gettext/examples/hello-go/example1/hello1ml.go.in", + "share/doc/gettext/examples/hello-go/example1/hello1sl.go.in", + "share/doc/gettext/examples/hello-go/example2/Makefile.am", + "share/doc/gettext/examples/hello-go/example2/go.mod.in", + "share/doc/gettext/examples/hello-go/example2/hello2sl.go.in", + "share/doc/gettext/examples/hello-go/example3/Makefile.am", + "share/doc/gettext/examples/hello-go/example3/go.mod.in", + "share/doc/gettext/examples/hello-go/example3/hello3ml.go.in", + "share/doc/gettext/examples/hello-go/m4/Makefile.am", + "share/doc/gettext/examples/hello-go/po/LINGUAS", + "share/doc/gettext/examples/hello-go/po/Makefile.am", + "share/doc/gettext/examples/hello-go/po/af.po", + "share/doc/gettext/examples/hello-go/po/ast.po", + "share/doc/gettext/examples/hello-go/po/bg.po", + "share/doc/gettext/examples/hello-go/po/ca.po", + "share/doc/gettext/examples/hello-go/po/cs.po", + "share/doc/gettext/examples/hello-go/po/da.po", + "share/doc/gettext/examples/hello-go/po/de.po", + "share/doc/gettext/examples/hello-go/po/el.po", + "share/doc/gettext/examples/hello-go/po/eo.po", + "share/doc/gettext/examples/hello-go/po/es.po", + "share/doc/gettext/examples/hello-go/po/fi.po", + "share/doc/gettext/examples/hello-go/po/fr.po", + "share/doc/gettext/examples/hello-go/po/ga.po", + "share/doc/gettext/examples/hello-go/po/gl.po", + "share/doc/gettext/examples/hello-go/po/hr.po", + "share/doc/gettext/examples/hello-go/po/hu.po", + "share/doc/gettext/examples/hello-go/po/id.po", + "share/doc/gettext/examples/hello-go/po/it.po", + "share/doc/gettext/examples/hello-go/po/ja.po", + "share/doc/gettext/examples/hello-go/po/ka.po", + "share/doc/gettext/examples/hello-go/po/ky.po", + "share/doc/gettext/examples/hello-go/po/lv.po", + "share/doc/gettext/examples/hello-go/po/ms.po", + "share/doc/gettext/examples/hello-go/po/mt.po", + "share/doc/gettext/examples/hello-go/po/nb.po", + "share/doc/gettext/examples/hello-go/po/nl.po", + "share/doc/gettext/examples/hello-go/po/nn.po", + "share/doc/gettext/examples/hello-go/po/pl.po", + "share/doc/gettext/examples/hello-go/po/pt.po", + "share/doc/gettext/examples/hello-go/po/pt_BR.po", + "share/doc/gettext/examples/hello-go/po/ro.po", + "share/doc/gettext/examples/hello-go/po/ru.po", + "share/doc/gettext/examples/hello-go/po/sk.po", + "share/doc/gettext/examples/hello-go/po/sl.po", + "share/doc/gettext/examples/hello-go/po/sq.po", + "share/doc/gettext/examples/hello-go/po/sr.po", + "share/doc/gettext/examples/hello-go/po/sv.po", + "share/doc/gettext/examples/hello-go/po/ta.po", + "share/doc/gettext/examples/hello-go/po/tr.po", + "share/doc/gettext/examples/hello-go/po/uk.po", + "share/doc/gettext/examples/hello-go/po/vi.po", + "share/doc/gettext/examples/hello-go/po/zh_CN.po", + "share/doc/gettext/examples/hello-go/po/zh_HK.po", + "share/doc/gettext/examples/hello-go/po/zh_TW.po", + "share/doc/gettext/examples/hello-guile/INSTALL", + "share/doc/gettext/examples/hello-guile/Makefile.am", + "share/doc/gettext/examples/hello-guile/autoclean.sh", + "share/doc/gettext/examples/hello-guile/autogen.sh", + "share/doc/gettext/examples/hello-guile/configure.ac", + "share/doc/gettext/examples/hello-guile/hello.scm", + "share/doc/gettext/examples/hello-guile/m4/Makefile.am", + "share/doc/gettext/examples/hello-guile/po/LINGUAS", + "share/doc/gettext/examples/hello-guile/po/Makefile.am", + "share/doc/gettext/examples/hello-guile/po/af.po", + "share/doc/gettext/examples/hello-guile/po/ast.po", + "share/doc/gettext/examples/hello-guile/po/bg.po", + "share/doc/gettext/examples/hello-guile/po/ca.po", + "share/doc/gettext/examples/hello-guile/po/cs.po", + "share/doc/gettext/examples/hello-guile/po/da.po", + "share/doc/gettext/examples/hello-guile/po/de.po", + "share/doc/gettext/examples/hello-guile/po/el.po", + "share/doc/gettext/examples/hello-guile/po/eo.po", + "share/doc/gettext/examples/hello-guile/po/es.po", + "share/doc/gettext/examples/hello-guile/po/fi.po", + "share/doc/gettext/examples/hello-guile/po/fr.po", + "share/doc/gettext/examples/hello-guile/po/ga.po", + "share/doc/gettext/examples/hello-guile/po/gl.po", + "share/doc/gettext/examples/hello-guile/po/hr.po", + "share/doc/gettext/examples/hello-guile/po/hu.po", + "share/doc/gettext/examples/hello-guile/po/id.po", + "share/doc/gettext/examples/hello-guile/po/it.po", + "share/doc/gettext/examples/hello-guile/po/ja.po", + "share/doc/gettext/examples/hello-guile/po/ka.po", + "share/doc/gettext/examples/hello-guile/po/ky.po", + "share/doc/gettext/examples/hello-guile/po/lv.po", + "share/doc/gettext/examples/hello-guile/po/ms.po", + "share/doc/gettext/examples/hello-guile/po/mt.po", + "share/doc/gettext/examples/hello-guile/po/nb.po", + "share/doc/gettext/examples/hello-guile/po/nl.po", + "share/doc/gettext/examples/hello-guile/po/nn.po", + "share/doc/gettext/examples/hello-guile/po/pl.po", + "share/doc/gettext/examples/hello-guile/po/pt.po", + "share/doc/gettext/examples/hello-guile/po/pt_BR.po", + "share/doc/gettext/examples/hello-guile/po/ro.po", + "share/doc/gettext/examples/hello-guile/po/ru.po", + "share/doc/gettext/examples/hello-guile/po/sk.po", + "share/doc/gettext/examples/hello-guile/po/sl.po", + "share/doc/gettext/examples/hello-guile/po/sq.po", + "share/doc/gettext/examples/hello-guile/po/sr.po", + "share/doc/gettext/examples/hello-guile/po/sv.po", + "share/doc/gettext/examples/hello-guile/po/ta.po", + "share/doc/gettext/examples/hello-guile/po/tr.po", + "share/doc/gettext/examples/hello-guile/po/uk.po", + "share/doc/gettext/examples/hello-guile/po/vi.po", + "share/doc/gettext/examples/hello-guile/po/zh_CN.po", + "share/doc/gettext/examples/hello-guile/po/zh_HK.po", + "share/doc/gettext/examples/hello-guile/po/zh_TW.po", + "share/doc/gettext/examples/hello-java-awt/BUGS", + "share/doc/gettext/examples/hello-java-awt/Hello.java", + "share/doc/gettext/examples/hello-java-awt/INSTALL", + "share/doc/gettext/examples/hello-java-awt/Makefile.am", + "share/doc/gettext/examples/hello-java-awt/autoclean.sh", + "share/doc/gettext/examples/hello-java-awt/autogen.sh", + "share/doc/gettext/examples/hello-java-awt/configure.ac", + "share/doc/gettext/examples/hello-java-awt/m4/Makefile.am", + "share/doc/gettext/examples/hello-java-awt/m4/TestAWT.class", + "share/doc/gettext/examples/hello-java-awt/m4/TestAWT.java", + "share/doc/gettext/examples/hello-java-awt/po/LINGUAS", + "share/doc/gettext/examples/hello-java-awt/po/Makefile.am", + "share/doc/gettext/examples/hello-java-awt/po/af.po", + "share/doc/gettext/examples/hello-java-awt/po/ast.po", + "share/doc/gettext/examples/hello-java-awt/po/bg.po", + "share/doc/gettext/examples/hello-java-awt/po/ca.po", + "share/doc/gettext/examples/hello-java-awt/po/cs.po", + "share/doc/gettext/examples/hello-java-awt/po/da.po", + "share/doc/gettext/examples/hello-java-awt/po/de.po", + "share/doc/gettext/examples/hello-java-awt/po/el.po", + "share/doc/gettext/examples/hello-java-awt/po/eo.po", + "share/doc/gettext/examples/hello-java-awt/po/es.po", + "share/doc/gettext/examples/hello-java-awt/po/fi.po", + "share/doc/gettext/examples/hello-java-awt/po/fr.po", + "share/doc/gettext/examples/hello-java-awt/po/ga.po", + "share/doc/gettext/examples/hello-java-awt/po/gl.po", + "share/doc/gettext/examples/hello-java-awt/po/hr.po", + "share/doc/gettext/examples/hello-java-awt/po/hu.po", + "share/doc/gettext/examples/hello-java-awt/po/id.po", + "share/doc/gettext/examples/hello-java-awt/po/it.po", + "share/doc/gettext/examples/hello-java-awt/po/ja.po", + "share/doc/gettext/examples/hello-java-awt/po/ka.po", + "share/doc/gettext/examples/hello-java-awt/po/ky.po", + "share/doc/gettext/examples/hello-java-awt/po/lv.po", + "share/doc/gettext/examples/hello-java-awt/po/ms.po", + "share/doc/gettext/examples/hello-java-awt/po/mt.po", + "share/doc/gettext/examples/hello-java-awt/po/nb.po", + "share/doc/gettext/examples/hello-java-awt/po/nl.po", + "share/doc/gettext/examples/hello-java-awt/po/nn.po", + "share/doc/gettext/examples/hello-java-awt/po/pl.po", + "share/doc/gettext/examples/hello-java-awt/po/pt.po", + "share/doc/gettext/examples/hello-java-awt/po/pt_BR.po", + "share/doc/gettext/examples/hello-java-awt/po/ro.po", + "share/doc/gettext/examples/hello-java-awt/po/ru.po", + "share/doc/gettext/examples/hello-java-awt/po/sk.po", + "share/doc/gettext/examples/hello-java-awt/po/sl.po", + "share/doc/gettext/examples/hello-java-awt/po/sq.po", + "share/doc/gettext/examples/hello-java-awt/po/sr.po", + "share/doc/gettext/examples/hello-java-awt/po/sv.po", + "share/doc/gettext/examples/hello-java-awt/po/ta.po", + "share/doc/gettext/examples/hello-java-awt/po/tr.po", + "share/doc/gettext/examples/hello-java-awt/po/uk.po", + "share/doc/gettext/examples/hello-java-awt/po/vi.po", + "share/doc/gettext/examples/hello-java-awt/po/zh_CN.po", + "share/doc/gettext/examples/hello-java-awt/po/zh_HK.po", + "share/doc/gettext/examples/hello-java-awt/po/zh_TW.po", + "share/doc/gettext/examples/hello-java-qtjambi/BUGS", + "share/doc/gettext/examples/hello-java-qtjambi/Hello.java", + "share/doc/gettext/examples/hello-java-qtjambi/INSTALL", + "share/doc/gettext/examples/hello-java-qtjambi/Makefile.am", + "share/doc/gettext/examples/hello-java-qtjambi/autoclean.sh", + "share/doc/gettext/examples/hello-java-qtjambi/autogen.sh", + "share/doc/gettext/examples/hello-java-qtjambi/configure.ac", + "share/doc/gettext/examples/hello-java-qtjambi/m4/Makefile.am", + "share/doc/gettext/examples/hello-java-qtjambi/m4/Test15.class", + "share/doc/gettext/examples/hello-java-qtjambi/m4/Test15.java", + "share/doc/gettext/examples/hello-java-qtjambi/po/LINGUAS", + "share/doc/gettext/examples/hello-java-qtjambi/po/Makefile.am", + "share/doc/gettext/examples/hello-java-qtjambi/po/af.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/ast.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/bg.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/ca.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/cs.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/da.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/de.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/el.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/eo.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/es.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/fi.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/fr.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/ga.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/gl.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/hr.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/hu.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/id.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/it.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/ja.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/ka.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/ky.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/lv.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/ms.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/mt.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/nb.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/nl.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/nn.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/pl.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/pt.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/pt_BR.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/ro.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/ru.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/sk.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/sl.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/sq.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/sr.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/sv.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/ta.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/tr.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/uk.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/vi.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/zh_CN.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/zh_HK.po", + "share/doc/gettext/examples/hello-java-qtjambi/po/zh_TW.po", + "share/doc/gettext/examples/hello-java-swing/BUGS", + "share/doc/gettext/examples/hello-java-swing/Hello.java", + "share/doc/gettext/examples/hello-java-swing/INSTALL", + "share/doc/gettext/examples/hello-java-swing/Makefile.am", + "share/doc/gettext/examples/hello-java-swing/autoclean.sh", + "share/doc/gettext/examples/hello-java-swing/autogen.sh", + "share/doc/gettext/examples/hello-java-swing/configure.ac", + "share/doc/gettext/examples/hello-java-swing/m4/Makefile.am", + "share/doc/gettext/examples/hello-java-swing/m4/TestAWT.class", + "share/doc/gettext/examples/hello-java-swing/m4/TestAWT.java", + "share/doc/gettext/examples/hello-java-swing/po/LINGUAS", + "share/doc/gettext/examples/hello-java-swing/po/Makefile.am", + "share/doc/gettext/examples/hello-java-swing/po/af.po", + "share/doc/gettext/examples/hello-java-swing/po/ast.po", + "share/doc/gettext/examples/hello-java-swing/po/bg.po", + "share/doc/gettext/examples/hello-java-swing/po/ca.po", + "share/doc/gettext/examples/hello-java-swing/po/cs.po", + "share/doc/gettext/examples/hello-java-swing/po/da.po", + "share/doc/gettext/examples/hello-java-swing/po/de.po", + "share/doc/gettext/examples/hello-java-swing/po/el.po", + "share/doc/gettext/examples/hello-java-swing/po/eo.po", + "share/doc/gettext/examples/hello-java-swing/po/es.po", + "share/doc/gettext/examples/hello-java-swing/po/fi.po", + "share/doc/gettext/examples/hello-java-swing/po/fr.po", + "share/doc/gettext/examples/hello-java-swing/po/ga.po", + "share/doc/gettext/examples/hello-java-swing/po/gl.po", + "share/doc/gettext/examples/hello-java-swing/po/hr.po", + "share/doc/gettext/examples/hello-java-swing/po/hu.po", + "share/doc/gettext/examples/hello-java-swing/po/id.po", + "share/doc/gettext/examples/hello-java-swing/po/it.po", + "share/doc/gettext/examples/hello-java-swing/po/ja.po", + "share/doc/gettext/examples/hello-java-swing/po/ka.po", + "share/doc/gettext/examples/hello-java-swing/po/ky.po", + "share/doc/gettext/examples/hello-java-swing/po/lv.po", + "share/doc/gettext/examples/hello-java-swing/po/ms.po", + "share/doc/gettext/examples/hello-java-swing/po/mt.po", + "share/doc/gettext/examples/hello-java-swing/po/nb.po", + "share/doc/gettext/examples/hello-java-swing/po/nl.po", + "share/doc/gettext/examples/hello-java-swing/po/nn.po", + "share/doc/gettext/examples/hello-java-swing/po/pl.po", + "share/doc/gettext/examples/hello-java-swing/po/pt.po", + "share/doc/gettext/examples/hello-java-swing/po/pt_BR.po", + "share/doc/gettext/examples/hello-java-swing/po/ro.po", + "share/doc/gettext/examples/hello-java-swing/po/ru.po", + "share/doc/gettext/examples/hello-java-swing/po/sk.po", + "share/doc/gettext/examples/hello-java-swing/po/sl.po", + "share/doc/gettext/examples/hello-java-swing/po/sq.po", + "share/doc/gettext/examples/hello-java-swing/po/sr.po", + "share/doc/gettext/examples/hello-java-swing/po/sv.po", + "share/doc/gettext/examples/hello-java-swing/po/ta.po", + "share/doc/gettext/examples/hello-java-swing/po/tr.po", + "share/doc/gettext/examples/hello-java-swing/po/uk.po", + "share/doc/gettext/examples/hello-java-swing/po/vi.po", + "share/doc/gettext/examples/hello-java-swing/po/zh_CN.po", + "share/doc/gettext/examples/hello-java-swing/po/zh_HK.po", + "share/doc/gettext/examples/hello-java-swing/po/zh_TW.po", + "share/doc/gettext/examples/hello-java/Hello.java", + "share/doc/gettext/examples/hello-java/INSTALL", + "share/doc/gettext/examples/hello-java/Makefile.am", + "share/doc/gettext/examples/hello-java/autoclean.sh", + "share/doc/gettext/examples/hello-java/autogen.sh", + "share/doc/gettext/examples/hello-java/configure.ac", + "share/doc/gettext/examples/hello-java/m4/Makefile.am", + "share/doc/gettext/examples/hello-java/po/LINGUAS", + "share/doc/gettext/examples/hello-java/po/Makefile.am", + "share/doc/gettext/examples/hello-java/po/af.po", + "share/doc/gettext/examples/hello-java/po/ast.po", + "share/doc/gettext/examples/hello-java/po/bg.po", + "share/doc/gettext/examples/hello-java/po/ca.po", + "share/doc/gettext/examples/hello-java/po/cs.po", + "share/doc/gettext/examples/hello-java/po/da.po", + "share/doc/gettext/examples/hello-java/po/de.po", + "share/doc/gettext/examples/hello-java/po/el.po", + "share/doc/gettext/examples/hello-java/po/eo.po", + "share/doc/gettext/examples/hello-java/po/es.po", + "share/doc/gettext/examples/hello-java/po/fi.po", + "share/doc/gettext/examples/hello-java/po/fr.po", + "share/doc/gettext/examples/hello-java/po/ga.po", + "share/doc/gettext/examples/hello-java/po/gl.po", + "share/doc/gettext/examples/hello-java/po/hr.po", + "share/doc/gettext/examples/hello-java/po/hu.po", + "share/doc/gettext/examples/hello-java/po/id.po", + "share/doc/gettext/examples/hello-java/po/it.po", + "share/doc/gettext/examples/hello-java/po/ja.po", + "share/doc/gettext/examples/hello-java/po/ka.po", + "share/doc/gettext/examples/hello-java/po/ky.po", + "share/doc/gettext/examples/hello-java/po/lv.po", + "share/doc/gettext/examples/hello-java/po/ms.po", + "share/doc/gettext/examples/hello-java/po/mt.po", + "share/doc/gettext/examples/hello-java/po/nb.po", + "share/doc/gettext/examples/hello-java/po/nl.po", + "share/doc/gettext/examples/hello-java/po/nn.po", + "share/doc/gettext/examples/hello-java/po/pl.po", + "share/doc/gettext/examples/hello-java/po/pt.po", + "share/doc/gettext/examples/hello-java/po/pt_BR.po", + "share/doc/gettext/examples/hello-java/po/ro.po", + "share/doc/gettext/examples/hello-java/po/ru.po", + "share/doc/gettext/examples/hello-java/po/sk.po", + "share/doc/gettext/examples/hello-java/po/sl.po", + "share/doc/gettext/examples/hello-java/po/sq.po", + "share/doc/gettext/examples/hello-java/po/sr.po", + "share/doc/gettext/examples/hello-java/po/sv.po", + "share/doc/gettext/examples/hello-java/po/ta.po", + "share/doc/gettext/examples/hello-java/po/tr.po", + "share/doc/gettext/examples/hello-java/po/uk.po", + "share/doc/gettext/examples/hello-java/po/vi.po", + "share/doc/gettext/examples/hello-java/po/zh_CN.po", + "share/doc/gettext/examples/hello-java/po/zh_HK.po", + "share/doc/gettext/examples/hello-java/po/zh_TW.po", + "share/doc/gettext/examples/hello-librep/INSTALL", + "share/doc/gettext/examples/hello-librep/Makefile.am", + "share/doc/gettext/examples/hello-librep/autoclean.sh", + "share/doc/gettext/examples/hello-librep/autogen.sh", + "share/doc/gettext/examples/hello-librep/configure.ac", + "share/doc/gettext/examples/hello-librep/hello.jl.in", + "share/doc/gettext/examples/hello-librep/m4/Makefile.am", + "share/doc/gettext/examples/hello-librep/po/LINGUAS", + "share/doc/gettext/examples/hello-librep/po/Makefile.am", + "share/doc/gettext/examples/hello-librep/po/af.po", + "share/doc/gettext/examples/hello-librep/po/ast.po", + "share/doc/gettext/examples/hello-librep/po/bg.po", + "share/doc/gettext/examples/hello-librep/po/ca.po", + "share/doc/gettext/examples/hello-librep/po/cs.po", + "share/doc/gettext/examples/hello-librep/po/da.po", + "share/doc/gettext/examples/hello-librep/po/de.po", + "share/doc/gettext/examples/hello-librep/po/el.po", + "share/doc/gettext/examples/hello-librep/po/eo.po", + "share/doc/gettext/examples/hello-librep/po/es.po", + "share/doc/gettext/examples/hello-librep/po/fi.po", + "share/doc/gettext/examples/hello-librep/po/fr.po", + "share/doc/gettext/examples/hello-librep/po/ga.po", + "share/doc/gettext/examples/hello-librep/po/gl.po", + "share/doc/gettext/examples/hello-librep/po/hr.po", + "share/doc/gettext/examples/hello-librep/po/hu.po", + "share/doc/gettext/examples/hello-librep/po/id.po", + "share/doc/gettext/examples/hello-librep/po/it.po", + "share/doc/gettext/examples/hello-librep/po/ja.po", + "share/doc/gettext/examples/hello-librep/po/ka.po", + "share/doc/gettext/examples/hello-librep/po/ky.po", + "share/doc/gettext/examples/hello-librep/po/lv.po", + "share/doc/gettext/examples/hello-librep/po/ms.po", + "share/doc/gettext/examples/hello-librep/po/mt.po", + "share/doc/gettext/examples/hello-librep/po/nb.po", + "share/doc/gettext/examples/hello-librep/po/nl.po", + "share/doc/gettext/examples/hello-librep/po/nn.po", + "share/doc/gettext/examples/hello-librep/po/pl.po", + "share/doc/gettext/examples/hello-librep/po/pt.po", + "share/doc/gettext/examples/hello-librep/po/pt_BR.po", + "share/doc/gettext/examples/hello-librep/po/ro.po", + "share/doc/gettext/examples/hello-librep/po/ru.po", + "share/doc/gettext/examples/hello-librep/po/sk.po", + "share/doc/gettext/examples/hello-librep/po/sl.po", + "share/doc/gettext/examples/hello-librep/po/sq.po", + "share/doc/gettext/examples/hello-librep/po/sr.po", + "share/doc/gettext/examples/hello-librep/po/sv.po", + "share/doc/gettext/examples/hello-librep/po/ta.po", + "share/doc/gettext/examples/hello-librep/po/tr.po", + "share/doc/gettext/examples/hello-librep/po/uk.po", + "share/doc/gettext/examples/hello-librep/po/vi.po", + "share/doc/gettext/examples/hello-librep/po/zh_CN.po", + "share/doc/gettext/examples/hello-librep/po/zh_HK.po", + "share/doc/gettext/examples/hello-librep/po/zh_TW.po", + "share/doc/gettext/examples/hello-modula2/INSTALL", + "share/doc/gettext/examples/hello-modula2/Makefile.am", + "share/doc/gettext/examples/hello-modula2/autoclean.sh", + "share/doc/gettext/examples/hello-modula2/autogen.sh", + "share/doc/gettext/examples/hello-modula2/configure.ac", + "share/doc/gettext/examples/hello-modula2/hello.mod.in", + "share/doc/gettext/examples/hello-modula2/m4/Makefile.am", + "share/doc/gettext/examples/hello-modula2/po/LINGUAS", + "share/doc/gettext/examples/hello-modula2/po/Makefile.am", + "share/doc/gettext/examples/hello-modula2/po/af.po", + "share/doc/gettext/examples/hello-modula2/po/ast.po", + "share/doc/gettext/examples/hello-modula2/po/bg.po", + "share/doc/gettext/examples/hello-modula2/po/ca.po", + "share/doc/gettext/examples/hello-modula2/po/cs.po", + "share/doc/gettext/examples/hello-modula2/po/da.po", + "share/doc/gettext/examples/hello-modula2/po/de.po", + "share/doc/gettext/examples/hello-modula2/po/el.po", + "share/doc/gettext/examples/hello-modula2/po/eo.po", + "share/doc/gettext/examples/hello-modula2/po/es.po", + "share/doc/gettext/examples/hello-modula2/po/fi.po", + "share/doc/gettext/examples/hello-modula2/po/fr.po", + "share/doc/gettext/examples/hello-modula2/po/ga.po", + "share/doc/gettext/examples/hello-modula2/po/gl.po", + "share/doc/gettext/examples/hello-modula2/po/hr.po", + "share/doc/gettext/examples/hello-modula2/po/hu.po", + "share/doc/gettext/examples/hello-modula2/po/id.po", + "share/doc/gettext/examples/hello-modula2/po/it.po", + "share/doc/gettext/examples/hello-modula2/po/ja.po", + "share/doc/gettext/examples/hello-modula2/po/ka.po", + "share/doc/gettext/examples/hello-modula2/po/ky.po", + "share/doc/gettext/examples/hello-modula2/po/lv.po", + "share/doc/gettext/examples/hello-modula2/po/ms.po", + "share/doc/gettext/examples/hello-modula2/po/mt.po", + "share/doc/gettext/examples/hello-modula2/po/nb.po", + "share/doc/gettext/examples/hello-modula2/po/nl.po", + "share/doc/gettext/examples/hello-modula2/po/nn.po", + "share/doc/gettext/examples/hello-modula2/po/pl.po", + "share/doc/gettext/examples/hello-modula2/po/pt.po", + "share/doc/gettext/examples/hello-modula2/po/pt_BR.po", + "share/doc/gettext/examples/hello-modula2/po/ro.po", + "share/doc/gettext/examples/hello-modula2/po/ru.po", + "share/doc/gettext/examples/hello-modula2/po/sk.po", + "share/doc/gettext/examples/hello-modula2/po/sl.po", + "share/doc/gettext/examples/hello-modula2/po/sq.po", + "share/doc/gettext/examples/hello-modula2/po/sr.po", + "share/doc/gettext/examples/hello-modula2/po/sv.po", + "share/doc/gettext/examples/hello-modula2/po/ta.po", + "share/doc/gettext/examples/hello-modula2/po/tr.po", + "share/doc/gettext/examples/hello-modula2/po/uk.po", + "share/doc/gettext/examples/hello-modula2/po/vi.po", + "share/doc/gettext/examples/hello-modula2/po/zh_CN.po", + "share/doc/gettext/examples/hello-modula2/po/zh_HK.po", + "share/doc/gettext/examples/hello-modula2/po/zh_TW.po", + "share/doc/gettext/examples/hello-objc-gnome2/INSTALL", + "share/doc/gettext/examples/hello-objc-gnome2/Makefile.am", + "share/doc/gettext/examples/hello-objc-gnome2/autoclean.sh", + "share/doc/gettext/examples/hello-objc-gnome2/autogen.sh", + "share/doc/gettext/examples/hello-objc-gnome2/configure.ac", + "share/doc/gettext/examples/hello-objc-gnome2/hello.m", + "share/doc/gettext/examples/hello-objc-gnome2/m4/Makefile.am", + "share/doc/gettext/examples/hello-objc-gnome2/m4/gnome-gnorba-check.m4", + "share/doc/gettext/examples/hello-objc-gnome2/m4/gnome-orbit-check.m4", + "share/doc/gettext/examples/hello-objc-gnome2/m4/gnome.m4", + "share/doc/gettext/examples/hello-objc-gnome2/po/LINGUAS", + "share/doc/gettext/examples/hello-objc-gnome2/po/Makevars", + "share/doc/gettext/examples/hello-objc-gnome2/po/POTFILES.in", + "share/doc/gettext/examples/hello-objc-gnome2/po/af.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/ast.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/bg.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/ca.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/cs.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/da.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/de.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/el.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/eo.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/es.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/fi.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/fr.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/ga.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/gl.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/hr.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/hu.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/id.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/it.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/ja.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/ka.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/ky.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/lv.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/ms.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/mt.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/nb.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/nl.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/nn.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/pl.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/pt.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/pt_BR.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/ro.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/ru.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/sk.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/sl.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/sq.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/sr.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/sv.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/ta.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/tr.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/uk.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/vi.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/zh_CN.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/zh_HK.po", + "share/doc/gettext/examples/hello-objc-gnome2/po/zh_TW.po", + "share/doc/gettext/examples/hello-objc-gnustep/AppController.h", + "share/doc/gettext/examples/hello-objc-gnustep/AppController.m", + "share/doc/gettext/examples/hello-objc-gnustep/BUGS", + "share/doc/gettext/examples/hello-objc-gnustep/GNUmakefile", + "share/doc/gettext/examples/hello-objc-gnustep/Hello.h", + "share/doc/gettext/examples/hello-objc-gnustep/Hello.m", + "share/doc/gettext/examples/hello-objc-gnustep/INSTALL", + "share/doc/gettext/examples/hello-objc-gnustep/autoclean.sh", + "share/doc/gettext/examples/hello-objc-gnustep/autogen.sh", + "share/doc/gettext/examples/hello-objc-gnustep/main.m", + "share/doc/gettext/examples/hello-objc-gnustep/po/GNUmakefile", + "share/doc/gettext/examples/hello-objc-gnustep/po/LINGUAS", + "share/doc/gettext/examples/hello-objc-gnustep/po/LocaleAliases", + "share/doc/gettext/examples/hello-objc-gnustep/po/af.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/ast.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/bg.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/ca.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/cs.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/da.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/de.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/el.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/eo.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/es.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/fi.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/fr.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/ga.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/gl.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/hr.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/hu.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/id.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/it.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/ja.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/ka.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/ky.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/lv.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/ms.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/mt.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/nb.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/nl.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/nn.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/pl.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/pt.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/pt_BR.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/ro.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/ru.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/sk.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/sl.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/sq.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/sr.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/sv.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/ta.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/tr.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/uk.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/vi.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/zh_CN.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/zh_HK.po", + "share/doc/gettext/examples/hello-objc-gnustep/po/zh_TW.po", + "share/doc/gettext/examples/hello-objc/INSTALL", + "share/doc/gettext/examples/hello-objc/Makefile.am", + "share/doc/gettext/examples/hello-objc/autoclean.sh", + "share/doc/gettext/examples/hello-objc/autogen.sh", + "share/doc/gettext/examples/hello-objc/configure.ac", + "share/doc/gettext/examples/hello-objc/hello.m", + "share/doc/gettext/examples/hello-objc/m4/Makefile.am", + "share/doc/gettext/examples/hello-objc/po/LINGUAS", + "share/doc/gettext/examples/hello-objc/po/Makevars", + "share/doc/gettext/examples/hello-objc/po/POTFILES.in", + "share/doc/gettext/examples/hello-objc/po/af.po", + "share/doc/gettext/examples/hello-objc/po/ast.po", + "share/doc/gettext/examples/hello-objc/po/bg.po", + "share/doc/gettext/examples/hello-objc/po/ca.po", + "share/doc/gettext/examples/hello-objc/po/cs.po", + "share/doc/gettext/examples/hello-objc/po/da.po", + "share/doc/gettext/examples/hello-objc/po/de.po", + "share/doc/gettext/examples/hello-objc/po/el.po", + "share/doc/gettext/examples/hello-objc/po/eo.po", + "share/doc/gettext/examples/hello-objc/po/es.po", + "share/doc/gettext/examples/hello-objc/po/fi.po", + "share/doc/gettext/examples/hello-objc/po/fr.po", + "share/doc/gettext/examples/hello-objc/po/ga.po", + "share/doc/gettext/examples/hello-objc/po/gl.po", + "share/doc/gettext/examples/hello-objc/po/hr.po", + "share/doc/gettext/examples/hello-objc/po/hu.po", + "share/doc/gettext/examples/hello-objc/po/id.po", + "share/doc/gettext/examples/hello-objc/po/it.po", + "share/doc/gettext/examples/hello-objc/po/ja.po", + "share/doc/gettext/examples/hello-objc/po/ka.po", + "share/doc/gettext/examples/hello-objc/po/ky.po", + "share/doc/gettext/examples/hello-objc/po/lv.po", + "share/doc/gettext/examples/hello-objc/po/ms.po", + "share/doc/gettext/examples/hello-objc/po/mt.po", + "share/doc/gettext/examples/hello-objc/po/nb.po", + "share/doc/gettext/examples/hello-objc/po/nl.po", + "share/doc/gettext/examples/hello-objc/po/nn.po", + "share/doc/gettext/examples/hello-objc/po/pl.po", + "share/doc/gettext/examples/hello-objc/po/pt.po", + "share/doc/gettext/examples/hello-objc/po/pt_BR.po", + "share/doc/gettext/examples/hello-objc/po/ro.po", + "share/doc/gettext/examples/hello-objc/po/ru.po", + "share/doc/gettext/examples/hello-objc/po/sk.po", + "share/doc/gettext/examples/hello-objc/po/sl.po", + "share/doc/gettext/examples/hello-objc/po/sq.po", + "share/doc/gettext/examples/hello-objc/po/sr.po", + "share/doc/gettext/examples/hello-objc/po/sv.po", + "share/doc/gettext/examples/hello-objc/po/ta.po", + "share/doc/gettext/examples/hello-objc/po/tr.po", + "share/doc/gettext/examples/hello-objc/po/uk.po", + "share/doc/gettext/examples/hello-objc/po/vi.po", + "share/doc/gettext/examples/hello-objc/po/zh_CN.po", + "share/doc/gettext/examples/hello-objc/po/zh_HK.po", + "share/doc/gettext/examples/hello-objc/po/zh_TW.po", + "share/doc/gettext/examples/hello-pascal/INSTALL", + "share/doc/gettext/examples/hello-pascal/Makefile.am", + "share/doc/gettext/examples/hello-pascal/autoclean.sh", + "share/doc/gettext/examples/hello-pascal/autogen.sh", + "share/doc/gettext/examples/hello-pascal/configure.ac", + "share/doc/gettext/examples/hello-pascal/hello.pas", + "share/doc/gettext/examples/hello-pascal/m4/Makefile.am", + "share/doc/gettext/examples/hello-pascal/po/LINGUAS", + "share/doc/gettext/examples/hello-pascal/po/Makefile.am", + "share/doc/gettext/examples/hello-pascal/po/af.po", + "share/doc/gettext/examples/hello-pascal/po/ast.po", + "share/doc/gettext/examples/hello-pascal/po/bg.po", + "share/doc/gettext/examples/hello-pascal/po/ca.po", + "share/doc/gettext/examples/hello-pascal/po/cs.po", + "share/doc/gettext/examples/hello-pascal/po/da.po", + "share/doc/gettext/examples/hello-pascal/po/de.po", + "share/doc/gettext/examples/hello-pascal/po/el.po", + "share/doc/gettext/examples/hello-pascal/po/eo.po", + "share/doc/gettext/examples/hello-pascal/po/es.po", + "share/doc/gettext/examples/hello-pascal/po/fi.po", + "share/doc/gettext/examples/hello-pascal/po/fr.po", + "share/doc/gettext/examples/hello-pascal/po/ga.po", + "share/doc/gettext/examples/hello-pascal/po/gl.po", + "share/doc/gettext/examples/hello-pascal/po/hr.po", + "share/doc/gettext/examples/hello-pascal/po/hu.po", + "share/doc/gettext/examples/hello-pascal/po/id.po", + "share/doc/gettext/examples/hello-pascal/po/it.po", + "share/doc/gettext/examples/hello-pascal/po/ja.po", + "share/doc/gettext/examples/hello-pascal/po/ka.po", + "share/doc/gettext/examples/hello-pascal/po/ky.po", + "share/doc/gettext/examples/hello-pascal/po/lv.po", + "share/doc/gettext/examples/hello-pascal/po/ms.po", + "share/doc/gettext/examples/hello-pascal/po/mt.po", + "share/doc/gettext/examples/hello-pascal/po/nb.po", + "share/doc/gettext/examples/hello-pascal/po/nl.po", + "share/doc/gettext/examples/hello-pascal/po/nn.po", + "share/doc/gettext/examples/hello-pascal/po/pl.po", + "share/doc/gettext/examples/hello-pascal/po/pt.po", + "share/doc/gettext/examples/hello-pascal/po/pt_BR.po", + "share/doc/gettext/examples/hello-pascal/po/ro.po", + "share/doc/gettext/examples/hello-pascal/po/ru.po", + "share/doc/gettext/examples/hello-pascal/po/sk.po", + "share/doc/gettext/examples/hello-pascal/po/sl.po", + "share/doc/gettext/examples/hello-pascal/po/sq.po", + "share/doc/gettext/examples/hello-pascal/po/sr.po", + "share/doc/gettext/examples/hello-pascal/po/sv.po", + "share/doc/gettext/examples/hello-pascal/po/ta.po", + "share/doc/gettext/examples/hello-pascal/po/tr.po", + "share/doc/gettext/examples/hello-pascal/po/uk.po", + "share/doc/gettext/examples/hello-pascal/po/vi.po", + "share/doc/gettext/examples/hello-pascal/po/zh_CN.po", + "share/doc/gettext/examples/hello-pascal/po/zh_HK.po", + "share/doc/gettext/examples/hello-pascal/po/zh_TW.po", + "share/doc/gettext/examples/hello-perl/INSTALL", + "share/doc/gettext/examples/hello-perl/Makefile.am", + "share/doc/gettext/examples/hello-perl/autoclean.sh", + "share/doc/gettext/examples/hello-perl/autogen.sh", + "share/doc/gettext/examples/hello-perl/configure.ac", + "share/doc/gettext/examples/hello-perl/hello-1.pl.in", + "share/doc/gettext/examples/hello-perl/hello-2.pl.in", + "share/doc/gettext/examples/hello-perl/m4/Makefile.am", + "share/doc/gettext/examples/hello-perl/po/LINGUAS", + "share/doc/gettext/examples/hello-perl/po/Makefile.am", + "share/doc/gettext/examples/hello-perl/po/af.po", + "share/doc/gettext/examples/hello-perl/po/ast.po", + "share/doc/gettext/examples/hello-perl/po/bg.po", + "share/doc/gettext/examples/hello-perl/po/ca.po", + "share/doc/gettext/examples/hello-perl/po/cs.po", + "share/doc/gettext/examples/hello-perl/po/da.po", + "share/doc/gettext/examples/hello-perl/po/de.po", + "share/doc/gettext/examples/hello-perl/po/el.po", + "share/doc/gettext/examples/hello-perl/po/eo.po", + "share/doc/gettext/examples/hello-perl/po/es.po", + "share/doc/gettext/examples/hello-perl/po/fi.po", + "share/doc/gettext/examples/hello-perl/po/fr.po", + "share/doc/gettext/examples/hello-perl/po/ga.po", + "share/doc/gettext/examples/hello-perl/po/gl.po", + "share/doc/gettext/examples/hello-perl/po/hr.po", + "share/doc/gettext/examples/hello-perl/po/hu.po", + "share/doc/gettext/examples/hello-perl/po/id.po", + "share/doc/gettext/examples/hello-perl/po/it.po", + "share/doc/gettext/examples/hello-perl/po/ja.po", + "share/doc/gettext/examples/hello-perl/po/ka.po", + "share/doc/gettext/examples/hello-perl/po/ky.po", + "share/doc/gettext/examples/hello-perl/po/lv.po", + "share/doc/gettext/examples/hello-perl/po/ms.po", + "share/doc/gettext/examples/hello-perl/po/mt.po", + "share/doc/gettext/examples/hello-perl/po/nb.po", + "share/doc/gettext/examples/hello-perl/po/nl.po", + "share/doc/gettext/examples/hello-perl/po/nn.po", + "share/doc/gettext/examples/hello-perl/po/pl.po", + "share/doc/gettext/examples/hello-perl/po/pt.po", + "share/doc/gettext/examples/hello-perl/po/pt_BR.po", + "share/doc/gettext/examples/hello-perl/po/ro.po", + "share/doc/gettext/examples/hello-perl/po/ru.po", + "share/doc/gettext/examples/hello-perl/po/sk.po", + "share/doc/gettext/examples/hello-perl/po/sl.po", + "share/doc/gettext/examples/hello-perl/po/sq.po", + "share/doc/gettext/examples/hello-perl/po/sr.po", + "share/doc/gettext/examples/hello-perl/po/sv.po", + "share/doc/gettext/examples/hello-perl/po/ta.po", + "share/doc/gettext/examples/hello-perl/po/tr.po", + "share/doc/gettext/examples/hello-perl/po/uk.po", + "share/doc/gettext/examples/hello-perl/po/vi.po", + "share/doc/gettext/examples/hello-perl/po/zh_CN.po", + "share/doc/gettext/examples/hello-perl/po/zh_HK.po", + "share/doc/gettext/examples/hello-perl/po/zh_TW.po", + "share/doc/gettext/examples/hello-php/INSTALL", + "share/doc/gettext/examples/hello-php/Makefile.am", + "share/doc/gettext/examples/hello-php/README", + "share/doc/gettext/examples/hello-php/autoclean.sh", + "share/doc/gettext/examples/hello-php/autogen.sh", + "share/doc/gettext/examples/hello-php/configure.ac", + "share/doc/gettext/examples/hello-php/hello.php", + "share/doc/gettext/examples/hello-php/m4/Makefile.am", + "share/doc/gettext/examples/hello-php/po/LINGUAS", + "share/doc/gettext/examples/hello-php/po/Makefile.am", + "share/doc/gettext/examples/hello-php/po/af.po", + "share/doc/gettext/examples/hello-php/po/ast.po", + "share/doc/gettext/examples/hello-php/po/bg.po", + "share/doc/gettext/examples/hello-php/po/ca.po", + "share/doc/gettext/examples/hello-php/po/cs.po", + "share/doc/gettext/examples/hello-php/po/da.po", + "share/doc/gettext/examples/hello-php/po/de.po", + "share/doc/gettext/examples/hello-php/po/el.po", + "share/doc/gettext/examples/hello-php/po/eo.po", + "share/doc/gettext/examples/hello-php/po/es.po", + "share/doc/gettext/examples/hello-php/po/fi.po", + "share/doc/gettext/examples/hello-php/po/fr.po", + "share/doc/gettext/examples/hello-php/po/ga.po", + "share/doc/gettext/examples/hello-php/po/gl.po", + "share/doc/gettext/examples/hello-php/po/hr.po", + "share/doc/gettext/examples/hello-php/po/hu.po", + "share/doc/gettext/examples/hello-php/po/id.po", + "share/doc/gettext/examples/hello-php/po/it.po", + "share/doc/gettext/examples/hello-php/po/ja.po", + "share/doc/gettext/examples/hello-php/po/ka.po", + "share/doc/gettext/examples/hello-php/po/ky.po", + "share/doc/gettext/examples/hello-php/po/lv.po", + "share/doc/gettext/examples/hello-php/po/ms.po", + "share/doc/gettext/examples/hello-php/po/mt.po", + "share/doc/gettext/examples/hello-php/po/nb.po", + "share/doc/gettext/examples/hello-php/po/nl.po", + "share/doc/gettext/examples/hello-php/po/nn.po", + "share/doc/gettext/examples/hello-php/po/pl.po", + "share/doc/gettext/examples/hello-php/po/pt.po", + "share/doc/gettext/examples/hello-php/po/pt_BR.po", + "share/doc/gettext/examples/hello-php/po/ro.po", + "share/doc/gettext/examples/hello-php/po/ru.po", + "share/doc/gettext/examples/hello-php/po/sk.po", + "share/doc/gettext/examples/hello-php/po/sl.po", + "share/doc/gettext/examples/hello-php/po/sq.po", + "share/doc/gettext/examples/hello-php/po/sr.po", + "share/doc/gettext/examples/hello-php/po/sv.po", + "share/doc/gettext/examples/hello-php/po/ta.po", + "share/doc/gettext/examples/hello-php/po/tr.po", + "share/doc/gettext/examples/hello-php/po/uk.po", + "share/doc/gettext/examples/hello-php/po/vi.po", + "share/doc/gettext/examples/hello-php/po/zh_CN.po", + "share/doc/gettext/examples/hello-php/po/zh_HK.po", + "share/doc/gettext/examples/hello-php/po/zh_TW.po", + "share/doc/gettext/examples/hello-python/INSTALL", + "share/doc/gettext/examples/hello-python/Makefile.am", + "share/doc/gettext/examples/hello-python/autoclean.sh", + "share/doc/gettext/examples/hello-python/autogen.sh", + "share/doc/gettext/examples/hello-python/configure.ac", + "share/doc/gettext/examples/hello-python/hello.py.in", + "share/doc/gettext/examples/hello-python/m4/Makefile.am", + "share/doc/gettext/examples/hello-python/po/LINGUAS", + "share/doc/gettext/examples/hello-python/po/Makefile.am", + "share/doc/gettext/examples/hello-python/po/af.po", + "share/doc/gettext/examples/hello-python/po/ast.po", + "share/doc/gettext/examples/hello-python/po/bg.po", + "share/doc/gettext/examples/hello-python/po/ca.po", + "share/doc/gettext/examples/hello-python/po/cs.po", + "share/doc/gettext/examples/hello-python/po/da.po", + "share/doc/gettext/examples/hello-python/po/de.po", + "share/doc/gettext/examples/hello-python/po/el.po", + "share/doc/gettext/examples/hello-python/po/eo.po", + "share/doc/gettext/examples/hello-python/po/es.po", + "share/doc/gettext/examples/hello-python/po/fi.po", + "share/doc/gettext/examples/hello-python/po/fr.po", + "share/doc/gettext/examples/hello-python/po/ga.po", + "share/doc/gettext/examples/hello-python/po/gl.po", + "share/doc/gettext/examples/hello-python/po/hr.po", + "share/doc/gettext/examples/hello-python/po/hu.po", + "share/doc/gettext/examples/hello-python/po/id.po", + "share/doc/gettext/examples/hello-python/po/it.po", + "share/doc/gettext/examples/hello-python/po/ja.po", + "share/doc/gettext/examples/hello-python/po/ka.po", + "share/doc/gettext/examples/hello-python/po/ky.po", + "share/doc/gettext/examples/hello-python/po/lv.po", + "share/doc/gettext/examples/hello-python/po/ms.po", + "share/doc/gettext/examples/hello-python/po/mt.po", + "share/doc/gettext/examples/hello-python/po/nb.po", + "share/doc/gettext/examples/hello-python/po/nl.po", + "share/doc/gettext/examples/hello-python/po/nn.po", + "share/doc/gettext/examples/hello-python/po/pl.po", + "share/doc/gettext/examples/hello-python/po/pt.po", + "share/doc/gettext/examples/hello-python/po/pt_BR.po", + "share/doc/gettext/examples/hello-python/po/ro.po", + "share/doc/gettext/examples/hello-python/po/ru.po", + "share/doc/gettext/examples/hello-python/po/sk.po", + "share/doc/gettext/examples/hello-python/po/sl.po", + "share/doc/gettext/examples/hello-python/po/sq.po", + "share/doc/gettext/examples/hello-python/po/sr.po", + "share/doc/gettext/examples/hello-python/po/sv.po", + "share/doc/gettext/examples/hello-python/po/ta.po", + "share/doc/gettext/examples/hello-python/po/tr.po", + "share/doc/gettext/examples/hello-python/po/uk.po", + "share/doc/gettext/examples/hello-python/po/vi.po", + "share/doc/gettext/examples/hello-python/po/zh_CN.po", + "share/doc/gettext/examples/hello-python/po/zh_HK.po", + "share/doc/gettext/examples/hello-python/po/zh_TW.po", + "share/doc/gettext/examples/hello-ruby/INSTALL", + "share/doc/gettext/examples/hello-ruby/Makefile.am", + "share/doc/gettext/examples/hello-ruby/autoclean.sh", + "share/doc/gettext/examples/hello-ruby/autogen.sh", + "share/doc/gettext/examples/hello-ruby/configure.ac", + "share/doc/gettext/examples/hello-ruby/hello.rb", + "share/doc/gettext/examples/hello-ruby/m4/Makefile.am", + "share/doc/gettext/examples/hello-ruby/po/LINGUAS", + "share/doc/gettext/examples/hello-ruby/po/Makefile.am", + "share/doc/gettext/examples/hello-ruby/po/af.po", + "share/doc/gettext/examples/hello-ruby/po/ast.po", + "share/doc/gettext/examples/hello-ruby/po/bg.po", + "share/doc/gettext/examples/hello-ruby/po/ca.po", + "share/doc/gettext/examples/hello-ruby/po/cs.po", + "share/doc/gettext/examples/hello-ruby/po/da.po", + "share/doc/gettext/examples/hello-ruby/po/de.po", + "share/doc/gettext/examples/hello-ruby/po/el.po", + "share/doc/gettext/examples/hello-ruby/po/eo.po", + "share/doc/gettext/examples/hello-ruby/po/es.po", + "share/doc/gettext/examples/hello-ruby/po/fi.po", + "share/doc/gettext/examples/hello-ruby/po/fr.po", + "share/doc/gettext/examples/hello-ruby/po/ga.po", + "share/doc/gettext/examples/hello-ruby/po/gl.po", + "share/doc/gettext/examples/hello-ruby/po/hr.po", + "share/doc/gettext/examples/hello-ruby/po/hu.po", + "share/doc/gettext/examples/hello-ruby/po/id.po", + "share/doc/gettext/examples/hello-ruby/po/it.po", + "share/doc/gettext/examples/hello-ruby/po/ja.po", + "share/doc/gettext/examples/hello-ruby/po/ka.po", + "share/doc/gettext/examples/hello-ruby/po/ky.po", + "share/doc/gettext/examples/hello-ruby/po/lv.po", + "share/doc/gettext/examples/hello-ruby/po/ms.po", + "share/doc/gettext/examples/hello-ruby/po/mt.po", + "share/doc/gettext/examples/hello-ruby/po/nb.po", + "share/doc/gettext/examples/hello-ruby/po/nl.po", + "share/doc/gettext/examples/hello-ruby/po/nn.po", + "share/doc/gettext/examples/hello-ruby/po/pl.po", + "share/doc/gettext/examples/hello-ruby/po/pt.po", + "share/doc/gettext/examples/hello-ruby/po/pt_BR.po", + "share/doc/gettext/examples/hello-ruby/po/ro.po", + "share/doc/gettext/examples/hello-ruby/po/ru.po", + "share/doc/gettext/examples/hello-ruby/po/sk.po", + "share/doc/gettext/examples/hello-ruby/po/sl.po", + "share/doc/gettext/examples/hello-ruby/po/sq.po", + "share/doc/gettext/examples/hello-ruby/po/sr.po", + "share/doc/gettext/examples/hello-ruby/po/sv.po", + "share/doc/gettext/examples/hello-ruby/po/ta.po", + "share/doc/gettext/examples/hello-ruby/po/tr.po", + "share/doc/gettext/examples/hello-ruby/po/uk.po", + "share/doc/gettext/examples/hello-ruby/po/vi.po", + "share/doc/gettext/examples/hello-ruby/po/zh_CN.po", + "share/doc/gettext/examples/hello-ruby/po/zh_HK.po", + "share/doc/gettext/examples/hello-ruby/po/zh_TW.po", + "share/doc/gettext/examples/hello-rust/Cargo.toml.in", + "share/doc/gettext/examples/hello-rust/INSTALL", + "share/doc/gettext/examples/hello-rust/Makefile.am", + "share/doc/gettext/examples/hello-rust/autoclean.sh", + "share/doc/gettext/examples/hello-rust/autogen.sh", + "share/doc/gettext/examples/hello-rust/configure.ac", + "share/doc/gettext/examples/hello-rust/m4/Makefile.am", + "share/doc/gettext/examples/hello-rust/po/LINGUAS", + "share/doc/gettext/examples/hello-rust/po/Makefile.am", + "share/doc/gettext/examples/hello-rust/po/af.po", + "share/doc/gettext/examples/hello-rust/po/ast.po", + "share/doc/gettext/examples/hello-rust/po/bg.po", + "share/doc/gettext/examples/hello-rust/po/ca.po", + "share/doc/gettext/examples/hello-rust/po/cs.po", + "share/doc/gettext/examples/hello-rust/po/da.po", + "share/doc/gettext/examples/hello-rust/po/de.po", + "share/doc/gettext/examples/hello-rust/po/el.po", + "share/doc/gettext/examples/hello-rust/po/eo.po", + "share/doc/gettext/examples/hello-rust/po/es.po", + "share/doc/gettext/examples/hello-rust/po/fi.po", + "share/doc/gettext/examples/hello-rust/po/fr.po", + "share/doc/gettext/examples/hello-rust/po/ga.po", + "share/doc/gettext/examples/hello-rust/po/gl.po", + "share/doc/gettext/examples/hello-rust/po/hr.po", + "share/doc/gettext/examples/hello-rust/po/hu.po", + "share/doc/gettext/examples/hello-rust/po/id.po", + "share/doc/gettext/examples/hello-rust/po/it.po", + "share/doc/gettext/examples/hello-rust/po/ja.po", + "share/doc/gettext/examples/hello-rust/po/ka.po", + "share/doc/gettext/examples/hello-rust/po/ky.po", + "share/doc/gettext/examples/hello-rust/po/lv.po", + "share/doc/gettext/examples/hello-rust/po/ms.po", + "share/doc/gettext/examples/hello-rust/po/mt.po", + "share/doc/gettext/examples/hello-rust/po/nb.po", + "share/doc/gettext/examples/hello-rust/po/nl.po", + "share/doc/gettext/examples/hello-rust/po/nn.po", + "share/doc/gettext/examples/hello-rust/po/pl.po", + "share/doc/gettext/examples/hello-rust/po/pt.po", + "share/doc/gettext/examples/hello-rust/po/pt_BR.po", + "share/doc/gettext/examples/hello-rust/po/ro.po", + "share/doc/gettext/examples/hello-rust/po/ru.po", + "share/doc/gettext/examples/hello-rust/po/sk.po", + "share/doc/gettext/examples/hello-rust/po/sl.po", + "share/doc/gettext/examples/hello-rust/po/sq.po", + "share/doc/gettext/examples/hello-rust/po/sr.po", + "share/doc/gettext/examples/hello-rust/po/sv.po", + "share/doc/gettext/examples/hello-rust/po/ta.po", + "share/doc/gettext/examples/hello-rust/po/tr.po", + "share/doc/gettext/examples/hello-rust/po/uk.po", + "share/doc/gettext/examples/hello-rust/po/vi.po", + "share/doc/gettext/examples/hello-rust/po/zh_CN.po", + "share/doc/gettext/examples/hello-rust/po/zh_HK.po", + "share/doc/gettext/examples/hello-rust/po/zh_TW.po", + "share/doc/gettext/examples/hello-rust/src/main.rs.in", + "share/doc/gettext/examples/hello-sh/INSTALL", + "share/doc/gettext/examples/hello-sh/Makefile.am", + "share/doc/gettext/examples/hello-sh/autoclean.sh", + "share/doc/gettext/examples/hello-sh/autogen.sh", + "share/doc/gettext/examples/hello-sh/configure.ac", + "share/doc/gettext/examples/hello-sh/hello.sh", + "share/doc/gettext/examples/hello-sh/m4/Makefile.am", + "share/doc/gettext/examples/hello-sh/po/LINGUAS", + "share/doc/gettext/examples/hello-sh/po/Makefile.am", + "share/doc/gettext/examples/hello-sh/po/af.po", + "share/doc/gettext/examples/hello-sh/po/ast.po", + "share/doc/gettext/examples/hello-sh/po/bg.po", + "share/doc/gettext/examples/hello-sh/po/ca.po", + "share/doc/gettext/examples/hello-sh/po/cs.po", + "share/doc/gettext/examples/hello-sh/po/da.po", + "share/doc/gettext/examples/hello-sh/po/de.po", + "share/doc/gettext/examples/hello-sh/po/el.po", + "share/doc/gettext/examples/hello-sh/po/eo.po", + "share/doc/gettext/examples/hello-sh/po/es.po", + "share/doc/gettext/examples/hello-sh/po/fi.po", + "share/doc/gettext/examples/hello-sh/po/fr.po", + "share/doc/gettext/examples/hello-sh/po/ga.po", + "share/doc/gettext/examples/hello-sh/po/gl.po", + "share/doc/gettext/examples/hello-sh/po/hr.po", + "share/doc/gettext/examples/hello-sh/po/hu.po", + "share/doc/gettext/examples/hello-sh/po/id.po", + "share/doc/gettext/examples/hello-sh/po/it.po", + "share/doc/gettext/examples/hello-sh/po/ja.po", + "share/doc/gettext/examples/hello-sh/po/ka.po", + "share/doc/gettext/examples/hello-sh/po/ky.po", + "share/doc/gettext/examples/hello-sh/po/lv.po", + "share/doc/gettext/examples/hello-sh/po/ms.po", + "share/doc/gettext/examples/hello-sh/po/mt.po", + "share/doc/gettext/examples/hello-sh/po/nb.po", + "share/doc/gettext/examples/hello-sh/po/nl.po", + "share/doc/gettext/examples/hello-sh/po/nn.po", + "share/doc/gettext/examples/hello-sh/po/pl.po", + "share/doc/gettext/examples/hello-sh/po/pt.po", + "share/doc/gettext/examples/hello-sh/po/pt_BR.po", + "share/doc/gettext/examples/hello-sh/po/ro.po", + "share/doc/gettext/examples/hello-sh/po/ru.po", + "share/doc/gettext/examples/hello-sh/po/sk.po", + "share/doc/gettext/examples/hello-sh/po/sl.po", + "share/doc/gettext/examples/hello-sh/po/sq.po", + "share/doc/gettext/examples/hello-sh/po/sr.po", + "share/doc/gettext/examples/hello-sh/po/sv.po", + "share/doc/gettext/examples/hello-sh/po/ta.po", + "share/doc/gettext/examples/hello-sh/po/tr.po", + "share/doc/gettext/examples/hello-sh/po/uk.po", + "share/doc/gettext/examples/hello-sh/po/vi.po", + "share/doc/gettext/examples/hello-sh/po/zh_CN.po", + "share/doc/gettext/examples/hello-sh/po/zh_HK.po", + "share/doc/gettext/examples/hello-sh/po/zh_TW.po", + "share/doc/gettext/examples/hello-smalltalk/INSTALL", + "share/doc/gettext/examples/hello-smalltalk/Makefile.am", + "share/doc/gettext/examples/hello-smalltalk/autoclean.sh", + "share/doc/gettext/examples/hello-smalltalk/autogen.sh", + "share/doc/gettext/examples/hello-smalltalk/configure.ac", + "share/doc/gettext/examples/hello-smalltalk/hello.st.in", + "share/doc/gettext/examples/hello-smalltalk/m4/Makefile.am", + "share/doc/gettext/examples/hello-smalltalk/po/LINGUAS", + "share/doc/gettext/examples/hello-smalltalk/po/Makefile.am", + "share/doc/gettext/examples/hello-smalltalk/po/af.po", + "share/doc/gettext/examples/hello-smalltalk/po/ast.po", + "share/doc/gettext/examples/hello-smalltalk/po/bg.po", + "share/doc/gettext/examples/hello-smalltalk/po/ca.po", + "share/doc/gettext/examples/hello-smalltalk/po/cs.po", + "share/doc/gettext/examples/hello-smalltalk/po/da.po", + "share/doc/gettext/examples/hello-smalltalk/po/de.po", + "share/doc/gettext/examples/hello-smalltalk/po/el.po", + "share/doc/gettext/examples/hello-smalltalk/po/eo.po", + "share/doc/gettext/examples/hello-smalltalk/po/es.po", + "share/doc/gettext/examples/hello-smalltalk/po/fi.po", + "share/doc/gettext/examples/hello-smalltalk/po/fr.po", + "share/doc/gettext/examples/hello-smalltalk/po/ga.po", + "share/doc/gettext/examples/hello-smalltalk/po/gl.po", + "share/doc/gettext/examples/hello-smalltalk/po/hr.po", + "share/doc/gettext/examples/hello-smalltalk/po/hu.po", + "share/doc/gettext/examples/hello-smalltalk/po/id.po", + "share/doc/gettext/examples/hello-smalltalk/po/it.po", + "share/doc/gettext/examples/hello-smalltalk/po/ja.po", + "share/doc/gettext/examples/hello-smalltalk/po/ka.po", + "share/doc/gettext/examples/hello-smalltalk/po/ky.po", + "share/doc/gettext/examples/hello-smalltalk/po/lv.po", + "share/doc/gettext/examples/hello-smalltalk/po/ms.po", + "share/doc/gettext/examples/hello-smalltalk/po/mt.po", + "share/doc/gettext/examples/hello-smalltalk/po/nb.po", + "share/doc/gettext/examples/hello-smalltalk/po/nl.po", + "share/doc/gettext/examples/hello-smalltalk/po/nn.po", + "share/doc/gettext/examples/hello-smalltalk/po/pl.po", + "share/doc/gettext/examples/hello-smalltalk/po/pt.po", + "share/doc/gettext/examples/hello-smalltalk/po/pt_BR.po", + "share/doc/gettext/examples/hello-smalltalk/po/ro.po", + "share/doc/gettext/examples/hello-smalltalk/po/ru.po", + "share/doc/gettext/examples/hello-smalltalk/po/sk.po", + "share/doc/gettext/examples/hello-smalltalk/po/sl.po", + "share/doc/gettext/examples/hello-smalltalk/po/sq.po", + "share/doc/gettext/examples/hello-smalltalk/po/sr.po", + "share/doc/gettext/examples/hello-smalltalk/po/sv.po", + "share/doc/gettext/examples/hello-smalltalk/po/ta.po", + "share/doc/gettext/examples/hello-smalltalk/po/tr.po", + "share/doc/gettext/examples/hello-smalltalk/po/uk.po", + "share/doc/gettext/examples/hello-smalltalk/po/vi.po", + "share/doc/gettext/examples/hello-smalltalk/po/zh_CN.po", + "share/doc/gettext/examples/hello-smalltalk/po/zh_HK.po", + "share/doc/gettext/examples/hello-smalltalk/po/zh_TW.po", + "share/doc/gettext/examples/hello-tcl-tk/INSTALL", + "share/doc/gettext/examples/hello-tcl-tk/Makefile.am", + "share/doc/gettext/examples/hello-tcl-tk/autoclean.sh", + "share/doc/gettext/examples/hello-tcl-tk/autogen.sh", + "share/doc/gettext/examples/hello-tcl-tk/configure.ac", + "share/doc/gettext/examples/hello-tcl-tk/hello.tcl", + "share/doc/gettext/examples/hello-tcl-tk/m4/Makefile.am", + "share/doc/gettext/examples/hello-tcl-tk/po/LINGUAS", + "share/doc/gettext/examples/hello-tcl-tk/po/Makefile.am", + "share/doc/gettext/examples/hello-tcl-tk/po/af.po", + "share/doc/gettext/examples/hello-tcl-tk/po/ast.po", + "share/doc/gettext/examples/hello-tcl-tk/po/bg.po", + "share/doc/gettext/examples/hello-tcl-tk/po/ca.po", + "share/doc/gettext/examples/hello-tcl-tk/po/cs.po", + "share/doc/gettext/examples/hello-tcl-tk/po/da.po", + "share/doc/gettext/examples/hello-tcl-tk/po/de.po", + "share/doc/gettext/examples/hello-tcl-tk/po/el.po", + "share/doc/gettext/examples/hello-tcl-tk/po/eo.po", + "share/doc/gettext/examples/hello-tcl-tk/po/es.po", + "share/doc/gettext/examples/hello-tcl-tk/po/fi.po", + "share/doc/gettext/examples/hello-tcl-tk/po/fr.po", + "share/doc/gettext/examples/hello-tcl-tk/po/ga.po", + "share/doc/gettext/examples/hello-tcl-tk/po/gl.po", + "share/doc/gettext/examples/hello-tcl-tk/po/hr.po", + "share/doc/gettext/examples/hello-tcl-tk/po/hu.po", + "share/doc/gettext/examples/hello-tcl-tk/po/id.po", + "share/doc/gettext/examples/hello-tcl-tk/po/it.po", + "share/doc/gettext/examples/hello-tcl-tk/po/ja.po", + "share/doc/gettext/examples/hello-tcl-tk/po/ka.po", + "share/doc/gettext/examples/hello-tcl-tk/po/ky.po", + "share/doc/gettext/examples/hello-tcl-tk/po/lv.po", + "share/doc/gettext/examples/hello-tcl-tk/po/ms.po", + "share/doc/gettext/examples/hello-tcl-tk/po/mt.po", + "share/doc/gettext/examples/hello-tcl-tk/po/nb.po", + "share/doc/gettext/examples/hello-tcl-tk/po/nl.po", + "share/doc/gettext/examples/hello-tcl-tk/po/nn.po", + "share/doc/gettext/examples/hello-tcl-tk/po/pl.po", + "share/doc/gettext/examples/hello-tcl-tk/po/pt.po", + "share/doc/gettext/examples/hello-tcl-tk/po/pt_BR.po", + "share/doc/gettext/examples/hello-tcl-tk/po/ro.po", + "share/doc/gettext/examples/hello-tcl-tk/po/ru.po", + "share/doc/gettext/examples/hello-tcl-tk/po/sk.po", + "share/doc/gettext/examples/hello-tcl-tk/po/sl.po", + "share/doc/gettext/examples/hello-tcl-tk/po/sq.po", + "share/doc/gettext/examples/hello-tcl-tk/po/sr.po", + "share/doc/gettext/examples/hello-tcl-tk/po/sv.po", + "share/doc/gettext/examples/hello-tcl-tk/po/ta.po", + "share/doc/gettext/examples/hello-tcl-tk/po/tr.po", + "share/doc/gettext/examples/hello-tcl-tk/po/uk.po", + "share/doc/gettext/examples/hello-tcl-tk/po/vi.po", + "share/doc/gettext/examples/hello-tcl-tk/po/zh_CN.po", + "share/doc/gettext/examples/hello-tcl-tk/po/zh_HK.po", + "share/doc/gettext/examples/hello-tcl-tk/po/zh_TW.po", + "share/doc/gettext/examples/hello-tcl/INSTALL", + "share/doc/gettext/examples/hello-tcl/Makefile.am", + "share/doc/gettext/examples/hello-tcl/autoclean.sh", + "share/doc/gettext/examples/hello-tcl/autogen.sh", + "share/doc/gettext/examples/hello-tcl/configure.ac", + "share/doc/gettext/examples/hello-tcl/hello.tcl", + "share/doc/gettext/examples/hello-tcl/m4/Makefile.am", + "share/doc/gettext/examples/hello-tcl/po/LINGUAS", + "share/doc/gettext/examples/hello-tcl/po/Makefile.am", + "share/doc/gettext/examples/hello-tcl/po/af.po", + "share/doc/gettext/examples/hello-tcl/po/ast.po", + "share/doc/gettext/examples/hello-tcl/po/bg.po", + "share/doc/gettext/examples/hello-tcl/po/ca.po", + "share/doc/gettext/examples/hello-tcl/po/cs.po", + "share/doc/gettext/examples/hello-tcl/po/da.po", + "share/doc/gettext/examples/hello-tcl/po/de.po", + "share/doc/gettext/examples/hello-tcl/po/el.po", + "share/doc/gettext/examples/hello-tcl/po/eo.po", + "share/doc/gettext/examples/hello-tcl/po/es.po", + "share/doc/gettext/examples/hello-tcl/po/fi.po", + "share/doc/gettext/examples/hello-tcl/po/fr.po", + "share/doc/gettext/examples/hello-tcl/po/ga.po", + "share/doc/gettext/examples/hello-tcl/po/gl.po", + "share/doc/gettext/examples/hello-tcl/po/hr.po", + "share/doc/gettext/examples/hello-tcl/po/hu.po", + "share/doc/gettext/examples/hello-tcl/po/id.po", + "share/doc/gettext/examples/hello-tcl/po/it.po", + "share/doc/gettext/examples/hello-tcl/po/ja.po", + "share/doc/gettext/examples/hello-tcl/po/ka.po", + "share/doc/gettext/examples/hello-tcl/po/ky.po", + "share/doc/gettext/examples/hello-tcl/po/lv.po", + "share/doc/gettext/examples/hello-tcl/po/ms.po", + "share/doc/gettext/examples/hello-tcl/po/mt.po", + "share/doc/gettext/examples/hello-tcl/po/nb.po", + "share/doc/gettext/examples/hello-tcl/po/nl.po", + "share/doc/gettext/examples/hello-tcl/po/nn.po", + "share/doc/gettext/examples/hello-tcl/po/pl.po", + "share/doc/gettext/examples/hello-tcl/po/pt.po", + "share/doc/gettext/examples/hello-tcl/po/pt_BR.po", + "share/doc/gettext/examples/hello-tcl/po/ro.po", + "share/doc/gettext/examples/hello-tcl/po/ru.po", + "share/doc/gettext/examples/hello-tcl/po/sk.po", + "share/doc/gettext/examples/hello-tcl/po/sl.po", + "share/doc/gettext/examples/hello-tcl/po/sq.po", + "share/doc/gettext/examples/hello-tcl/po/sr.po", + "share/doc/gettext/examples/hello-tcl/po/sv.po", + "share/doc/gettext/examples/hello-tcl/po/ta.po", + "share/doc/gettext/examples/hello-tcl/po/tr.po", + "share/doc/gettext/examples/hello-tcl/po/uk.po", + "share/doc/gettext/examples/hello-tcl/po/vi.po", + "share/doc/gettext/examples/hello-tcl/po/zh_CN.po", + "share/doc/gettext/examples/hello-tcl/po/zh_HK.po", + "share/doc/gettext/examples/hello-tcl/po/zh_TW.po", + "share/doc/gettext/examples/hello-ycp/INSTALL", + "share/doc/gettext/examples/hello-ycp/Makefile.am", + "share/doc/gettext/examples/hello-ycp/autoclean.sh", + "share/doc/gettext/examples/hello-ycp/autogen.sh", + "share/doc/gettext/examples/hello-ycp/configure.ac", + "share/doc/gettext/examples/hello-ycp/hello.ycp", + "share/doc/gettext/examples/hello-ycp/m4/Makefile.am", + "share/doc/gettext/examples/hello-ycp/po/LINGUAS", + "share/doc/gettext/examples/hello-ycp/po/Makefile.am", + "share/doc/gettext/examples/hello-ycp/po/af.po", + "share/doc/gettext/examples/hello-ycp/po/ast.po", + "share/doc/gettext/examples/hello-ycp/po/bg.po", + "share/doc/gettext/examples/hello-ycp/po/ca.po", + "share/doc/gettext/examples/hello-ycp/po/cs.po", + "share/doc/gettext/examples/hello-ycp/po/da.po", + "share/doc/gettext/examples/hello-ycp/po/de.po", + "share/doc/gettext/examples/hello-ycp/po/el.po", + "share/doc/gettext/examples/hello-ycp/po/eo.po", + "share/doc/gettext/examples/hello-ycp/po/es.po", + "share/doc/gettext/examples/hello-ycp/po/fi.po", + "share/doc/gettext/examples/hello-ycp/po/fr.po", + "share/doc/gettext/examples/hello-ycp/po/ga.po", + "share/doc/gettext/examples/hello-ycp/po/gl.po", + "share/doc/gettext/examples/hello-ycp/po/hr.po", + "share/doc/gettext/examples/hello-ycp/po/hu.po", + "share/doc/gettext/examples/hello-ycp/po/id.po", + "share/doc/gettext/examples/hello-ycp/po/it.po", + "share/doc/gettext/examples/hello-ycp/po/ja.po", + "share/doc/gettext/examples/hello-ycp/po/ka.po", + "share/doc/gettext/examples/hello-ycp/po/ky.po", + "share/doc/gettext/examples/hello-ycp/po/lv.po", + "share/doc/gettext/examples/hello-ycp/po/ms.po", + "share/doc/gettext/examples/hello-ycp/po/mt.po", + "share/doc/gettext/examples/hello-ycp/po/nb.po", + "share/doc/gettext/examples/hello-ycp/po/nl.po", + "share/doc/gettext/examples/hello-ycp/po/nn.po", + "share/doc/gettext/examples/hello-ycp/po/pl.po", + "share/doc/gettext/examples/hello-ycp/po/pt.po", + "share/doc/gettext/examples/hello-ycp/po/pt_BR.po", + "share/doc/gettext/examples/hello-ycp/po/ro.po", + "share/doc/gettext/examples/hello-ycp/po/ru.po", + "share/doc/gettext/examples/hello-ycp/po/sk.po", + "share/doc/gettext/examples/hello-ycp/po/sl.po", + "share/doc/gettext/examples/hello-ycp/po/sq.po", + "share/doc/gettext/examples/hello-ycp/po/sr.po", + "share/doc/gettext/examples/hello-ycp/po/sv.po", + "share/doc/gettext/examples/hello-ycp/po/ta.po", + "share/doc/gettext/examples/hello-ycp/po/tr.po", + "share/doc/gettext/examples/hello-ycp/po/uk.po", + "share/doc/gettext/examples/hello-ycp/po/vi.po", + "share/doc/gettext/examples/hello-ycp/po/zh_CN.po", + "share/doc/gettext/examples/hello-ycp/po/zh_HK.po", + "share/doc/gettext/examples/hello-ycp/po/zh_TW.po", + "share/doc/gettext/examples/installpaths", + "share/doc/gettext/javadoc2/allclasses-frame.html", + "share/doc/gettext/javadoc2/deprecated-list.html", + "share/doc/gettext/javadoc2/gnu/gettext/GettextResource.html", + "share/doc/gettext/javadoc2/gnu/gettext/package-frame.html", + "share/doc/gettext/javadoc2/gnu/gettext/package-summary.html", + "share/doc/gettext/javadoc2/gnu/gettext/package-tree.html", + "share/doc/gettext/javadoc2/help-doc.html", + "share/doc/gettext/javadoc2/index-all.html", + "share/doc/gettext/javadoc2/index.html", + "share/doc/gettext/javadoc2/overview-tree.html", + "share/doc/gettext/javadoc2/package-list", + "share/doc/gettext/javadoc2/packages.html", + "share/doc/gettext/javadoc2/serialized-form.html", + "share/doc/gettext/javadoc2/stylesheet.css", + "share/doc/libtextstyle/libtextstyle_1.html", + "share/doc/libtextstyle/libtextstyle_2.html", + "share/doc/libtextstyle/libtextstyle_3.html", + "share/doc/libtextstyle/libtextstyle_4.html", + "share/doc/libtextstyle/libtextstyle_5.html", + "share/doc/libtextstyle/libtextstyle_6.html", + "share/doc/libtextstyle/libtextstyle_7.html", + "share/doc/libtextstyle/libtextstyle_abt.html", + "share/doc/libtextstyle/libtextstyle_toc.html", + "share/gettext/projects/GNOME/team-address", + "share/gettext/projects/GNOME/teams.html", + "share/gettext/projects/GNOME/teams.url", + "share/gettext/projects/GNOME/trigger", + "share/gettext/projects/KDE/team-address", + "share/gettext/projects/KDE/teams.html", + "share/gettext/projects/KDE/teams.url", + "share/gettext/projects/KDE/trigger", + "share/gettext/projects/TP/team-address", + "share/gettext/projects/TP/teams.html", + "share/gettext/projects/TP/teams.url", + "share/gettext/projects/TP/trigger", + "share/gettext/projects/index", + "share/gettext/projects/team-address" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "share/doc/gettext/examples/installpaths", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "9bba09f907101ac42bbb97e9fff151d7512e94c57d2d4b7fd83627152f577eef", + "size_in_bytes": 1394, + "sha256_in_prefix": "27d6b9472dbd032fd288f020f78428279347db4c3633f94e8eb09b5ae0ddf539" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/gettext-0.25.1-h92eb808_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/gettext-tools-0.25.1-h6a67909_0.json b/miniconda3/conda-meta/gettext-tools-0.25.1-h6a67909_0.json new file mode 100644 index 0000000000000000000000000000000000000000..5f590fd5b80a00bf3296e0e522d4809572e601c6 --- /dev/null +++ b/miniconda3/conda-meta/gettext-tools-0.25.1-h6a67909_0.json @@ -0,0 +1,597 @@ +{ + "name": "gettext-tools", + "version": "0.25.1", + "build": "h6a67909_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "gettext-tools-0.25.1-h6a67909_0.conda", + "md5": "ac944526cc2d27ffa3c44a42cd86f46d", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/gettext-tools-0.25.1-h6a67909_0.conda", + "sha256": "040af24b30b7928def70ffc1fb0deb502156796993a26d95aeb3df90b92b755c", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "libgcc >=14", + "libiconv >=1.18,<2.0a0", + "ncurses >=6.5,<7.0a0" + ], + "constrains": [], + "license": "GPL-3.0-or-later", + "timestamp": 1772045279000, + "size": 3777431, + "requested_spec": "pkgs/main/linux-64::gettext-tools==0.25.1=h6a67909_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/gettext-tools-0.25.1-h6a67909_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/gettext-tools-0.25.1-h6a67909_0", + "files": [ + "bin/autopoint", + "bin/envsubst", + "bin/gettext", + "bin/gettext.sh", + "bin/gettextize", + "bin/msgattrib", + "bin/msgcat", + "bin/msgcmp", + "bin/msgcomm", + "bin/msgconv", + "bin/msgen", + "bin/msgexec", + "bin/msgfilter", + "bin/msgfmt", + "bin/msggrep", + "bin/msginit", + "bin/msgmerge", + "bin/msgunfmt", + "bin/msguniq", + "bin/ngettext", + "bin/recode-sr-latin", + "bin/xgettext", + "include/textstyle.h", + "include/textstyle/stdbool.h", + "include/textstyle/version.h", + "include/textstyle/woe32dll.h", + "lib/libgettextlib-0.25.1.so", + "lib/libgettextlib.so", + "lib/libgettextsrc-0.25.1.so", + "lib/libgettextsrc.so", + "lib/libtextstyle.so", + "lib/libtextstyle.so.0", + "lib/libtextstyle.so.0.2.5", + "lib/preloadable_libintl.so", + "libexec/gettext/cldr-plurals", + "libexec/gettext/hostname", + "libexec/gettext/project-id", + "libexec/gettext/urlget", + "libexec/gettext/user-email", + "share/aclocal/nls.m4", + "share/doc/gettext/FAQ.html", + "share/doc/gettext/autopoint.1.html", + "share/doc/gettext/bind_textdomain_codeset.3.html", + "share/doc/gettext/bindtextdomain.3.html", + "share/doc/gettext/csharpdoc/GNU_Gettext.html", + "share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceManager.html", + "share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceSet.html", + "share/doc/gettext/csharpdoc/begin.html", + "share/doc/gettext/csharpdoc/index.html", + "share/doc/gettext/csharpdoc/namespaces.html", + "share/doc/gettext/envsubst.1.html", + "share/doc/gettext/gettext.1.html", + "share/doc/gettext/gettext.3.html", + "share/doc/gettext/gettext_1.html", + "share/doc/gettext/gettext_10.html", + "share/doc/gettext/gettext_11.html", + "share/doc/gettext/gettext_12.html", + "share/doc/gettext/gettext_13.html", + "share/doc/gettext/gettext_14.html", + "share/doc/gettext/gettext_15.html", + "share/doc/gettext/gettext_16.html", + "share/doc/gettext/gettext_17.html", + "share/doc/gettext/gettext_18.html", + "share/doc/gettext/gettext_19.html", + "share/doc/gettext/gettext_2.html", + "share/doc/gettext/gettext_20.html", + "share/doc/gettext/gettext_21.html", + "share/doc/gettext/gettext_22.html", + "share/doc/gettext/gettext_23.html", + "share/doc/gettext/gettext_24.html", + "share/doc/gettext/gettext_25.html", + "share/doc/gettext/gettext_26.html", + "share/doc/gettext/gettext_27.html", + "share/doc/gettext/gettext_28.html", + "share/doc/gettext/gettext_29.html", + "share/doc/gettext/gettext_3.html", + "share/doc/gettext/gettext_30.html", + "share/doc/gettext/gettext_4.html", + "share/doc/gettext/gettext_5.html", + "share/doc/gettext/gettext_6.html", + "share/doc/gettext/gettext_7.html", + "share/doc/gettext/gettext_8.html", + "share/doc/gettext/gettext_9.html", + "share/doc/gettext/gettext_abt.html", + "share/doc/gettext/gettext_fot.html", + "share/doc/gettext/gettext_toc.html", + "share/doc/gettext/gettextize.1.html", + "share/doc/gettext/msgattrib.1.html", + "share/doc/gettext/msgcat.1.html", + "share/doc/gettext/msgcmp.1.html", + "share/doc/gettext/msgcomm.1.html", + "share/doc/gettext/msgconv.1.html", + "share/doc/gettext/msgen.1.html", + "share/doc/gettext/msgexec.1.html", + "share/doc/gettext/msgfilter.1.html", + "share/doc/gettext/msgfmt.1.html", + "share/doc/gettext/msggrep.1.html", + "share/doc/gettext/msginit.1.html", + "share/doc/gettext/msgmerge.1.html", + "share/doc/gettext/msgunfmt.1.html", + "share/doc/gettext/msguniq.1.html", + "share/doc/gettext/ngettext.1.html", + "share/doc/gettext/ngettext.3.html", + "share/doc/gettext/recode-sr-latin.1.html", + "share/doc/gettext/textdomain.3.html", + "share/doc/gettext/tutorial.html", + "share/doc/gettext/xgettext.1.html", + "share/doc/libasprintf/autosprintf_all.html", + "share/gettext-0.25.1/its/docbook.loc", + "share/gettext-0.25.1/its/docbook4.its", + "share/gettext-0.25.1/its/docbook5.its", + "share/gettext-0.25.1/its/glade.loc", + "share/gettext-0.25.1/its/glade1.its", + "share/gettext-0.25.1/its/glade2.its", + "share/gettext-0.25.1/its/gsettings.its", + "share/gettext-0.25.1/its/gsettings.loc", + "share/gettext-0.25.1/its/gtkbuilder.its", + "share/gettext-0.25.1/its/metainfo.its", + "share/gettext-0.25.1/its/metainfo.loc", + "share/gettext/ABOUT-NLS", + "share/gettext/archive.dir.tar.xz", + "share/gettext/config.rpath", + "share/gettext/disclaim-translations.txt", + "share/gettext/gettext.h", + "share/gettext/javaversion.class", + "share/gettext/m4/build-to-host.m4", + "share/gettext/m4/gettext.m4", + "share/gettext/m4/host-cpu-c-abi.m4", + "share/gettext/m4/iconv.m4", + "share/gettext/m4/intlmacosx.m4", + "share/gettext/m4/lib-ld.m4", + "share/gettext/m4/lib-link.m4", + "share/gettext/m4/lib-prefix.m4", + "share/gettext/m4/nls.m4", + "share/gettext/m4/po.m4", + "share/gettext/m4/progtest.m4", + "share/gettext/msgunfmt.tcl", + "share/gettext/po/Makefile.in.in", + "share/gettext/po/Makevars.template", + "share/gettext/po/Rules-quot", + "share/gettext/po/boldquot.sed", + "share/gettext/po/en@boldquot.header", + "share/gettext/po/en@quot.header", + "share/gettext/po/insert-header.sed", + "share/gettext/po/quot.sed", + "share/gettext/po/remove-potcdate.sed", + "share/gettext/schema/its-extensions.xsd", + "share/gettext/schema/its.xsd10", + "share/gettext/schema/its.xsd11", + "share/gettext/schema/locating-rules.xsd10", + "share/gettext/schema/locating-rules.xsd11", + "share/gettext/styles/po-default.css", + "share/gettext/styles/po-emacs-x.css", + "share/gettext/styles/po-emacs-xterm.css", + "share/gettext/styles/po-emacs-xterm16.css", + "share/gettext/styles/po-emacs-xterm256.css", + "share/gettext/styles/po-vim.css", + "share/info/autosprintf.info", + "share/info/gettext.info", + "share/info/libtextstyle.info", + "share/locale/ast/LC_MESSAGES/gettext-runtime.mo", + "share/locale/be/LC_MESSAGES/gettext-runtime.mo", + "share/locale/be/LC_MESSAGES/gettext-tools.mo", + "share/locale/bg/LC_MESSAGES/gettext-runtime.mo", + "share/locale/bg/LC_MESSAGES/gettext-tools.mo", + "share/locale/ca/LC_MESSAGES/gettext-runtime.mo", + "share/locale/ca/LC_MESSAGES/gettext-tools.mo", + "share/locale/cs/LC_MESSAGES/gettext-runtime.mo", + "share/locale/cs/LC_MESSAGES/gettext-tools.mo", + "share/locale/da/LC_MESSAGES/gettext-runtime.mo", + "share/locale/da/LC_MESSAGES/gettext-tools.mo", + "share/locale/de/LC_MESSAGES/gettext-runtime.mo", + "share/locale/de/LC_MESSAGES/gettext-tools.mo", + "share/locale/el/LC_MESSAGES/gettext-runtime.mo", + "share/locale/el/LC_MESSAGES/gettext-tools.mo", + "share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo", + "share/locale/en@boldquot/LC_MESSAGES/gettext-tools.mo", + "share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo", + "share/locale/en@quot/LC_MESSAGES/gettext-tools.mo", + "share/locale/eo/LC_MESSAGES/gettext-runtime.mo", + "share/locale/es/LC_MESSAGES/gettext-runtime.mo", + "share/locale/es/LC_MESSAGES/gettext-tools.mo", + "share/locale/et/LC_MESSAGES/gettext-runtime.mo", + "share/locale/et/LC_MESSAGES/gettext-tools.mo", + "share/locale/eu/LC_MESSAGES/gettext-tools.mo", + "share/locale/fi/LC_MESSAGES/gettext-runtime.mo", + "share/locale/fi/LC_MESSAGES/gettext-tools.mo", + "share/locale/fr/LC_MESSAGES/gettext-runtime.mo", + "share/locale/fr/LC_MESSAGES/gettext-tools.mo", + "share/locale/ga/LC_MESSAGES/gettext-runtime.mo", + "share/locale/gl/LC_MESSAGES/gettext-runtime.mo", + "share/locale/gl/LC_MESSAGES/gettext-tools.mo", + "share/locale/hr/LC_MESSAGES/gettext-runtime.mo", + "share/locale/hr/LC_MESSAGES/gettext-tools.mo", + "share/locale/hu/LC_MESSAGES/gettext-runtime.mo", + "share/locale/id/LC_MESSAGES/gettext-runtime.mo", + "share/locale/id/LC_MESSAGES/gettext-tools.mo", + "share/locale/it/LC_MESSAGES/gettext-runtime.mo", + "share/locale/it/LC_MESSAGES/gettext-tools.mo", + "share/locale/ja/LC_MESSAGES/gettext-runtime.mo", + "share/locale/ja/LC_MESSAGES/gettext-tools.mo", + "share/locale/ka/LC_MESSAGES/gettext-runtime.mo", + "share/locale/ka/LC_MESSAGES/gettext-tools.mo", + "share/locale/ko/LC_MESSAGES/gettext-runtime.mo", + "share/locale/ko/LC_MESSAGES/gettext-tools.mo", + "share/locale/nb/LC_MESSAGES/gettext-runtime.mo", + "share/locale/nb/LC_MESSAGES/gettext-tools.mo", + "share/locale/nl/LC_MESSAGES/gettext-runtime.mo", + "share/locale/nl/LC_MESSAGES/gettext-tools.mo", + "share/locale/nn/LC_MESSAGES/gettext-runtime.mo", + "share/locale/nn/LC_MESSAGES/gettext-tools.mo", + "share/locale/pa/LC_MESSAGES/gettext-tools.mo", + "share/locale/pl/LC_MESSAGES/gettext-runtime.mo", + "share/locale/pl/LC_MESSAGES/gettext-tools.mo", + "share/locale/pt/LC_MESSAGES/gettext-runtime.mo", + "share/locale/pt/LC_MESSAGES/gettext-tools.mo", + "share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo", + "share/locale/pt_BR/LC_MESSAGES/gettext-tools.mo", + "share/locale/ro/LC_MESSAGES/gettext-runtime.mo", + "share/locale/ro/LC_MESSAGES/gettext-tools.mo", + "share/locale/ru/LC_MESSAGES/gettext-runtime.mo", + "share/locale/ru/LC_MESSAGES/gettext-tools.mo", + "share/locale/sk/LC_MESSAGES/gettext-runtime.mo", + "share/locale/sk/LC_MESSAGES/gettext-tools.mo", + "share/locale/sl/LC_MESSAGES/gettext-runtime.mo", + "share/locale/sl/LC_MESSAGES/gettext-tools.mo", + "share/locale/sr/LC_MESSAGES/gettext-runtime.mo", + "share/locale/sr/LC_MESSAGES/gettext-tools.mo", + "share/locale/sv/LC_MESSAGES/gettext-runtime.mo", + "share/locale/sv/LC_MESSAGES/gettext-tools.mo", + "share/locale/tr/LC_MESSAGES/gettext-runtime.mo", + "share/locale/tr/LC_MESSAGES/gettext-tools.mo", + "share/locale/uk/LC_MESSAGES/gettext-runtime.mo", + "share/locale/uk/LC_MESSAGES/gettext-tools.mo", + "share/locale/vi/LC_MESSAGES/gettext-runtime.mo", + "share/locale/vi/LC_MESSAGES/gettext-tools.mo", + "share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo", + "share/locale/zh_CN/LC_MESSAGES/gettext-tools.mo", + "share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo", + "share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo", + "share/locale/zh_TW/LC_MESSAGES/gettext-tools.mo", + "share/man/man1/autopoint.1", + "share/man/man1/envsubst.1", + "share/man/man1/gettext.1", + "share/man/man1/gettextize.1", + "share/man/man1/msgattrib.1", + "share/man/man1/msgcat.1", + "share/man/man1/msgcmp.1", + "share/man/man1/msgcomm.1", + "share/man/man1/msgconv.1", + "share/man/man1/msgen.1", + "share/man/man1/msgexec.1", + "share/man/man1/msgfilter.1", + "share/man/man1/msgfmt.1", + "share/man/man1/msggrep.1", + "share/man/man1/msginit.1", + "share/man/man1/msgmerge.1", + "share/man/man1/msgunfmt.1", + "share/man/man1/msguniq.1", + "share/man/man1/ngettext.1", + "share/man/man1/recode-sr-latin.1", + "share/man/man1/xgettext.1", + "share/man/man3/bind_textdomain_codeset.3", + "share/man/man3/bindtextdomain.3", + "share/man/man3/dcgettext.3", + "share/man/man3/dcngettext.3", + "share/man/man3/dgettext.3", + "share/man/man3/dngettext.3", + "share/man/man3/gettext.3", + "share/man/man3/ngettext.3", + "share/man/man3/textdomain.3" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/autopoint", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "e206e49bb1163a52024727d80f81b19efe68db26cabf46b740be705b00e899e8", + "size_in_bytes": 28117, + "sha256_in_prefix": "ac3be96f1c0a8d58023171b3c9cbca6238e394b67dedc101a8c43a06c8ef4612" + }, + { + "_path": "bin/envsubst", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "6343117f846be294b45e3558a49f21d7a644e1a00e6c114968cf10c128812f56", + "size_in_bytes": 43912, + "sha256_in_prefix": "99b972dc3b7c5fdd839d38c123da07efa73daf818614f5566c2cb24305d726d9" + }, + { + "_path": "bin/gettext", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "912635ee0a76539f3d816ca4987802ee31912933d85c46bdf4db25d1868f305d", + "size_in_bytes": 43008, + "sha256_in_prefix": "d7095f73155d59332d2d50862717bcccfb1719a225ae8e8de7d02f70fc54924d" + }, + { + "_path": "bin/gettextize", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "7b7467e2560a06542a624b606669e2e3ff9b094b733833ee4f8c6ac88f5e5a5e", + "size_in_bytes": 42543, + "sha256_in_prefix": "819e85db8134faef04447b164a2fa9a397d5e05b686f8811644daefeb18f124d" + }, + { + "_path": "bin/msgattrib", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "af42e60ec5727d6d7bae30fc22e236f31dd0cb97d0fc368ce6761ea74b9a58e2", + "size_in_bytes": 36960, + "sha256_in_prefix": "395122bb9bbf1ff624fdb0142836d41de90345f3d3d98542ed60993cee3cecb0" + }, + { + "_path": "bin/msgcat", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "1addb46abe5c0b75d0d8fc58acb9c8631e0a21733686657e9250928081f9fd97", + "size_in_bytes": 28848, + "sha256_in_prefix": "26e4964f23fb639caa6235bdfb8726bafd9f13625cf111edb9454fdbe0668709" + }, + { + "_path": "bin/msgcmp", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "4269ab2b8d10539d3ddb52bc9507cb29c9f2760a9589e94aadc3fbdcff54410c", + "size_in_bytes": 33688, + "sha256_in_prefix": "c3cb3edee8f87d28c06dee5ccc47a1659480055aa1bdd1557a59f1e4f9307962" + }, + { + "_path": "bin/msgcomm", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "b53d391ee3382581ce22c2a7aa48223ec4e0ceb15bef75df508c8a4eb2a3c826", + "size_in_bytes": 28864, + "sha256_in_prefix": "da8637965919cec95c575037fa8ef22a05e6b60b4ffa9caaefbf4769f1234eb1" + }, + { + "_path": "bin/msgconv", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "857296bcb0358f5f1171e987f5e9e7ce76fdf08ca56b5c03fab8f20d6509ec9b", + "size_in_bytes": 28488, + "sha256_in_prefix": "e4a69bf6c4668d27fdd65a755cb724d74eed412cdd9e68a35801c629613f8230" + }, + { + "_path": "bin/msgen", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "6fb4876e9e945ed444958a0fa1715d53e5182f3bdb1eb7685e1154ae5a4dc2f7", + "size_in_bytes": 28736, + "sha256_in_prefix": "9bb76de374c24773e9373a0eb3ce640552c367de4b66f03eee0fbc9f4f2d4030" + }, + { + "_path": "bin/msgexec", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "484372e4b345c87c9c5fe7a872c6a59e88e370bc4cbbe6a3596e8d8f0d928424", + "size_in_bytes": 28488, + "sha256_in_prefix": "7e1af68e70d57e5f436dd58e7ed8c64431a52339f39e71901f5591983406f722" + }, + { + "_path": "bin/msgfilter", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "c0594c8c911250602ef23700b8f7c72eca580b2c133359030cb2497727a9d55e", + "size_in_bytes": 38152, + "sha256_in_prefix": "3fbea024253693a28b81316abec067d049b78feded9300440395d2eb095460bc" + }, + { + "_path": "bin/msgfmt", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "9755c44078f28be0f538a7c97bc9e7e29d603c6cf7ee68cae5b78bac78279065", + "size_in_bytes": 108568, + "sha256_in_prefix": "666b19cef05248caab7af330b14b64564ebea9b93e08b4bd95fefbb493b545eb" + }, + { + "_path": "bin/msggrep", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "b497a58566f2b7156e008ee87ce850ba0775851f6e38614b2c723b3c920b92cf", + "size_in_bytes": 133808, + "sha256_in_prefix": "4efcae03486315c0a5f08c5dab1d3b3d204997b86441c201e956dec12146d2a2" + }, + { + "_path": "bin/msginit", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "4a5e54b5e07c6f3f37c5fb96337204414bbe0084c891ad533a92bed0d05580f2", + "size_in_bytes": 77752, + "sha256_in_prefix": "aa116ee2bc88f5b6c5b9e0332d93adf7034825522f8b34ac7a598a2f15f81951" + }, + { + "_path": "bin/msgmerge", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "3efb25c583eb5b33fe35f41140317760f78cd21384b7c375342063426f2d42a9", + "size_in_bytes": 82928, + "sha256_in_prefix": "f661779354b15db2e1a7f39d9f2e874667a6e231a58976e42b0db79ce100a3d2" + }, + { + "_path": "bin/msgunfmt", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "ba1257a07052d732bb9c5234b30e5e3e9bf0978a97ddf48fe3bf0f928baf4444", + "size_in_bytes": 47304, + "sha256_in_prefix": "a3e16023142200c5f6a360911a2baa54612317769c226fb0dd48d34733566786" + }, + { + "_path": "bin/msguniq", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "6d8ffe71e5000f93a9853e23dbe3f856ec82cf48ae5395780e5717fdece0c270", + "size_in_bytes": 28736, + "sha256_in_prefix": "85ba31c1322a7d8119b87fb967dcdc8694eaca5f02f10c734efba835a1aa70b2" + }, + { + "_path": "bin/ngettext", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "d20b0ba70a8082d8a7e90de3d00221ad04ce2f7a1c00a40c4b6ec377258b88f0", + "size_in_bytes": 43112, + "sha256_in_prefix": "c69dbe0c7f9f20cdfaa826c9ea75e3f07cbbe73afb38ad4b351f334fd79f755a" + }, + { + "_path": "bin/recode-sr-latin", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "13816b33726a19a3808c49befcaa16b743cd9bc9106d0f1a1c34cc9db995e0ce", + "size_in_bytes": 23800, + "sha256_in_prefix": "9203e0b4620bd073f7f3f8171773392cc8b032254b4a3469032cccd1b1ec3fa4" + }, + { + "_path": "bin/xgettext", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "752f249e3c5cc862f3d934a56025b8b660bbacf2c30c093f53948ad9a1200a11", + "size_in_bytes": 8543840, + "sha256_in_prefix": "4e9978ab03f29e83e693b41c9717afe7b478825565cb5baeffb92a6c7e9de553" + }, + { + "_path": "lib/libgettextlib-0.25.1.so", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "ce137c6d8552d92475f45e412401e720fb18476129b6ea952c5deb3c7780bf01", + "size_in_bytes": 2251296, + "sha256_in_prefix": "ca95ae73e313aaa20d127393404cbda6dbebfc8f30dfe4aefe9217e38058d514" + }, + { + "_path": "lib/libgettextsrc-0.25.1.so", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "9e11d2154eb085f5fa7e2a74bb57ea89b90054a147ff37999ad1c25ce22ba3d1", + "size_in_bytes": 429952, + "sha256_in_prefix": "e807e58f40561443edc3dd27f362711382d53c65e2a498719a58ec4314228788" + }, + { + "_path": "lib/preloadable_libintl.so", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "289da6e961521967ba317843a9a0faebd672e5ae741195fa399abb41d198c76d", + "size_in_bytes": 57736, + "sha256_in_prefix": "0fc60bcdb85cf3e75e30fff2fa251e7fadc97c20d9de416940d6bb2289910563" + }, + { + "_path": "libexec/gettext/cldr-plurals", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "9816786ff70721d03b88fc24fd6916f5a24e4d6ae8336669f2603f9e1d998158", + "size_in_bytes": 42088, + "sha256_in_prefix": "49f40bb9f2476cec9ce90c56a663092b25176f48b5f482b0e1a1dbbccf0b40e8" + }, + { + "_path": "libexec/gettext/hostname", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "13050f8fa9ece58c726d8c3032152814add6974c9f15ede917c472cd778bf498", + "size_in_bytes": 19512, + "sha256_in_prefix": "11ee603d16dea4e3bedc7a88252130ae3a93d62fcbe99db5912c1d18a512de83" + }, + { + "_path": "libexec/gettext/urlget", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "e7eb5f8593cb8f825ee6c07a38743c2df7945d8f1f8f9a4178ef7bc5601b7208", + "size_in_bytes": 19576, + "sha256_in_prefix": "8d3cbb63e643663d78cc1ee7a430788841df031dce8311920431344391441d63" + }, + { + "_path": "libexec/gettext/user-email", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "004f925c6c3e50b16bc57acb7c8b8e45a5d915a74aa5888c32cc7720634ae8ed", + "size_in_bytes": 14782, + "sha256_in_prefix": "c91d49109c2464b06b3755ab95bd01dd109003be7d39fdd5f3d7d1b83ea114bc" + }, + { + "_path": "share/doc/gettext/gettext.1.html", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "408d221a3c29baa6cf225add942e8d6710878565a63dde997d10fdbea0c63f4f", + "size_in_bytes": 5077, + "sha256_in_prefix": "870b4e9a28a1482bc667c82ffc321096948db23eebc9cd2b297b066c64785948" + }, + { + "_path": "share/doc/gettext/ngettext.1.html", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "b247fb9c76b86fb48e3adb002da5cb5274a801b967f06cacf99ee86afd89313a", + "size_in_bytes": 5275, + "sha256_in_prefix": "b48e9acb81d952589360a6fcedae41bb42ec7c23f90deb5dffbdae921f115598" + }, + { + "_path": "share/man/man1/gettext.1", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "ec1e330a9d7295622f6391f807d49fb5cfeeba20ed5c0806c4698fb075f25f66", + "size_in_bytes": 2600, + "sha256_in_prefix": "c31ccf0eae69293874d3f2b4582b0d1e7f32b2b57cb84c779ce592b015efe33b" + }, + { + "_path": "share/man/man1/ngettext.1", + "prefix_placeholder": "/home/task_177204486800161/croot/gettext-split_1772044997948/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "6568bfebb87c24484b424200b764300dc8b034204cd5f3e10b9b9d5c505407e3", + "size_in_bytes": 2636, + "sha256_in_prefix": "10913d8589c660dcdb2f2c68908695e5b96d6fdb3e2a33e1c86737afea3cb589" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/gettext-tools-0.25.1-h6a67909_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/h11-0.16.0-py313h06a4308_1.json b/miniconda3/conda-meta/h11-0.16.0-py313h06a4308_1.json new file mode 100644 index 0000000000000000000000000000000000000000..051de6a53af81f40fa5c6bbb8cab53553cbc71bb --- /dev/null +++ b/miniconda3/conda-meta/h11-0.16.0-py313h06a4308_1.json @@ -0,0 +1,67 @@ +{ + "name": "h11", + "version": "0.16.0", + "build": "py313h06a4308_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "h11-0.16.0-py313h06a4308_1.conda", + "md5": "64c98017f4f5b701ed2b2f20d5e9ea4c", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/h11-0.16.0-py313h06a4308_1.conda", + "sha256": "96dcaec2513ff1034fc52b8b13e5500d41b05671d85f8bff24895bf807129812", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1761931277000, + "size": 64750, + "requested_spec": "pkgs/main/linux-64::h11==0.16.0=py313h06a4308_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/h11-0.16.0-py313h06a4308_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/h11-0.16.0-py313h06a4308_1", + "files": [ + "lib/python3.13/site-packages/h11-0.16.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/h11-0.16.0.dist-info/METADATA", + "lib/python3.13/site-packages/h11-0.16.0.dist-info/RECORD", + "lib/python3.13/site-packages/h11-0.16.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/h11-0.16.0.dist-info/WHEEL", + "lib/python3.13/site-packages/h11-0.16.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/h11-0.16.0.dist-info/licenses/LICENSE.txt", + "lib/python3.13/site-packages/h11-0.16.0.dist-info/top_level.txt", + "lib/python3.13/site-packages/h11/__init__.py", + "lib/python3.13/site-packages/h11/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/h11/__pycache__/_abnf.cpython-313.pyc", + "lib/python3.13/site-packages/h11/__pycache__/_connection.cpython-313.pyc", + "lib/python3.13/site-packages/h11/__pycache__/_events.cpython-313.pyc", + "lib/python3.13/site-packages/h11/__pycache__/_headers.cpython-313.pyc", + "lib/python3.13/site-packages/h11/__pycache__/_readers.cpython-313.pyc", + "lib/python3.13/site-packages/h11/__pycache__/_receivebuffer.cpython-313.pyc", + "lib/python3.13/site-packages/h11/__pycache__/_state.cpython-313.pyc", + "lib/python3.13/site-packages/h11/__pycache__/_util.cpython-313.pyc", + "lib/python3.13/site-packages/h11/__pycache__/_version.cpython-313.pyc", + "lib/python3.13/site-packages/h11/__pycache__/_writers.cpython-313.pyc", + "lib/python3.13/site-packages/h11/_abnf.py", + "lib/python3.13/site-packages/h11/_connection.py", + "lib/python3.13/site-packages/h11/_events.py", + "lib/python3.13/site-packages/h11/_headers.py", + "lib/python3.13/site-packages/h11/_readers.py", + "lib/python3.13/site-packages/h11/_receivebuffer.py", + "lib/python3.13/site-packages/h11/_state.py", + "lib/python3.13/site-packages/h11/_util.py", + "lib/python3.13/site-packages/h11/_version.py", + "lib/python3.13/site-packages/h11/_writers.py", + "lib/python3.13/site-packages/h11/py.typed" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/h11-0.16.0-py313h06a4308_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/history b/miniconda3/conda-meta/history new file mode 100644 index 0000000000000000000000000000000000000000..7ac23eeba08c60c4de11106a67548144ef43f5e0 --- /dev/null +++ b/miniconda3/conda-meta/history @@ -0,0 +1,149 @@ +==> 2026-03-03 21:57:10 <== +# cmd: constructor /home/runner/work/installers/installers/products/miniconda3/recipe --output-dir /home/runner/work/_temp/_constructor_workdir/build --cache-dir /home/runner/work/_temp/_constructor_workdir/constructor_cache ++defaults::_libgcc_mutex-0.1-main ++defaults::ca-certificates-2025.12.2-h06a4308_0 ++defaults::ld_impl_linux-64-2.44-h153f514_2 ++defaults::libgomp-15.2.0-h4751f2c_7 ++defaults::nlohmann_json-3.11.2-h6a678d5_0 ++defaults::pybind11-abi-5-hd3eb1b0_0 ++defaults::python_abi-3.13-3_cp313 ++defaults::tzdata-2025c-he532380_0 ++defaults::_openmp_mutex-5.1-1_gnu ++defaults::libgcc-15.2.0-h69a1729_7 ++defaults::libgcc-ng-15.2.0-h166f726_7 ++defaults::libiconv-1.18-h75a1612_0 ++defaults::libstdcxx-15.2.0-h39759b7_7 ++defaults::openssl-3.5.5-h1b28b03_0 ++defaults::xz-5.8.2-h448239c_0 ++defaults::bzip2-1.0.8-h5eee18b_6 ++defaults::c-ares-1.34.6-hd44998d_0 ++defaults::jansson-2.14-h5eee18b_1 ++defaults::libasprintf-0.25.1-hf2ab22a_0 ++defaults::libbrotlicommon-1.2.0-h32cd6e7_0 ++defaults::libev-4.33-h7f8727e_1 ++defaults::libexpat-2.7.4-h7354ed3_0 ++defaults::libgettextpo-0.25.1-hf2ab22a_0 ++defaults::libmpdec-4.0.0-h5eee18b_0 ++defaults::libstdcxx-ng-15.2.0-hc03a8fd_7 ++defaults::libunistring-1.3-hb25bd0a_0 ++defaults::libuuid-1.41.5-h5eee18b_0 ++defaults::libzlib-1.3.1-hb25bd0a_0 ++defaults::lmdb-0.9.31-hb25bd0a_0 ++defaults::ncurses-6.5-h7934f7d_0 ++defaults::pthread-stubs-0.3-h0ce48e5_1 ++defaults::reproc-14.2.4-h6a678d5_2 ++defaults::xorg-libxau-1.0.12-h9b100fa_0 ++defaults::xorg-libxdmcp-1.1.5-h9b100fa_0 ++defaults::xorg-xorgproto-2024.1-h5eee18b_1 ++defaults::cpp-expected-1.1.0-hdb19cb5_0 ++defaults::expat-2.7.4-h7354ed3_0 ++defaults::fmt-11.2.0-hca5f364_0 ++defaults::gettext-tools-0.25.1-h6a67909_0 ++defaults::icu-73.1-h6a678d5_0 ++defaults::libasprintf-devel-0.25.1-hf2ab22a_0 ++defaults::libbrotlidec-1.2.0-ha2c5f68_0 ++defaults::libbrotlienc-1.2.0-h2e96acb_0 ++defaults::libffi-3.4.4-h6a678d5_1 ++defaults::libgettextpo-devel-0.25.1-hf2ab22a_0 ++defaults::libkrb5-1.22.1-h6d2bf13_0 ++defaults::libxcb-1.17.0-h9b100fa_0 ++defaults::lz4-c-1.9.4-h6a678d5_1 ++defaults::readline-8.3-hc2a1206_0 ++defaults::reproc-cpp-14.2.4-h6a678d5_2 ++defaults::simdjson-3.10.1-hdb19cb5_0 ++defaults::yaml-cpp-0.8.0-h6a678d5_1 ++defaults::zlib-1.3.1-hb25bd0a_0 ++defaults::gettext-0.25.1-h92eb808_0 ++defaults::libssh2-1.11.1-h251f7ec_0 ++defaults::libxml2-2.13.9-h2c43086_0 ++defaults::pcre2-10.46-hf426167_0 ++defaults::sqlite-3.51.1-he0a8d7e_0 ++defaults::xorg-libx11-1.8.12-h9b100fa_1 ++defaults::zstd-1.5.7-h11fc155_0 ++defaults::dbus-1.16.2-h5bd4931_0 ++defaults::libarchive-3.8.2-h3ec8f01_0 ++defaults::libidn2-2.3.8-hf80d704_0 ++defaults::libnghttp2-1.67.1-h697f920_0 ++defaults::libsolv-0.7.30-h6f1ccf3_2 ++defaults::tk-8.6.15-h54e0aa7_0 ++defaults::libcurl-8.18.0-h3506a8c_0 ++defaults::python-3.13.12-hb7b561f_100_cp313 ++defaults::libmamba-2.3.2-h860b5fb_1 ++defaults::menuinst-2.4.2-py313h06a4308_1 ++defaults::anaconda-anon-usage-0.7.5-pyhb46e38b_100 ++defaults::annotated-types-0.6.0-py313h06a4308_1 ++defaults::archspec-0.2.5-pyhd3eb1b0_0 ++defaults::boltons-25.0.0-py313h06a4308_0 ++defaults::certifi-2026.01.04-py313h06a4308_0 ++defaults::charset-normalizer-3.4.4-py313h06a4308_0 ++defaults::click-8.2.1-py313h06a4308_1 ++defaults::distro-1.9.0-py313h06a4308_0 ++defaults::frozendict-2.4.6-py313hee96239_0 ++defaults::h11-0.16.0-py313h06a4308_1 ++defaults::idna-3.11-py313h06a4308_0 ++defaults::jaraco.context-6.1.0-py313h06a4308_0 ++defaults::jeepney-0.7.1-pyhd3eb1b0_0 ++defaults::jsonpointer-3.0.0-py313h06a4308_0 ++defaults::libmambapy-2.3.2-py313h3f77f5b_1 ++defaults::mdurl-0.1.2-py313h06a4308_0 ++defaults::more-itertools-10.8.0-py313h06a4308_0 ++defaults::msgpack-python-1.1.1-py313h6a678d5_0 ++defaults::packaging-25.0-py313h06a4308_1 ++defaults::pkce-1.0.3-py313h06a4308_0 ++defaults::platformdirs-4.5.0-py313h06a4308_0 ++defaults::pluggy-1.5.0-py313h06a4308_0 ++defaults::pycosat-0.6.6-py313h5eee18b_2 ++defaults::pycparser-2.23-py313h06a4308_0 ++defaults::pygments-2.19.2-py313h06a4308_0 ++defaults::pyjwt-2.10.1-py313h06a4308_1 ++defaults::pysocks-1.7.1-py313h06a4308_1 ++defaults::python-dotenv-1.2.1-py313h06a4308_0 ++defaults::readchar-4.2.1-py313h06a4308_0 ++defaults::ruamel.yaml.clib-0.2.14-py313h4aee224_0 ++defaults::semver-3.0.4-py313h06a4308_0 ++defaults::setuptools-80.10.2-py313h06a4308_0 ++defaults::shellingham-1.5.4-py313h06a4308_0 ++defaults::sniffio-1.3.1-py313h06a4308_0 ++defaults::tomli-2.4.0-py313h06a4308_0 ++defaults::tomlkit-0.13.3-py313h06a4308_0 ++defaults::tqdm-4.67.3-py313h7040dfc_1 ++defaults::truststore-0.10.1-py313h06a4308_1 ++defaults::typing_extensions-4.15.0-py313h06a4308_0 ++defaults::anyio-4.10.0-py313h06a4308_0 ++defaults::cffi-2.0.0-py313h4eded50_1 ++defaults::httpcore-1.0.9-py313h06a4308_0 ++defaults::jaraco.classes-3.4.0-py313h06a4308_0 ++defaults::jaraco.functools-4.4.0-py313h06a4308_0 ++defaults::jsonpatch-1.33-py313h06a4308_1 ++defaults::markdown-it-py-4.0.0-py313h06a4308_1 ++defaults::ruamel.yaml-0.18.16-py313h4aee224_0 ++defaults::typer-slim-0.20.0-py313h06a4308_1 ++defaults::typing-extensions-4.15.0-py313h06a4308_0 ++defaults::typing-inspection-0.4.2-py313h06a4308_0 ++defaults::wheel-0.46.3-py313h06a4308_0 ++defaults::brotlicffi-1.2.0.0-py313h7354ed3_0 ++defaults::cryptography-46.0.5-py313h04fe016_1 ++defaults::httpx-0.28.1-py313h06a4308_1 ++defaults::pip-26.0.1-pyhc872135_0 ++defaults::pydantic-core-2.41.5-py313h498d7c9_1 ++defaults::rich-14.2.0-py313h06a4308_0 ++defaults::zstandard-0.24.0-py313h3d778a8_0 ++defaults::conda-content-trust-0.2.0-py313h06a4308_1 ++defaults::pydantic-2.12.4-py313h06a4308_0 ++defaults::secretstorage-3.4.0-py313h3e8c6aa_0 ++defaults::typer-slim-standard-0.20.0-py313h06a4308_1 ++defaults::urllib3-2.6.3-py313h06a4308_0 ++defaults::keyring-25.7.0-py313h06a4308_0 ++defaults::pydantic-settings-2.12.0-py313h06a4308_0 ++defaults::requests-2.32.5-py313h06a4308_1 ++defaults::typer-0.20.0-py313h06a4308_1 ++defaults::anaconda-cli-base-0.8.1-py313h06a4308_0 ++defaults::conda-package-streaming-0.12.0-py313h06a4308_1 ++defaults::anaconda-auth-0.13.0-py313h06a4308_0 ++defaults::conda-package-handling-2.4.0-py313h06a4308_1 ++defaults::conda-26.1.1-py313h06a4308_0 ++defaults::conda-anaconda-telemetry-0.3.0-pyhd3eb1b0_1 ++defaults::conda-anaconda-tos-0.2.2-py313h06a4308_1 ++defaults::conda-libmamba-solver-25.11.0-pyhdf14ebd_0 +# update specs: ['python=3.13', 'conda==26.1.1', 'setuptools', 'pip', 'wheel', "conda-anaconda-telemetry[version='>=0.3.0']", "conda-anaconda-tos[version='>=0.2.2']", 'conda-content-trust', 'conda-libmamba-solver', 'menuinst', 'anaconda-anon-usage', 'anaconda-auth'] + diff --git a/miniconda3/conda-meta/httpcore-1.0.9-py313h06a4308_0.json b/miniconda3/conda-meta/httpcore-1.0.9-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..3bac655b5d4caead0287f194b6b89bc7ebd19c7a --- /dev/null +++ b/miniconda3/conda-meta/httpcore-1.0.9-py313h06a4308_0.json @@ -0,0 +1,108 @@ +{ + "name": "httpcore", + "version": "1.0.9", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "httpcore-1.0.9-py313h06a4308_0.conda", + "md5": "77016551f9607c23c6243632bf100507", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/httpcore-1.0.9-py313h06a4308_0.conda", + "sha256": "43cf7bc5c9c8a5a7470c5b7c6b1ad0f67319bf4de5b958d7c1e7027e63029cc4", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "certifi", + "h11 >=0.16", + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "BSD-3-Clause", + "license_family": "BSD", + "timestamp": 1748526107000, + "size": 127896, + "requested_spec": "pkgs/main/linux-64::httpcore==1.0.9=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/httpcore-1.0.9-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/httpcore-1.0.9-py313h06a4308_0", + "files": [ + "lib/python3.13/site-packages/httpcore-1.0.9.dist-info/INSTALLER", + "lib/python3.13/site-packages/httpcore-1.0.9.dist-info/METADATA", + "lib/python3.13/site-packages/httpcore-1.0.9.dist-info/RECORD", + "lib/python3.13/site-packages/httpcore-1.0.9.dist-info/REQUESTED", + "lib/python3.13/site-packages/httpcore-1.0.9.dist-info/WHEEL", + "lib/python3.13/site-packages/httpcore-1.0.9.dist-info/direct_url.json", + "lib/python3.13/site-packages/httpcore-1.0.9.dist-info/licenses/LICENSE.md", + "lib/python3.13/site-packages/httpcore/__init__.py", + "lib/python3.13/site-packages/httpcore/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/__pycache__/_api.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/__pycache__/_exceptions.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/__pycache__/_models.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/__pycache__/_ssl.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/__pycache__/_synchronization.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/__pycache__/_trace.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/__pycache__/_utils.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/_api.py", + "lib/python3.13/site-packages/httpcore/_async/__init__.py", + "lib/python3.13/site-packages/httpcore/_async/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/_async/__pycache__/connection.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/_async/__pycache__/connection_pool.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/_async/__pycache__/http11.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/_async/__pycache__/http2.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/_async/__pycache__/http_proxy.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/_async/__pycache__/interfaces.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/_async/__pycache__/socks_proxy.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/_async/connection.py", + "lib/python3.13/site-packages/httpcore/_async/connection_pool.py", + "lib/python3.13/site-packages/httpcore/_async/http11.py", + "lib/python3.13/site-packages/httpcore/_async/http2.py", + "lib/python3.13/site-packages/httpcore/_async/http_proxy.py", + "lib/python3.13/site-packages/httpcore/_async/interfaces.py", + "lib/python3.13/site-packages/httpcore/_async/socks_proxy.py", + "lib/python3.13/site-packages/httpcore/_backends/__init__.py", + "lib/python3.13/site-packages/httpcore/_backends/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/_backends/__pycache__/anyio.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/_backends/__pycache__/auto.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/_backends/__pycache__/base.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/_backends/__pycache__/mock.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/_backends/__pycache__/sync.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/_backends/__pycache__/trio.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/_backends/anyio.py", + "lib/python3.13/site-packages/httpcore/_backends/auto.py", + "lib/python3.13/site-packages/httpcore/_backends/base.py", + "lib/python3.13/site-packages/httpcore/_backends/mock.py", + "lib/python3.13/site-packages/httpcore/_backends/sync.py", + "lib/python3.13/site-packages/httpcore/_backends/trio.py", + "lib/python3.13/site-packages/httpcore/_exceptions.py", + "lib/python3.13/site-packages/httpcore/_models.py", + "lib/python3.13/site-packages/httpcore/_ssl.py", + "lib/python3.13/site-packages/httpcore/_sync/__init__.py", + "lib/python3.13/site-packages/httpcore/_sync/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/_sync/__pycache__/connection.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/_sync/__pycache__/connection_pool.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/_sync/__pycache__/http11.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/_sync/__pycache__/http2.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/_sync/__pycache__/http_proxy.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/_sync/__pycache__/interfaces.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/_sync/__pycache__/socks_proxy.cpython-313.pyc", + "lib/python3.13/site-packages/httpcore/_sync/connection.py", + "lib/python3.13/site-packages/httpcore/_sync/connection_pool.py", + "lib/python3.13/site-packages/httpcore/_sync/http11.py", + "lib/python3.13/site-packages/httpcore/_sync/http2.py", + "lib/python3.13/site-packages/httpcore/_sync/http_proxy.py", + "lib/python3.13/site-packages/httpcore/_sync/interfaces.py", + "lib/python3.13/site-packages/httpcore/_sync/socks_proxy.py", + "lib/python3.13/site-packages/httpcore/_synchronization.py", + "lib/python3.13/site-packages/httpcore/_trace.py", + "lib/python3.13/site-packages/httpcore/_utils.py", + "lib/python3.13/site-packages/httpcore/py.typed" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/httpcore-1.0.9-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/httpx-0.28.1-py313h06a4308_1.json b/miniconda3/conda-meta/httpx-0.28.1-py313h06a4308_1.json new file mode 100644 index 0000000000000000000000000000000000000000..7cd8492cf1d5e74e0e557146424ad0c625eb4111 --- /dev/null +++ b/miniconda3/conda-meta/httpx-0.28.1-py313h06a4308_1.json @@ -0,0 +1,112 @@ +{ + "name": "httpx", + "version": "0.28.1", + "build": "py313h06a4308_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "httpx-0.28.1-py313h06a4308_1.conda", + "md5": "d25af3a5cbefe54951cb3dc369b945bb", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/httpx-0.28.1-py313h06a4308_1.conda", + "sha256": "ea875a1564f96bd1fdbaf82e6fa51d829f099b7f69a5a9e76c5ea9d5483d9288", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "anyio", + "certifi", + "httpcore 1.*", + "idna", + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [ + "click >=8.0.0,<9.0.0a0", + "h2 >=3.0.0,<5.0.0a0", + "zstandard >=0.18.0", + "socksio >=1.0.0,<2.0.0a0", + "pygments >=2.0.0,<3.0.0a0" + ], + "license": "BSD-3-Clause", + "license_family": "BSD", + "timestamp": 1760447364000, + "size": 217558, + "requested_spec": "pkgs/main/linux-64::httpx==0.28.1=py313h06a4308_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/httpx-0.28.1-py313h06a4308_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/httpx-0.28.1-py313h06a4308_1", + "files": [ + "bin/httpx", + "lib/python3.13/site-packages/httpx-0.28.1.dist-info/INSTALLER", + "lib/python3.13/site-packages/httpx-0.28.1.dist-info/METADATA", + "lib/python3.13/site-packages/httpx-0.28.1.dist-info/RECORD", + "lib/python3.13/site-packages/httpx-0.28.1.dist-info/REQUESTED", + "lib/python3.13/site-packages/httpx-0.28.1.dist-info/WHEEL", + "lib/python3.13/site-packages/httpx-0.28.1.dist-info/direct_url.json", + "lib/python3.13/site-packages/httpx-0.28.1.dist-info/entry_points.txt", + "lib/python3.13/site-packages/httpx-0.28.1.dist-info/licenses/LICENSE.md", + "lib/python3.13/site-packages/httpx/__init__.py", + "lib/python3.13/site-packages/httpx/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/httpx/__pycache__/__version__.cpython-313.pyc", + "lib/python3.13/site-packages/httpx/__pycache__/_api.cpython-313.pyc", + "lib/python3.13/site-packages/httpx/__pycache__/_auth.cpython-313.pyc", + "lib/python3.13/site-packages/httpx/__pycache__/_client.cpython-313.pyc", + "lib/python3.13/site-packages/httpx/__pycache__/_config.cpython-313.pyc", + "lib/python3.13/site-packages/httpx/__pycache__/_content.cpython-313.pyc", + "lib/python3.13/site-packages/httpx/__pycache__/_decoders.cpython-313.pyc", + "lib/python3.13/site-packages/httpx/__pycache__/_exceptions.cpython-313.pyc", + "lib/python3.13/site-packages/httpx/__pycache__/_main.cpython-313.pyc", + "lib/python3.13/site-packages/httpx/__pycache__/_models.cpython-313.pyc", + "lib/python3.13/site-packages/httpx/__pycache__/_multipart.cpython-313.pyc", + "lib/python3.13/site-packages/httpx/__pycache__/_status_codes.cpython-313.pyc", + "lib/python3.13/site-packages/httpx/__pycache__/_types.cpython-313.pyc", + "lib/python3.13/site-packages/httpx/__pycache__/_urlparse.cpython-313.pyc", + "lib/python3.13/site-packages/httpx/__pycache__/_urls.cpython-313.pyc", + "lib/python3.13/site-packages/httpx/__pycache__/_utils.cpython-313.pyc", + "lib/python3.13/site-packages/httpx/__version__.py", + "lib/python3.13/site-packages/httpx/_api.py", + "lib/python3.13/site-packages/httpx/_auth.py", + "lib/python3.13/site-packages/httpx/_client.py", + "lib/python3.13/site-packages/httpx/_config.py", + "lib/python3.13/site-packages/httpx/_content.py", + "lib/python3.13/site-packages/httpx/_decoders.py", + "lib/python3.13/site-packages/httpx/_exceptions.py", + "lib/python3.13/site-packages/httpx/_main.py", + "lib/python3.13/site-packages/httpx/_models.py", + "lib/python3.13/site-packages/httpx/_multipart.py", + "lib/python3.13/site-packages/httpx/_status_codes.py", + "lib/python3.13/site-packages/httpx/_transports/__init__.py", + "lib/python3.13/site-packages/httpx/_transports/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/httpx/_transports/__pycache__/asgi.cpython-313.pyc", + "lib/python3.13/site-packages/httpx/_transports/__pycache__/base.cpython-313.pyc", + "lib/python3.13/site-packages/httpx/_transports/__pycache__/default.cpython-313.pyc", + "lib/python3.13/site-packages/httpx/_transports/__pycache__/mock.cpython-313.pyc", + "lib/python3.13/site-packages/httpx/_transports/__pycache__/wsgi.cpython-313.pyc", + "lib/python3.13/site-packages/httpx/_transports/asgi.py", + "lib/python3.13/site-packages/httpx/_transports/base.py", + "lib/python3.13/site-packages/httpx/_transports/default.py", + "lib/python3.13/site-packages/httpx/_transports/mock.py", + "lib/python3.13/site-packages/httpx/_transports/wsgi.py", + "lib/python3.13/site-packages/httpx/_types.py", + "lib/python3.13/site-packages/httpx/_urlparse.py", + "lib/python3.13/site-packages/httpx/_urls.py", + "lib/python3.13/site-packages/httpx/_utils.py", + "lib/python3.13/site-packages/httpx/py.typed" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/httpx", + "prefix_placeholder": "/home/task_176044729083783/conda-bld/httpx_1760447344657/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "ebd8946cc852cfafa72cec46dcc00bde31b39d17747d916019b0433a01bcc7d2", + "size_in_bytes": 458, + "sha256_in_prefix": "960703b6c1e41c3e180fe31a7b3217bf5ea2b634e38a86cef664f1274ec51a67" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/httpx-0.28.1-py313h06a4308_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/icu-73.1-h6a678d5_0.json b/miniconda3/conda-meta/icu-73.1-h6a678d5_0.json new file mode 100644 index 0000000000000000000000000000000000000000..f0e6cd635b226ebd98dae630ca2b7f1ce8a26626 --- /dev/null +++ b/miniconda3/conda-meta/icu-73.1-h6a678d5_0.json @@ -0,0 +1,347 @@ +{ + "name": "icu", + "version": "73.1", + "build": "h6a678d5_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "icu-73.1-h6a678d5_0.conda", + "md5": "6d09df641fc23f7d277a04dc7ea32dd4", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/icu-73.1-h6a678d5_0.conda", + "sha256": "f60e8a4b965ba50214f5a7a24308c060860fa5062d9d69d581287a520006abba", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "libgcc-ng >=11.2.0", + "libstdcxx-ng >=11.2.0" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1692293243000, + "size": 27195861, + "requested_spec": "pkgs/main/linux-64::icu==73.1=h6a678d5_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/icu-73.1-h6a678d5_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/icu-73.1-h6a678d5_0", + "files": [ + "bin/derb", + "bin/genbrk", + "bin/gencfu", + "bin/gencnval", + "bin/gendict", + "bin/genrb", + "bin/icu-config", + "bin/icuexportdata", + "bin/icuinfo", + "bin/makeconv", + "bin/pkgdata", + "include/unicode/alphaindex.h", + "include/unicode/appendable.h", + "include/unicode/basictz.h", + "include/unicode/brkiter.h", + "include/unicode/bytestream.h", + "include/unicode/bytestrie.h", + "include/unicode/bytestriebuilder.h", + "include/unicode/calendar.h", + "include/unicode/caniter.h", + "include/unicode/casemap.h", + "include/unicode/char16ptr.h", + "include/unicode/chariter.h", + "include/unicode/choicfmt.h", + "include/unicode/coleitr.h", + "include/unicode/coll.h", + "include/unicode/compactdecimalformat.h", + "include/unicode/curramt.h", + "include/unicode/currpinf.h", + "include/unicode/currunit.h", + "include/unicode/datefmt.h", + "include/unicode/dbbi.h", + "include/unicode/dcfmtsym.h", + "include/unicode/decimfmt.h", + "include/unicode/displayoptions.h", + "include/unicode/docmain.h", + "include/unicode/dtfmtsym.h", + "include/unicode/dtintrv.h", + "include/unicode/dtitvfmt.h", + "include/unicode/dtitvinf.h", + "include/unicode/dtptngen.h", + "include/unicode/dtrule.h", + "include/unicode/edits.h", + "include/unicode/enumset.h", + "include/unicode/errorcode.h", + "include/unicode/fieldpos.h", + "include/unicode/filteredbrk.h", + "include/unicode/fmtable.h", + "include/unicode/format.h", + "include/unicode/formattednumber.h", + "include/unicode/formattedvalue.h", + "include/unicode/fpositer.h", + "include/unicode/gender.h", + "include/unicode/gregocal.h", + "include/unicode/icudataver.h", + "include/unicode/icuplug.h", + "include/unicode/idna.h", + "include/unicode/listformatter.h", + "include/unicode/localebuilder.h", + "include/unicode/localematcher.h", + "include/unicode/localpointer.h", + "include/unicode/locdspnm.h", + "include/unicode/locid.h", + "include/unicode/measfmt.h", + "include/unicode/measunit.h", + "include/unicode/measure.h", + "include/unicode/messagepattern.h", + "include/unicode/msgfmt.h", + "include/unicode/normalizer2.h", + "include/unicode/normlzr.h", + "include/unicode/nounit.h", + "include/unicode/numberformatter.h", + "include/unicode/numberrangeformatter.h", + "include/unicode/numfmt.h", + "include/unicode/numsys.h", + "include/unicode/parseerr.h", + "include/unicode/parsepos.h", + "include/unicode/platform.h", + "include/unicode/plurfmt.h", + "include/unicode/plurrule.h", + "include/unicode/ptypes.h", + "include/unicode/putil.h", + "include/unicode/rbbi.h", + "include/unicode/rbnf.h", + "include/unicode/rbtz.h", + "include/unicode/regex.h", + "include/unicode/region.h", + "include/unicode/reldatefmt.h", + "include/unicode/rep.h", + "include/unicode/resbund.h", + "include/unicode/schriter.h", + "include/unicode/scientificnumberformatter.h", + "include/unicode/search.h", + "include/unicode/selfmt.h", + "include/unicode/simpleformatter.h", + "include/unicode/simplenumberformatter.h", + "include/unicode/simpletz.h", + "include/unicode/smpdtfmt.h", + "include/unicode/sortkey.h", + "include/unicode/std_string.h", + "include/unicode/strenum.h", + "include/unicode/stringoptions.h", + "include/unicode/stringpiece.h", + "include/unicode/stringtriebuilder.h", + "include/unicode/stsearch.h", + "include/unicode/symtable.h", + "include/unicode/tblcoll.h", + "include/unicode/timezone.h", + "include/unicode/tmunit.h", + "include/unicode/tmutamt.h", + "include/unicode/tmutfmt.h", + "include/unicode/translit.h", + "include/unicode/tzfmt.h", + "include/unicode/tznames.h", + "include/unicode/tzrule.h", + "include/unicode/tztrans.h", + "include/unicode/ubidi.h", + "include/unicode/ubiditransform.h", + "include/unicode/ubrk.h", + "include/unicode/ucal.h", + "include/unicode/ucasemap.h", + "include/unicode/ucat.h", + "include/unicode/uchar.h", + "include/unicode/ucharstrie.h", + "include/unicode/ucharstriebuilder.h", + "include/unicode/uchriter.h", + "include/unicode/uclean.h", + "include/unicode/ucnv.h", + "include/unicode/ucnv_cb.h", + "include/unicode/ucnv_err.h", + "include/unicode/ucnvsel.h", + "include/unicode/ucol.h", + "include/unicode/ucoleitr.h", + "include/unicode/uconfig.h", + "include/unicode/ucpmap.h", + "include/unicode/ucptrie.h", + "include/unicode/ucsdet.h", + "include/unicode/ucurr.h", + "include/unicode/udat.h", + "include/unicode/udata.h", + "include/unicode/udateintervalformat.h", + "include/unicode/udatpg.h", + "include/unicode/udisplaycontext.h", + "include/unicode/udisplayoptions.h", + "include/unicode/uenum.h", + "include/unicode/ufieldpositer.h", + "include/unicode/uformattable.h", + "include/unicode/uformattednumber.h", + "include/unicode/uformattedvalue.h", + "include/unicode/ugender.h", + "include/unicode/uidna.h", + "include/unicode/uiter.h", + "include/unicode/uldnames.h", + "include/unicode/ulistformatter.h", + "include/unicode/uloc.h", + "include/unicode/ulocdata.h", + "include/unicode/umachine.h", + "include/unicode/umisc.h", + "include/unicode/umsg.h", + "include/unicode/umutablecptrie.h", + "include/unicode/unifilt.h", + "include/unicode/unifunct.h", + "include/unicode/unimatch.h", + "include/unicode/unirepl.h", + "include/unicode/uniset.h", + "include/unicode/unistr.h", + "include/unicode/unorm.h", + "include/unicode/unorm2.h", + "include/unicode/unum.h", + "include/unicode/unumberformatter.h", + "include/unicode/unumberoptions.h", + "include/unicode/unumberrangeformatter.h", + "include/unicode/unumsys.h", + "include/unicode/uobject.h", + "include/unicode/upluralrules.h", + "include/unicode/uregex.h", + "include/unicode/uregion.h", + "include/unicode/ureldatefmt.h", + "include/unicode/urename.h", + "include/unicode/urep.h", + "include/unicode/ures.h", + "include/unicode/uscript.h", + "include/unicode/usearch.h", + "include/unicode/uset.h", + "include/unicode/usetiter.h", + "include/unicode/ushape.h", + "include/unicode/usimplenumberformatter.h", + "include/unicode/uspoof.h", + "include/unicode/usprep.h", + "include/unicode/ustdio.h", + "include/unicode/ustream.h", + "include/unicode/ustring.h", + "include/unicode/ustringtrie.h", + "include/unicode/utext.h", + "include/unicode/utf.h", + "include/unicode/utf16.h", + "include/unicode/utf32.h", + "include/unicode/utf8.h", + "include/unicode/utf_old.h", + "include/unicode/utmscale.h", + "include/unicode/utrace.h", + "include/unicode/utrans.h", + "include/unicode/utypes.h", + "include/unicode/uvernum.h", + "include/unicode/uversion.h", + "include/unicode/vtzone.h", + "lib/icu/73.1/Makefile.inc", + "lib/icu/73.1/pkgdata.inc", + "lib/icu/Makefile.inc", + "lib/icu/current", + "lib/icu/pkgdata.inc", + "lib/libicudata.a", + "lib/libicudata.so", + "lib/libicudata.so.73", + "lib/libicudata.so.73.1", + "lib/libicui18n.a", + "lib/libicui18n.so", + "lib/libicui18n.so.73", + "lib/libicui18n.so.73.1", + "lib/libicuio.a", + "lib/libicuio.so", + "lib/libicuio.so.73", + "lib/libicuio.so.73.1", + "lib/libicutest.a", + "lib/libicutest.so", + "lib/libicutest.so.73", + "lib/libicutest.so.73.1", + "lib/libicutu.a", + "lib/libicutu.so", + "lib/libicutu.so.73", + "lib/libicutu.so.73.1", + "lib/libicuuc.a", + "lib/libicuuc.so", + "lib/libicuuc.so.73", + "lib/libicuuc.so.73.1", + "lib/pkgconfig/icu-i18n.pc", + "lib/pkgconfig/icu-io.pc", + "lib/pkgconfig/icu-uc.pc", + "share/icu/73.1/LICENSE", + "share/icu/73.1/config/mh-linux", + "share/icu/73.1/install-sh", + "share/icu/73.1/mkinstalldirs", + "share/man/man1/derb.1", + "share/man/man1/genbrk.1", + "share/man/man1/gencfu.1", + "share/man/man1/gencnval.1", + "share/man/man1/gendict.1", + "share/man/man1/genrb.1", + "share/man/man1/icu-config.1", + "share/man/man1/icuexportdata.1", + "share/man/man1/makeconv.1", + "share/man/man1/pkgdata.1", + "share/man/man8/genccode.8", + "share/man/man8/gencmn.8", + "share/man/man8/gensprep.8", + "share/man/man8/icupkg.8" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/icu-config", + "prefix_placeholder": "/croot/icu_1692293016303/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pla", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "eca961a2f2834a7badc0cc540ca898a39d6ab7c9f9b7f035a25a3124810e2bc0", + "size_in_bytes": 22833, + "sha256_in_prefix": "af9a7efca6d1f97e30f8eec047467696a9e0755488d6b4988944420c6282dbaf" + }, + { + "_path": "lib/icu/73.1/Makefile.inc", + "prefix_placeholder": "/croot/icu_1692293016303/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pla", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "9320fb707e4b1519116a878c04f7c55b15aef0ebd5e8b9d630f8970de4a7b15e", + "size_in_bytes": 10360, + "sha256_in_prefix": "b993f0154075caa720bef3fa86b4b01ebfed72f02aeb26b29ea616b2ad395b97" + }, + { + "_path": "lib/icu/73.1/pkgdata.inc", + "prefix_placeholder": "/croot/icu_1692293016303/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pla", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "271a62f6702c53af0ad449fb879ed537f4342c6e9fb4bc4cd962e80313415f7b", + "size_in_bytes": 3901, + "sha256_in_prefix": "f0fc58c38e57394042c73b41686b8a3d2c512bf6c4b24493b26fa1e39f890fd0" + }, + { + "_path": "lib/pkgconfig/icu-i18n.pc", + "prefix_placeholder": "/croot/icu_1692293016303/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pla", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "6735acdebadc713fb35b4123cea847e193256858077e7340468c8c914e27af03", + "size_in_bytes": 1491, + "sha256_in_prefix": "db26ef2501c9f16b846cdc100da2e9fb38c3b33b225ab8cf8105634664574fde" + }, + { + "_path": "lib/pkgconfig/icu-io.pc", + "prefix_placeholder": "/croot/icu_1692293016303/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pla", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "13750b0aec6bd2c68a84e2be9490b1da451c27385c89af6f99c95d94dda9296d", + "size_in_bytes": 1483, + "sha256_in_prefix": "c04589269c7cdede4f24a2d1d9079f2724d9e837d16bd72de0728be345257f86" + }, + { + "_path": "lib/pkgconfig/icu-uc.pc", + "prefix_placeholder": "/croot/icu_1692293016303/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pla", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "acd3c540c46449e8662aa45cfa5106f5397cde9b29d6be9df93a980b6459872a", + "size_in_bytes": 1515, + "sha256_in_prefix": "d0fad36e31371355f20d92a279091c7967995e1eae5ab4705c811a32411b1f2b" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/icu-73.1-h6a678d5_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/idna-3.11-py313h06a4308_0.json b/miniconda3/conda-meta/idna-3.11-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..e125e0b1df1e3cc16db1c1db9b1fd91b79bdb6e4 --- /dev/null +++ b/miniconda3/conda-meta/idna-3.11-py313h06a4308_0.json @@ -0,0 +1,60 @@ +{ + "name": "idna", + "version": "3.11", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "idna-3.11-py313h06a4308_0.conda", + "md5": "c8b25d0fe19ba1a7319a0221e7615265", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/idna-3.11-py313h06a4308_0.conda", + "sha256": "2cbd75d6f8a108b989d3f580ffc40fbee43349e272794d1227fb11fe31191196", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "BSD-3-Clause", + "license_family": "BSD", + "timestamp": 1761911998000, + "size": 202882, + "requested_spec": "pkgs/main/linux-64::idna==3.11=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/idna-3.11-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/idna-3.11-py313h06a4308_0", + "files": [ + "lib/python3.13/site-packages/idna-3.11.dist-info/INSTALLER", + "lib/python3.13/site-packages/idna-3.11.dist-info/METADATA", + "lib/python3.13/site-packages/idna-3.11.dist-info/RECORD", + "lib/python3.13/site-packages/idna-3.11.dist-info/REQUESTED", + "lib/python3.13/site-packages/idna-3.11.dist-info/WHEEL", + "lib/python3.13/site-packages/idna-3.11.dist-info/direct_url.json", + "lib/python3.13/site-packages/idna-3.11.dist-info/licenses/LICENSE.md", + "lib/python3.13/site-packages/idna/__init__.py", + "lib/python3.13/site-packages/idna/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/idna/__pycache__/codec.cpython-313.pyc", + "lib/python3.13/site-packages/idna/__pycache__/compat.cpython-313.pyc", + "lib/python3.13/site-packages/idna/__pycache__/core.cpython-313.pyc", + "lib/python3.13/site-packages/idna/__pycache__/idnadata.cpython-313.pyc", + "lib/python3.13/site-packages/idna/__pycache__/intranges.cpython-313.pyc", + "lib/python3.13/site-packages/idna/__pycache__/package_data.cpython-313.pyc", + "lib/python3.13/site-packages/idna/__pycache__/uts46data.cpython-313.pyc", + "lib/python3.13/site-packages/idna/codec.py", + "lib/python3.13/site-packages/idna/compat.py", + "lib/python3.13/site-packages/idna/core.py", + "lib/python3.13/site-packages/idna/idnadata.py", + "lib/python3.13/site-packages/idna/intranges.py", + "lib/python3.13/site-packages/idna/package_data.py", + "lib/python3.13/site-packages/idna/py.typed", + "lib/python3.13/site-packages/idna/uts46data.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/idna-3.11-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/initial-state.explicit.txt b/miniconda3/conda-meta/initial-state.explicit.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6f4bc02cd1188d6af1406b1ac7ca771b223d742 --- /dev/null +++ b/miniconda3/conda-meta/initial-state.explicit.txt @@ -0,0 +1,149 @@ +# This file may be used to create an environment using: +# $ conda create --name --file +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda#c3473ff8bdb3d124ed5ff11ec380d6f9 +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2025.12.2-h06a4308_0.conda#4a93c43656592eb990b914fead171268 +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.44-h153f514_2.conda#dffdc9a0e09d04051d4bd758e104f4b3 +https://repo.anaconda.com/pkgs/main/linux-64/libgomp-15.2.0-h4751f2c_7.conda#82025ed6da944bd419d42d9b1ff116aa +https://repo.anaconda.com/pkgs/main/linux-64/nlohmann_json-3.11.2-h6a678d5_0.conda#36890f7abd98066b607211b1773e6343 +https://repo.anaconda.com/pkgs/main/noarch/pybind11-abi-5-hd3eb1b0_0.conda#7f0df6639fdf60ccd3045ee6faedd32f +https://repo.anaconda.com/pkgs/main/linux-64/python_abi-3.13-3_cp313.conda#5af1bf885def2fa779b0bb002e53651b +https://repo.anaconda.com/pkgs/main/noarch/tzdata-2025c-he532380_0.conda#6e382d15985f0eb3641376c4ec105389 +https://repo.anaconda.com/pkgs/main/linux-64/_openmp_mutex-5.1-1_gnu.conda#71d281e9c2192cb3fa425655a8defb85 +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-15.2.0-h69a1729_7.conda#01fb1b8725fc7f66312b9d409758917a +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-15.2.0-h166f726_7.conda#2783efb2502b9caa7f08e25fd54df899 +https://repo.anaconda.com/pkgs/main/linux-64/libiconv-1.18-h75a1612_0.conda#14e4ca2d3797abc3c78ca0ce0e3d9c17 +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-15.2.0-h39759b7_7.conda#7dc7ec61ceea5de17f3e2c4c5f442fc6 +https://repo.anaconda.com/pkgs/main/linux-64/openssl-3.5.5-h1b28b03_0.conda#96c41caadc229cc56c4fbcb26bb5b8cd +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.8.2-h448239c_0.conda#3cf8f0b9f45cd775a7ee57ede84f827f +https://repo.anaconda.com/pkgs/main/linux-64/bzip2-1.0.8-h5eee18b_6.conda#f21a3ff51c1b271977f53ce956a69297 +https://repo.anaconda.com/pkgs/main/linux-64/c-ares-1.34.6-hd44998d_0.conda#e16f3bb02771b2e37ea421a3f8ee1ebb +https://repo.anaconda.com/pkgs/main/linux-64/jansson-2.14-h5eee18b_1.conda#852537d568f5ed410a100d65424039dc +https://repo.anaconda.com/pkgs/main/linux-64/libasprintf-0.25.1-hf2ab22a_0.conda#9fe17fea3f12a5dcc483b89f48e361da +https://repo.anaconda.com/pkgs/main/linux-64/libbrotlicommon-1.2.0-h32cd6e7_0.conda#cdc0bbfec0c99b30d435b22341a716b0 +https://repo.anaconda.com/pkgs/main/linux-64/libev-4.33-h7f8727e_1.conda#5065620db4393fb549f30114a33897d1 +https://repo.anaconda.com/pkgs/main/linux-64/libexpat-2.7.4-h7354ed3_0.conda#04be005097756bc24b1929f4646506ae +https://repo.anaconda.com/pkgs/main/linux-64/libgettextpo-0.25.1-hf2ab22a_0.conda#775a5698ec2a0aa6e2435b86418b563f +https://repo.anaconda.com/pkgs/main/linux-64/libmpdec-4.0.0-h5eee18b_0.conda#feb10f42b1a7b523acbf85461be41a3e +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-15.2.0-hc03a8fd_7.conda#cf200522c0b13d64bf81035358d05f5b +https://repo.anaconda.com/pkgs/main/linux-64/libunistring-1.3-hb25bd0a_0.conda#46838e72a11b9934a5e4e40530018ccf +https://repo.anaconda.com/pkgs/main/linux-64/libuuid-1.41.5-h5eee18b_0.conda#4a6a2354414c9080327274aa514e5299 +https://repo.anaconda.com/pkgs/main/linux-64/libzlib-1.3.1-hb25bd0a_0.conda#338ee51e19ee211b7fc994d4ba88c631 +https://repo.anaconda.com/pkgs/main/linux-64/lmdb-0.9.31-hb25bd0a_0.conda#1468bc20414b0fa8eb1b18d3a916039f +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.5-h7934f7d_0.conda#0abfc090299da4bb031b84c64309757b +https://repo.anaconda.com/pkgs/main/linux-64/pthread-stubs-0.3-h0ce48e5_1.conda#973a642312d2a28927aaf5b477c67250 +https://repo.anaconda.com/pkgs/main/linux-64/reproc-14.2.4-h6a678d5_2.conda#3c6dbc6c60b3897222d79359343e90fa +https://repo.anaconda.com/pkgs/main/linux-64/xorg-libxau-1.0.12-h9b100fa_0.conda#a8005a9f6eb903e113cd5363e8a11459 +https://repo.anaconda.com/pkgs/main/linux-64/xorg-libxdmcp-1.1.5-h9b100fa_0.conda#c284a09ddfba81d9c4e740110f09ea06 +https://repo.anaconda.com/pkgs/main/linux-64/xorg-xorgproto-2024.1-h5eee18b_1.conda#412a0d97a7a51d23326e57226189da92 +https://repo.anaconda.com/pkgs/main/linux-64/cpp-expected-1.1.0-hdb19cb5_0.conda#3a195bcf47b691adb4a635a8b7f396f7 +https://repo.anaconda.com/pkgs/main/linux-64/expat-2.7.4-h7354ed3_0.conda#575218bf09aa99037a6e3bb1f43796a8 +https://repo.anaconda.com/pkgs/main/linux-64/fmt-11.2.0-hca5f364_0.conda#0615a40b477dd3a4488d67cd422a1365 +https://repo.anaconda.com/pkgs/main/linux-64/gettext-tools-0.25.1-h6a67909_0.conda#ac944526cc2d27ffa3c44a42cd86f46d +https://repo.anaconda.com/pkgs/main/linux-64/icu-73.1-h6a678d5_0.conda#6d09df641fc23f7d277a04dc7ea32dd4 +https://repo.anaconda.com/pkgs/main/linux-64/libasprintf-devel-0.25.1-hf2ab22a_0.conda#114f7a7ae6d01b7f5d568439769857f7 +https://repo.anaconda.com/pkgs/main/linux-64/libbrotlidec-1.2.0-ha2c5f68_0.conda#7cad8348df1c96bf2f0a697806d1b3b5 +https://repo.anaconda.com/pkgs/main/linux-64/libbrotlienc-1.2.0-h2e96acb_0.conda#854af1d6af8b3565fa8c7edb2141a2de +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.4.4-h6a678d5_1.conda#70646cc713f0c43926cfdcfe9b695fe0 +https://repo.anaconda.com/pkgs/main/linux-64/libgettextpo-devel-0.25.1-hf2ab22a_0.conda#5766eead346251db288d5b13c3dffd6f +https://repo.anaconda.com/pkgs/main/linux-64/libkrb5-1.22.1-h6d2bf13_0.conda#82619ec95cc6d12cec07401b3722ce89 +https://repo.anaconda.com/pkgs/main/linux-64/libxcb-1.17.0-h9b100fa_0.conda#fdf0d380fa3809a301e2dbc0d5183883 +https://repo.anaconda.com/pkgs/main/linux-64/lz4-c-1.9.4-h6a678d5_1.conda#2ee58861f2b92b868ce761abb831819d +https://repo.anaconda.com/pkgs/main/linux-64/readline-8.3-hc2a1206_0.conda#8578e006d4ef5cb98a6cda232b3490f6 +https://repo.anaconda.com/pkgs/main/linux-64/reproc-cpp-14.2.4-h6a678d5_2.conda#b03aa4903158279f003e7032ab9f5601 +https://repo.anaconda.com/pkgs/main/linux-64/simdjson-3.10.1-hdb19cb5_0.conda#7b2a4b5be590071e1b4dce77b413d26a +https://repo.anaconda.com/pkgs/main/linux-64/yaml-cpp-0.8.0-h6a678d5_1.conda#015d2d74ad3c8e53eec3358637433718 +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.3.1-hb25bd0a_0.conda#9f3a877e5e0fa0fb39253a59ff824861 +https://repo.anaconda.com/pkgs/main/linux-64/gettext-0.25.1-h92eb808_0.conda#df53b928c3a9dd53c7f4e87cc03e03d2 +https://repo.anaconda.com/pkgs/main/linux-64/libssh2-1.11.1-h251f7ec_0.conda#dd68c24355431c0543339dda1404129d +https://repo.anaconda.com/pkgs/main/linux-64/libxml2-2.13.9-h2c43086_0.conda#72d5d2d627dd9b7780781e7aa6a12689 +https://repo.anaconda.com/pkgs/main/linux-64/pcre2-10.46-hf426167_0.conda#49c2031dcebd085e49c3aff84479e314 +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.51.1-he0a8d7e_0.conda#63165d4db945c028e17efd2c87320926 +https://repo.anaconda.com/pkgs/main/linux-64/xorg-libx11-1.8.12-h9b100fa_1.conda#6298b27afae6f49f03765b2a03df2fcb +https://repo.anaconda.com/pkgs/main/linux-64/zstd-1.5.7-h11fc155_0.conda#93b0e546434bfb874aeefd6bb6cf40bb +https://repo.anaconda.com/pkgs/main/linux-64/dbus-1.16.2-h5bd4931_0.conda#4c4aef417b613e7111d90cf2348b231a +https://repo.anaconda.com/pkgs/main/linux-64/libarchive-3.8.2-h3ec8f01_0.conda#7e646e7deafe4482bb0b9525ab748132 +https://repo.anaconda.com/pkgs/main/linux-64/libidn2-2.3.8-hf80d704_0.conda#7ab70b332bb2df9ce90a1567126b5d2a +https://repo.anaconda.com/pkgs/main/linux-64/libnghttp2-1.67.1-h697f920_0.conda#c509cea724fbc22300e5ce9ced97d569 +https://repo.anaconda.com/pkgs/main/linux-64/libsolv-0.7.30-h6f1ccf3_2.conda#0d547d53349f3fcf4a20c9a207c08a3b +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.15-h54e0aa7_0.conda#1fa91e0c4fc9c9435eda3f1a25a676fd +https://repo.anaconda.com/pkgs/main/linux-64/libcurl-8.18.0-h3506a8c_0.conda#2963726272327ecbb6727c670302dbd9 +https://repo.anaconda.com/pkgs/main/linux-64/python-3.13.12-hb7b561f_100_cp313.conda#f0c9d56e080ab6f2838d1626225cdd37 +https://repo.anaconda.com/pkgs/main/linux-64/libmamba-2.3.2-h860b5fb_1.conda#c9351e4b3b09fbe3c3bba5526acbf19c +https://repo.anaconda.com/pkgs/main/linux-64/menuinst-2.4.2-py313h06a4308_1.conda#3c19869ee69743cd3e6ed44610f7b845 +https://repo.anaconda.com/pkgs/main/noarch/anaconda-anon-usage-0.7.5-pyhb46e38b_100.conda#e3c78ac191246e36d9ddd1f25cd56fd7 +https://repo.anaconda.com/pkgs/main/linux-64/annotated-types-0.6.0-py313h06a4308_1.conda#3d0213cea41b88c15fdf1ed04eba799c +https://repo.anaconda.com/pkgs/main/noarch/archspec-0.2.5-pyhd3eb1b0_0.conda#c0ad195970a65c174b997011ac13f2f8 +https://repo.anaconda.com/pkgs/main/linux-64/boltons-25.0.0-py313h06a4308_0.conda#afd30cc40ab0edf4e246b901c8eca725 +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2026.01.04-py313h06a4308_0.conda#76d1efd083cb0251ec8295c355adb1e2 +https://repo.anaconda.com/pkgs/main/linux-64/charset-normalizer-3.4.4-py313h06a4308_0.conda#36134f1eb9574beab525f137faa53cd7 +https://repo.anaconda.com/pkgs/main/linux-64/click-8.2.1-py313h06a4308_1.conda#cd0c96b38e17a2b268d15d0b22da55b3 +https://repo.anaconda.com/pkgs/main/linux-64/distro-1.9.0-py313h06a4308_0.conda#1fd7ab065e9958e7bbd4d3fbf175742b +https://repo.anaconda.com/pkgs/main/linux-64/frozendict-2.4.6-py313hee96239_0.conda#26dfe875df9973e0e98ec5add063e00e +https://repo.anaconda.com/pkgs/main/linux-64/h11-0.16.0-py313h06a4308_1.conda#64c98017f4f5b701ed2b2f20d5e9ea4c +https://repo.anaconda.com/pkgs/main/linux-64/idna-3.11-py313h06a4308_0.conda#c8b25d0fe19ba1a7319a0221e7615265 +https://repo.anaconda.com/pkgs/main/linux-64/jaraco.context-6.1.0-py313h06a4308_0.conda#54a430923247a921a5c57e330e04549f +https://repo.anaconda.com/pkgs/main/noarch/jeepney-0.7.1-pyhd3eb1b0_0.conda#f115ef0af90b59f35ef56743955979a4 +https://repo.anaconda.com/pkgs/main/linux-64/jsonpointer-3.0.0-py313h06a4308_0.conda#af07fefbc353b9e3292ad9e0d563d9be +https://repo.anaconda.com/pkgs/main/linux-64/libmambapy-2.3.2-py313h3f77f5b_1.conda#a974c724de77f79cd7e926116fd861df +https://repo.anaconda.com/pkgs/main/linux-64/mdurl-0.1.2-py313h06a4308_0.conda#39da6986b50a3eb3cbf60c9883f4b92e +https://repo.anaconda.com/pkgs/main/linux-64/more-itertools-10.8.0-py313h06a4308_0.conda#bd0dee4808dd6acb561fce514a345c3d +https://repo.anaconda.com/pkgs/main/linux-64/msgpack-python-1.1.1-py313h6a678d5_0.conda#b1fb5c763a2d3e15e633e84bccf52ce4 +https://repo.anaconda.com/pkgs/main/linux-64/packaging-25.0-py313h06a4308_1.conda#816867d682a95116d8c08e63d2e65ad2 +https://repo.anaconda.com/pkgs/main/linux-64/pkce-1.0.3-py313h06a4308_0.conda#a1e79da30a6c62c6398e9bb990ee9ed6 +https://repo.anaconda.com/pkgs/main/linux-64/platformdirs-4.5.0-py313h06a4308_0.conda#7b88d036315bb494eb9a3f2dfb59b555 +https://repo.anaconda.com/pkgs/main/linux-64/pluggy-1.5.0-py313h06a4308_0.conda#ea142d52281afe8e9a79e4a33c023e41 +https://repo.anaconda.com/pkgs/main/linux-64/pycosat-0.6.6-py313h5eee18b_2.conda#60ea7416e08d78563e31d16c333bd57f +https://repo.anaconda.com/pkgs/main/linux-64/pycparser-2.23-py313h06a4308_0.conda#83153b618937780dfcf0eea5cf2536d8 +https://repo.anaconda.com/pkgs/main/linux-64/pygments-2.19.2-py313h06a4308_0.conda#93f96a6dab840a4f2a94aa0e490ce840 +https://repo.anaconda.com/pkgs/main/linux-64/pyjwt-2.10.1-py313h06a4308_1.conda#8cf3e594e1de0f7fd393c4d202ab39df +https://repo.anaconda.com/pkgs/main/linux-64/pysocks-1.7.1-py313h06a4308_1.conda#e1ab9ffa1588856f0bdbb204322568c4 +https://repo.anaconda.com/pkgs/main/linux-64/python-dotenv-1.2.1-py313h06a4308_0.conda#6aa550906f91d13d1371c07e9cb5c5c3 +https://repo.anaconda.com/pkgs/main/linux-64/readchar-4.2.1-py313h06a4308_0.conda#33b7455bfa1462c42bbc9a0535070313 +https://repo.anaconda.com/pkgs/main/linux-64/ruamel.yaml.clib-0.2.14-py313h4aee224_0.conda#dad8d758af9c2b4369776c601407d9bd +https://repo.anaconda.com/pkgs/main/linux-64/semver-3.0.4-py313h06a4308_0.conda#985226bbcb23ebc859128ca676ad6321 +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-80.10.2-py313h06a4308_0.conda#9c2048dafbf774c9f53c273a4e465110 +https://repo.anaconda.com/pkgs/main/linux-64/shellingham-1.5.4-py313h06a4308_0.conda#843241073919fc2c912f6ed85d14681d +https://repo.anaconda.com/pkgs/main/linux-64/sniffio-1.3.1-py313h06a4308_0.conda#face17589cf2b386d76cc870234dfe6e +https://repo.anaconda.com/pkgs/main/linux-64/tomli-2.4.0-py313h06a4308_0.conda#782987d420694bdc4a207a16db446a56 +https://repo.anaconda.com/pkgs/main/linux-64/tomlkit-0.13.3-py313h06a4308_0.conda#d625085e004f964c54b88a3c6c5e8d7e +https://repo.anaconda.com/pkgs/main/linux-64/tqdm-4.67.3-py313h7040dfc_1.conda#17b9f23e939b55ab9cab471b694a79d7 +https://repo.anaconda.com/pkgs/main/linux-64/truststore-0.10.1-py313h06a4308_1.conda#f365c6753a35068503a4fba9a29953ff +https://repo.anaconda.com/pkgs/main/linux-64/typing_extensions-4.15.0-py313h06a4308_0.conda#f3ef53d8c6a2ecffb4fca9c1ddc2bbc9 +https://repo.anaconda.com/pkgs/main/linux-64/anyio-4.10.0-py313h06a4308_0.conda#89b959a85a37e33a4f8493a352ac61ea +https://repo.anaconda.com/pkgs/main/linux-64/cffi-2.0.0-py313h4eded50_1.conda#48989473c291f70b074ba57b48d4eda5 +https://repo.anaconda.com/pkgs/main/linux-64/httpcore-1.0.9-py313h06a4308_0.conda#77016551f9607c23c6243632bf100507 +https://repo.anaconda.com/pkgs/main/linux-64/jaraco.classes-3.4.0-py313h06a4308_0.conda#c4ea3f7208a811b569bbeae8c42c5b2d +https://repo.anaconda.com/pkgs/main/linux-64/jaraco.functools-4.4.0-py313h06a4308_0.conda#9572b85d5f84049bc36867f49d498520 +https://repo.anaconda.com/pkgs/main/linux-64/jsonpatch-1.33-py313h06a4308_1.conda#8cb4b1755a4a8fd6a57883863236ef2b +https://repo.anaconda.com/pkgs/main/linux-64/markdown-it-py-4.0.0-py313h06a4308_1.conda#f515d22e3c87bcf86d4cd5c877bc34cd +https://repo.anaconda.com/pkgs/main/linux-64/ruamel.yaml-0.18.16-py313h4aee224_0.conda#dc961556c7bbe4e2aa959e36ab816dcd +https://repo.anaconda.com/pkgs/main/linux-64/typer-slim-0.20.0-py313h06a4308_1.conda#1d5785a482a13f84097ba02722141e5d +https://repo.anaconda.com/pkgs/main/linux-64/typing-extensions-4.15.0-py313h06a4308_0.conda#1c8a1efd0b3a33cee5c2dceae66bbc69 +https://repo.anaconda.com/pkgs/main/linux-64/typing-inspection-0.4.2-py313h06a4308_0.conda#b5ea08882d6d5cca3e38a27a3575e85c +https://repo.anaconda.com/pkgs/main/linux-64/wheel-0.46.3-py313h06a4308_0.conda#6730c94b00e7d802f421acd3a435af84 +https://repo.anaconda.com/pkgs/main/linux-64/brotlicffi-1.2.0.0-py313h7354ed3_0.conda#d309f82c145a73fedf7bc6930f689dba +https://repo.anaconda.com/pkgs/main/linux-64/cryptography-46.0.5-py313h04fe016_1.conda#72960bef9c9245c6c53204182d4d4012 +https://repo.anaconda.com/pkgs/main/linux-64/httpx-0.28.1-py313h06a4308_1.conda#d25af3a5cbefe54951cb3dc369b945bb +https://repo.anaconda.com/pkgs/main/noarch/pip-26.0.1-pyhc872135_0.conda#5835195770c796fcd0a15547e58b90f9 +https://repo.anaconda.com/pkgs/main/linux-64/pydantic-core-2.41.5-py313h498d7c9_1.conda#d943970fbb63d8d9e6f5d805f2a6fbdf +https://repo.anaconda.com/pkgs/main/linux-64/rich-14.2.0-py313h06a4308_0.conda#f4775d8f7f987cff7f067c7a47c66723 +https://repo.anaconda.com/pkgs/main/linux-64/zstandard-0.24.0-py313h3d778a8_0.conda#78685aca3b481cf213b92abfbe0b2b21 +https://repo.anaconda.com/pkgs/main/linux-64/conda-content-trust-0.2.0-py313h06a4308_1.conda#aefc551e21e13ecc1de44ee589aea77d +https://repo.anaconda.com/pkgs/main/linux-64/pydantic-2.12.4-py313h06a4308_0.conda#eb110130647dfd406d8af717e3fa83a1 +https://repo.anaconda.com/pkgs/main/linux-64/secretstorage-3.4.0-py313h3e8c6aa_0.conda#4293ddebd1f1c6c083c0e0081b72e30e +https://repo.anaconda.com/pkgs/main/linux-64/typer-slim-standard-0.20.0-py313h06a4308_1.conda#9dd2ed87dd542c2ccde13c6e2e29a311 +https://repo.anaconda.com/pkgs/main/linux-64/urllib3-2.6.3-py313h06a4308_0.conda#23108bceb7bbce3e449c9c55ecbaa296 +https://repo.anaconda.com/pkgs/main/linux-64/keyring-25.7.0-py313h06a4308_0.conda#6d505a62b565ff3d80d5a6662a83d54a +https://repo.anaconda.com/pkgs/main/linux-64/pydantic-settings-2.12.0-py313h06a4308_0.conda#52b991b3676ad69221ac4efe952ea622 +https://repo.anaconda.com/pkgs/main/linux-64/requests-2.32.5-py313h06a4308_1.conda#fad2ba22ead9ddf78230e158ef8eac5b +https://repo.anaconda.com/pkgs/main/linux-64/typer-0.20.0-py313h06a4308_1.conda#d9b03aa4048c711087209d7c35e3fb32 +https://repo.anaconda.com/pkgs/main/linux-64/anaconda-cli-base-0.8.1-py313h06a4308_0.conda#efcf0008a5dd126dcba3a3e556828d50 +https://repo.anaconda.com/pkgs/main/linux-64/conda-package-streaming-0.12.0-py313h06a4308_1.conda#56c2a9c6a706a12193c0b98ef951b4b6 +https://repo.anaconda.com/pkgs/main/linux-64/anaconda-auth-0.13.0-py313h06a4308_0.conda#bbd5cbd9b4516a729a1d5414e9320ed9 +https://repo.anaconda.com/pkgs/main/linux-64/conda-package-handling-2.4.0-py313h06a4308_1.conda#8df01d8631f16021fe6e7f0093de07db +https://repo.anaconda.com/pkgs/main/linux-64/conda-26.1.1-py313h06a4308_0.conda#c47ffd5c56a75b1b62855a3c8e430889 +https://repo.anaconda.com/pkgs/main/noarch/conda-anaconda-telemetry-0.3.0-pyhd3eb1b0_1.conda#2ac481091c9cc4eec50cf2f0cc42744d +https://repo.anaconda.com/pkgs/main/linux-64/conda-anaconda-tos-0.2.2-py313h06a4308_1.conda#48b92f96da51225fe57f3fe687eec943 +https://repo.anaconda.com/pkgs/main/noarch/conda-libmamba-solver-25.11.0-pyhdf14ebd_0.conda#55ec979db3871d534aab09d7a06f71e6 diff --git a/miniconda3/conda-meta/jansson-2.14-h5eee18b_1.json b/miniconda3/conda-meta/jansson-2.14-h5eee18b_1.json new file mode 100644 index 0000000000000000000000000000000000000000..ecf3db62b5fb6cc78acb65ccbf6b428f00d0315b --- /dev/null +++ b/miniconda3/conda-meta/jansson-2.14-h5eee18b_1.json @@ -0,0 +1,51 @@ +{ + "name": "jansson", + "version": "2.14", + "build": "h5eee18b_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "jansson-2.14-h5eee18b_1.conda", + "md5": "852537d568f5ed410a100d65424039dc", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/jansson-2.14-h5eee18b_1.conda", + "sha256": "e76928987010e8d60fe7e2edbbf733643ed16f17eb9cbcd96bc4dcb2d823dec2", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "libgcc-ng >=11.2.0" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1705704612000, + "size": 38170, + "requested_spec": "pkgs/main/linux-64::jansson==2.14=h5eee18b_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/jansson-2.14-h5eee18b_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/jansson-2.14-h5eee18b_1", + "files": [ + "include/jansson.h", + "include/jansson_config.h", + "lib/libjansson.so", + "lib/libjansson.so.4", + "lib/libjansson.so.4.14.0", + "lib/pkgconfig/jansson.pc" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/pkgconfig/jansson.pc", + "prefix_placeholder": "/croot/jansson_1705704561840/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "4eadc4f6807429995daf474d03b861517077471809629af86b087071b70d2a61", + "size_in_bytes": 492, + "sha256_in_prefix": "093c93a3d61d87f411b38239b02390d0851a68915ecac617b10c897a0eb03a43" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/jansson-2.14-h5eee18b_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/jaraco.classes-3.4.0-py313h06a4308_0.json b/miniconda3/conda-meta/jaraco.classes-3.4.0-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..c06ec1787e28cc2751d8eef572a4876654cfd969 --- /dev/null +++ b/miniconda3/conda-meta/jaraco.classes-3.4.0-py313h06a4308_0.json @@ -0,0 +1,54 @@ +{ + "name": "jaraco.classes", + "version": "3.4.0", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "jaraco.classes-3.4.0-py313h06a4308_0.conda", + "md5": "c4ea3f7208a811b569bbeae8c42c5b2d", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/jaraco.classes-3.4.0-py313h06a4308_0.conda", + "sha256": "74c2d4abcff4a9dcce44b7a2180bf08b834cfc72ac9745ff318fb44b27c93516", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "more-itertools", + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1755516354000, + "size": 19952, + "requested_spec": "pkgs/main/linux-64::jaraco.classes==3.4.0=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/jaraco.classes-3.4.0-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/jaraco.classes-3.4.0-py313h06a4308_0", + "files": [ + "lib/python3.13/site-packages/jaraco/classes/__init__.py", + "lib/python3.13/site-packages/jaraco/classes/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/jaraco/classes/__pycache__/ancestry.cpython-313.pyc", + "lib/python3.13/site-packages/jaraco/classes/__pycache__/meta.cpython-313.pyc", + "lib/python3.13/site-packages/jaraco/classes/__pycache__/properties.cpython-313.pyc", + "lib/python3.13/site-packages/jaraco/classes/ancestry.py", + "lib/python3.13/site-packages/jaraco/classes/meta.py", + "lib/python3.13/site-packages/jaraco/classes/properties.py", + "lib/python3.13/site-packages/jaraco/classes/py.typed", + "lib/python3.13/site-packages/jaraco_classes-3.4.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/jaraco_classes-3.4.0.dist-info/METADATA", + "lib/python3.13/site-packages/jaraco_classes-3.4.0.dist-info/RECORD", + "lib/python3.13/site-packages/jaraco_classes-3.4.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/jaraco_classes-3.4.0.dist-info/WHEEL", + "lib/python3.13/site-packages/jaraco_classes-3.4.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/jaraco_classes-3.4.0.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/jaraco_classes-3.4.0.dist-info/top_level.txt" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/jaraco.classes-3.4.0-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/jaraco.context-6.1.0-py313h06a4308_0.json b/miniconda3/conda-meta/jaraco.context-6.1.0-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..1b82d5ff1dfe60886b8c3fdf69dc493acf3bb493 --- /dev/null +++ b/miniconda3/conda-meta/jaraco.context-6.1.0-py313h06a4308_0.json @@ -0,0 +1,47 @@ +{ + "name": "jaraco.context", + "version": "6.1.0", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "jaraco.context-6.1.0-py313h06a4308_0.conda", + "md5": "54a430923247a921a5c57e330e04549f", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/jaraco.context-6.1.0-py313h06a4308_0.conda", + "sha256": "ef4eebc2a04a062e54a6d4c318f70b88a737cb48706b2e9b1ec1f12cd0e24214", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1769477866000, + "size": 17104, + "requested_spec": "pkgs/main/linux-64::jaraco.context==6.1.0=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/jaraco.context-6.1.0-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/jaraco.context-6.1.0-py313h06a4308_0", + "files": [ + "lib/python3.13/site-packages/jaraco/context/__init__.py", + "lib/python3.13/site-packages/jaraco/context/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/jaraco/context/py.typed", + "lib/python3.13/site-packages/jaraco_context-6.1.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/jaraco_context-6.1.0.dist-info/METADATA", + "lib/python3.13/site-packages/jaraco_context-6.1.0.dist-info/RECORD", + "lib/python3.13/site-packages/jaraco_context-6.1.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/jaraco_context-6.1.0.dist-info/WHEEL", + "lib/python3.13/site-packages/jaraco_context-6.1.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/jaraco_context-6.1.0.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/jaraco_context-6.1.0.dist-info/top_level.txt" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/jaraco.context-6.1.0-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/jaraco.functools-4.4.0-py313h06a4308_0.json b/miniconda3/conda-meta/jaraco.functools-4.4.0-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..f91a545d6fdaefa9cab76b461be272f9c384cfc4 --- /dev/null +++ b/miniconda3/conda-meta/jaraco.functools-4.4.0-py313h06a4308_0.json @@ -0,0 +1,49 @@ +{ + "name": "jaraco.functools", + "version": "4.4.0", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "jaraco.functools-4.4.0-py313h06a4308_0.conda", + "md5": "9572b85d5f84049bc36867f49d498520", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/jaraco.functools-4.4.0-py313h06a4308_0.conda", + "sha256": "cd3eca2672458d798fc63a1e9293f61866c8f0d797fc2f4e10fe2f3503f0a4b2", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "more-itertools", + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1768389384000, + "size": 23712, + "requested_spec": "pkgs/main/linux-64::jaraco.functools==4.4.0=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/jaraco.functools-4.4.0-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/jaraco.functools-4.4.0-py313h06a4308_0", + "files": [ + "lib/python3.13/site-packages/jaraco/functools/__init__.py", + "lib/python3.13/site-packages/jaraco/functools/__init__.pyi", + "lib/python3.13/site-packages/jaraco/functools/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/jaraco/functools/py.typed", + "lib/python3.13/site-packages/jaraco_functools-4.4.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/jaraco_functools-4.4.0.dist-info/METADATA", + "lib/python3.13/site-packages/jaraco_functools-4.4.0.dist-info/RECORD", + "lib/python3.13/site-packages/jaraco_functools-4.4.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/jaraco_functools-4.4.0.dist-info/WHEEL", + "lib/python3.13/site-packages/jaraco_functools-4.4.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/jaraco_functools-4.4.0.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/jaraco_functools-4.4.0.dist-info/top_level.txt" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/jaraco.functools-4.4.0-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/jeepney-0.7.1-pyhd3eb1b0_0.json b/miniconda3/conda-meta/jeepney-0.7.1-pyhd3eb1b0_0.json new file mode 100644 index 0000000000000000000000000000000000000000..580747cd2624ed313f813d53ec0e06de4634c401 --- /dev/null +++ b/miniconda3/conda-meta/jeepney-0.7.1-pyhd3eb1b0_0.json @@ -0,0 +1,266 @@ +{ + "name": "jeepney", + "version": "0.7.1", + "build": "pyhd3eb1b0_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/noarch", + "subdir": "noarch", + "fn": "jeepney-0.7.1-pyhd3eb1b0_0.conda", + "md5": "f115ef0af90b59f35ef56743955979a4", + "url": "https://repo.anaconda.com/pkgs/main/noarch/jeepney-0.7.1-pyhd3eb1b0_0.conda", + "sha256": "a74312540427eb9b5b613afe7fdfbd1b271530e177c94d186e2aeea907e50522", + "depends": [ + "python >=3.6" + ], + "constrains": [], + "noarch": "python", + "license": "MIT", + "license_family": "MIT", + "package_type": "noarch_python", + "timestamp": 1627537099000, + "size": 39004, + "requested_spec": "pkgs/main/noarch::jeepney==0.7.1=pyhd3eb1b0_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/jeepney-0.7.1-pyhd3eb1b0_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/jeepney-0.7.1-pyhd3eb1b0_0", + "files": [ + "lib/python3.13/site-packages/jeepney-0.7.1.dist-info/INSTALLER", + "lib/python3.13/site-packages/jeepney-0.7.1.dist-info/LICENSE", + "lib/python3.13/site-packages/jeepney-0.7.1.dist-info/METADATA", + "lib/python3.13/site-packages/jeepney-0.7.1.dist-info/RECORD", + "lib/python3.13/site-packages/jeepney-0.7.1.dist-info/REQUESTED", + "lib/python3.13/site-packages/jeepney-0.7.1.dist-info/WHEEL", + "lib/python3.13/site-packages/jeepney-0.7.1.dist-info/direct_url.json", + "lib/python3.13/site-packages/jeepney/__init__.py", + "lib/python3.13/site-packages/jeepney/auth.py", + "lib/python3.13/site-packages/jeepney/bindgen.py", + "lib/python3.13/site-packages/jeepney/bus.py", + "lib/python3.13/site-packages/jeepney/bus_messages.py", + "lib/python3.13/site-packages/jeepney/fds.py", + "lib/python3.13/site-packages/jeepney/integrate/__init__.py", + "lib/python3.13/site-packages/jeepney/integrate/asyncio.py", + "lib/python3.13/site-packages/jeepney/integrate/blocking.py", + "lib/python3.13/site-packages/jeepney/integrate/tests/__init__.py", + "lib/python3.13/site-packages/jeepney/integrate/tests/test_asyncio.py", + "lib/python3.13/site-packages/jeepney/integrate/tornado.py", + "lib/python3.13/site-packages/jeepney/io/__init__.py", + "lib/python3.13/site-packages/jeepney/io/asyncio.py", + "lib/python3.13/site-packages/jeepney/io/blocking.py", + "lib/python3.13/site-packages/jeepney/io/common.py", + "lib/python3.13/site-packages/jeepney/io/tests/__init__.py", + "lib/python3.13/site-packages/jeepney/io/tests/conftest.py", + "lib/python3.13/site-packages/jeepney/io/tests/test_asyncio.py", + "lib/python3.13/site-packages/jeepney/io/tests/test_blocking.py", + "lib/python3.13/site-packages/jeepney/io/tests/test_threading.py", + "lib/python3.13/site-packages/jeepney/io/tests/test_trio.py", + "lib/python3.13/site-packages/jeepney/io/tests/utils.py", + "lib/python3.13/site-packages/jeepney/io/threading.py", + "lib/python3.13/site-packages/jeepney/io/tornado.py", + "lib/python3.13/site-packages/jeepney/io/trio.py", + "lib/python3.13/site-packages/jeepney/low_level.py", + "lib/python3.13/site-packages/jeepney/routing.py", + "lib/python3.13/site-packages/jeepney/tests/__init__.py", + "lib/python3.13/site-packages/jeepney/tests/secrets_introspect.xml", + "lib/python3.13/site-packages/jeepney/tests/test_auth.py", + "lib/python3.13/site-packages/jeepney/tests/test_bindgen.py", + "lib/python3.13/site-packages/jeepney/tests/test_bus.py", + "lib/python3.13/site-packages/jeepney/tests/test_bus_messages.py", + "lib/python3.13/site-packages/jeepney/tests/test_fds.py", + "lib/python3.13/site-packages/jeepney/tests/test_low_level.py", + "lib/python3.13/site-packages/jeepney/tests/test_routing.py", + "lib/python3.13/site-packages/jeepney/wrappers.py", + "lib/python3.13/site-packages/jeepney/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/__pycache__/auth.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/__pycache__/bindgen.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/__pycache__/bus.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/__pycache__/bus_messages.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/__pycache__/fds.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/integrate/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/integrate/__pycache__/asyncio.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/integrate/__pycache__/blocking.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/integrate/tests/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/integrate/tests/__pycache__/test_asyncio.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/integrate/__pycache__/tornado.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/io/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/io/__pycache__/asyncio.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/io/__pycache__/blocking.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/io/__pycache__/common.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/io/tests/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/io/tests/__pycache__/conftest.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/io/tests/__pycache__/test_asyncio.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/io/tests/__pycache__/test_blocking.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/io/tests/__pycache__/test_threading.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/io/tests/__pycache__/test_trio.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/io/tests/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/io/__pycache__/threading.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/io/__pycache__/tornado.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/io/__pycache__/trio.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/__pycache__/low_level.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/__pycache__/routing.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/tests/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/tests/__pycache__/test_auth.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/tests/__pycache__/test_bindgen.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/tests/__pycache__/test_bus.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/tests/__pycache__/test_bus_messages.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/tests/__pycache__/test_fds.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/tests/__pycache__/test_low_level.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/tests/__pycache__/test_routing.cpython-313.pyc", + "lib/python3.13/site-packages/jeepney/__pycache__/wrappers.cpython-313.pyc" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/python3.13/site-packages/jeepney/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/__pycache__/auth.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/__pycache__/bindgen.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/__pycache__/bus.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/__pycache__/bus_messages.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/__pycache__/fds.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/integrate/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/integrate/__pycache__/asyncio.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/integrate/__pycache__/blocking.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/integrate/tests/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/integrate/tests/__pycache__/test_asyncio.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/integrate/__pycache__/tornado.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/io/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/io/__pycache__/asyncio.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/io/__pycache__/blocking.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/io/__pycache__/common.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/io/tests/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/io/tests/__pycache__/conftest.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/io/tests/__pycache__/test_asyncio.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/io/tests/__pycache__/test_blocking.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/io/tests/__pycache__/test_threading.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/io/tests/__pycache__/test_trio.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/io/tests/__pycache__/utils.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/io/__pycache__/threading.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/io/__pycache__/tornado.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/io/__pycache__/trio.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/__pycache__/low_level.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/__pycache__/routing.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/tests/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/tests/__pycache__/test_auth.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/tests/__pycache__/test_bindgen.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/tests/__pycache__/test_bus.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/tests/__pycache__/test_bus_messages.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/tests/__pycache__/test_fds.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/tests/__pycache__/test_low_level.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/tests/__pycache__/test_routing.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/jeepney/__pycache__/wrappers.cpython-313.pyc", + "path_type": "pyc_file" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/jeepney-0.7.1-pyhd3eb1b0_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/jsonpatch-1.33-py313h06a4308_1.json b/miniconda3/conda-meta/jsonpatch-1.33-py313h06a4308_1.json new file mode 100644 index 0000000000000000000000000000000000000000..e73a4d953e1f8027e48208161b2b0ea47c4c2c25 --- /dev/null +++ b/miniconda3/conda-meta/jsonpatch-1.33-py313h06a4308_1.json @@ -0,0 +1,69 @@ +{ + "name": "jsonpatch", + "version": "1.33", + "build": "py313h06a4308_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "jsonpatch-1.33-py313h06a4308_1.conda", + "md5": "8cb4b1755a4a8fd6a57883863236ef2b", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/jsonpatch-1.33-py313h06a4308_1.conda", + "sha256": "a84eba19b44745aa7892ed30a461b4da6b315e93b50d468de72486d0a8a9f892", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "jsonpointer >=1.9", + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "BSD-3-Clause", + "license_family": "BSD", + "timestamp": 1728399618000, + "size": 36479, + "requested_spec": "pkgs/main/linux-64::jsonpatch==1.33=py313h06a4308_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/jsonpatch-1.33-py313h06a4308_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/jsonpatch-1.33-py313h06a4308_1", + "files": [ + "bin/jsondiff", + "bin/jsonpatch", + "lib/python3.13/site-packages/__pycache__/jsonpatch.cpython-313.pyc", + "lib/python3.13/site-packages/jsonpatch-1.33.dist-info/AUTHORS", + "lib/python3.13/site-packages/jsonpatch-1.33.dist-info/INSTALLER", + "lib/python3.13/site-packages/jsonpatch-1.33.dist-info/LICENSE", + "lib/python3.13/site-packages/jsonpatch-1.33.dist-info/METADATA", + "lib/python3.13/site-packages/jsonpatch-1.33.dist-info/RECORD", + "lib/python3.13/site-packages/jsonpatch-1.33.dist-info/REQUESTED", + "lib/python3.13/site-packages/jsonpatch-1.33.dist-info/WHEEL", + "lib/python3.13/site-packages/jsonpatch-1.33.dist-info/direct_url.json", + "lib/python3.13/site-packages/jsonpatch-1.33.dist-info/top_level.txt", + "lib/python3.13/site-packages/jsonpatch.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/jsondiff", + "prefix_placeholder": "/work/perseverance-python-buildout/croot/jsonpatch_1728399595941/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pla", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "ed8bce148ce1dce99221f5af22be85a9aafc399bbe0633bd16454072cb35050f", + "size_in_bytes": 1447, + "sha256_in_prefix": "6dad2a4d0b320383a3e9b74c261d3241775ce1f4f95636d3c081e15d666cc506" + }, + { + "_path": "bin/jsonpatch", + "prefix_placeholder": "/work/perseverance-python-buildout/croot/jsonpatch_1728399595941/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pla", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "675317969cdc21d6da9336da0dd661ed40e2d725f50ee27a29071a428a8a19e5", + "size_in_bytes": 4108, + "sha256_in_prefix": "66a62533b754055f633a4957e80fea1dc85667bf916414e6dd88d8498f3fc76a" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/jsonpatch-1.33-py313h06a4308_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/jsonpointer-3.0.0-py313h06a4308_0.json b/miniconda3/conda-meta/jsonpointer-3.0.0-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..fbba25a7e50a722fb3afef51a95eca58cd3107a8 --- /dev/null +++ b/miniconda3/conda-meta/jsonpointer-3.0.0-py313h06a4308_0.json @@ -0,0 +1,58 @@ +{ + "name": "jsonpointer", + "version": "3.0.0", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "jsonpointer-3.0.0-py313h06a4308_0.conda", + "md5": "af07fefbc353b9e3292ad9e0d563d9be", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/jsonpointer-3.0.0-py313h06a4308_0.conda", + "sha256": "14c58942969c5d6dfc0647894dbdbe5d13fb354b6f1585f9010c3da13e428fea", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "BSD-3-Clause", + "license_family": "BSD", + "timestamp": 1753788560000, + "size": 21361, + "requested_spec": "pkgs/main/linux-64::jsonpointer==3.0.0=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/jsonpointer-3.0.0-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/jsonpointer-3.0.0-py313h06a4308_0", + "files": [ + "bin/jsonpointer", + "lib/python3.13/site-packages/__pycache__/jsonpointer.cpython-313.pyc", + "lib/python3.13/site-packages/jsonpointer-3.0.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/jsonpointer-3.0.0.dist-info/METADATA", + "lib/python3.13/site-packages/jsonpointer-3.0.0.dist-info/RECORD", + "lib/python3.13/site-packages/jsonpointer-3.0.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/jsonpointer-3.0.0.dist-info/WHEEL", + "lib/python3.13/site-packages/jsonpointer-3.0.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/jsonpointer-3.0.0.dist-info/licenses/AUTHORS", + "lib/python3.13/site-packages/jsonpointer-3.0.0.dist-info/licenses/LICENSE.txt", + "lib/python3.13/site-packages/jsonpointer-3.0.0.dist-info/top_level.txt", + "lib/python3.13/site-packages/jsonpointer.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/jsonpointer", + "prefix_placeholder": "/croot/jsonpointer_1753788433671/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_place", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "25c33df12c62925643829153bb7e6ad799d34ce115c2efa25875f3705ac4a712", + "size_in_bytes": 2033, + "sha256_in_prefix": "8c882b7bf3ae154947010d70d6a8910f4df8a236e16a4ce88c2eb4f389b0506e" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/jsonpointer-3.0.0-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/keyring-25.7.0-py313h06a4308_0.json b/miniconda3/conda-meta/keyring-25.7.0-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..8701c6fe523bf81361b75477a9759bab45264c70 --- /dev/null +++ b/miniconda3/conda-meta/keyring-25.7.0-py313h06a4308_0.json @@ -0,0 +1,125 @@ +{ + "name": "keyring", + "version": "25.7.0", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "keyring-25.7.0-py313h06a4308_0.conda", + "md5": "6d505a62b565ff3d80d5a6662a83d54a", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/keyring-25.7.0-py313h06a4308_0.conda", + "sha256": "549e460fd45bddce3a1492dbb1af7b227e0428318b4accf8c08209a5d96b38ed", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "jaraco.classes", + "jaraco.context", + "jaraco.functools", + "jeepney >=0.4.2", + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313", + "secretstorage >=3.2" + ], + "constrains": [ + "pytest-mypy >=1.0.1", + "shtab >=1.1.0", + "pytest-enabler >=3.4", + "pytest-checkdocs >=2.4" + ], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1763637203000, + "size": 82797, + "requested_spec": "pkgs/main/linux-64::keyring==25.7.0=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/keyring-25.7.0-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/keyring-25.7.0-py313h06a4308_0", + "files": [ + "bin/keyring", + "lib/python3.13/site-packages/keyring-25.7.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/keyring-25.7.0.dist-info/METADATA", + "lib/python3.13/site-packages/keyring-25.7.0.dist-info/RECORD", + "lib/python3.13/site-packages/keyring-25.7.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/keyring-25.7.0.dist-info/WHEEL", + "lib/python3.13/site-packages/keyring-25.7.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/keyring-25.7.0.dist-info/entry_points.txt", + "lib/python3.13/site-packages/keyring-25.7.0.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/keyring-25.7.0.dist-info/top_level.txt", + "lib/python3.13/site-packages/keyring/__init__.py", + "lib/python3.13/site-packages/keyring/__main__.py", + "lib/python3.13/site-packages/keyring/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/__pycache__/backend.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/__pycache__/cli.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/__pycache__/completion.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/__pycache__/core.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/__pycache__/credentials.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/__pycache__/devpi_client.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/__pycache__/errors.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/__pycache__/http.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/backend.py", + "lib/python3.13/site-packages/keyring/backend_complete.bash", + "lib/python3.13/site-packages/keyring/backend_complete.zsh", + "lib/python3.13/site-packages/keyring/backends/SecretService.py", + "lib/python3.13/site-packages/keyring/backends/Windows.py", + "lib/python3.13/site-packages/keyring/backends/__init__.py", + "lib/python3.13/site-packages/keyring/backends/__pycache__/SecretService.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/backends/__pycache__/Windows.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/backends/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/backends/__pycache__/chainer.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/backends/__pycache__/fail.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/backends/__pycache__/kwallet.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/backends/__pycache__/libsecret.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/backends/__pycache__/null.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/backends/chainer.py", + "lib/python3.13/site-packages/keyring/backends/fail.py", + "lib/python3.13/site-packages/keyring/backends/kwallet.py", + "lib/python3.13/site-packages/keyring/backends/libsecret.py", + "lib/python3.13/site-packages/keyring/backends/macOS/__init__.py", + "lib/python3.13/site-packages/keyring/backends/macOS/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/backends/macOS/__pycache__/api.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/backends/macOS/api.py", + "lib/python3.13/site-packages/keyring/backends/null.py", + "lib/python3.13/site-packages/keyring/cli.py", + "lib/python3.13/site-packages/keyring/compat/__init__.py", + "lib/python3.13/site-packages/keyring/compat/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/compat/__pycache__/properties.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/compat/__pycache__/py312.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/compat/properties.py", + "lib/python3.13/site-packages/keyring/compat/py312.py", + "lib/python3.13/site-packages/keyring/completion.py", + "lib/python3.13/site-packages/keyring/core.py", + "lib/python3.13/site-packages/keyring/credentials.py", + "lib/python3.13/site-packages/keyring/devpi_client.py", + "lib/python3.13/site-packages/keyring/errors.py", + "lib/python3.13/site-packages/keyring/http.py", + "lib/python3.13/site-packages/keyring/py.typed", + "lib/python3.13/site-packages/keyring/testing/__init__.py", + "lib/python3.13/site-packages/keyring/testing/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/testing/__pycache__/backend.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/testing/__pycache__/util.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/testing/backend.py", + "lib/python3.13/site-packages/keyring/testing/util.py", + "lib/python3.13/site-packages/keyring/util/__init__.py", + "lib/python3.13/site-packages/keyring/util/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/util/__pycache__/platform_.cpython-313.pyc", + "lib/python3.13/site-packages/keyring/util/platform_.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/keyring", + "prefix_placeholder": "/home/task_176363713576885/conda-bld/keyring_1763637184857/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "dff67f063f9e037bc1f24721b71c7c028185961aef2fb9a2d19ca2cd4f1f7b83", + "size_in_bytes": 464, + "sha256_in_prefix": "ffdb353909bdf8e4a5f5095f13e8e3e0433c7ff213b66076d3ce4cafec210aeb" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/keyring-25.7.0-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/ld_impl_linux-64-2.44-h153f514_2.json b/miniconda3/conda-meta/ld_impl_linux-64-2.44-h153f514_2.json new file mode 100644 index 0000000000000000000000000000000000000000..ca1da2b2657122a572e066fbe0296b7a63ce943e --- /dev/null +++ b/miniconda3/conda-meta/ld_impl_linux-64-2.44-h153f514_2.json @@ -0,0 +1,49 @@ +{ + "name": "ld_impl_linux-64", + "version": "2.44", + "build": "h153f514_2", + "build_number": 2, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "ld_impl_linux-64-2.44-h153f514_2.conda", + "md5": "dffdc9a0e09d04051d4bd758e104f4b3", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.44-h153f514_2.conda", + "sha256": "89bc181d3d5976e5d7a763329c8877031e36ae5a3e9eabe7475e3cb1f55f5822", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0" + ], + "constrains": [ + "binutils_impl_linux-64 2.44" + ], + "license": "GPL-3.0-only", + "license_family": "GPL", + "timestamp": 1759940114000, + "size": 688236, + "requested_spec": "pkgs/main/linux-64::ld_impl_linux-64==2.44=h153f514_2", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/ld_impl_linux-64-2.44-h153f514_2.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/ld_impl_linux-64-2.44-h153f514_2", + "files": [ + "bin/x86_64-conda-linux-gnu-ld", + "x86_64-conda-linux-gnu/bin/ld" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/x86_64-conda-linux-gnu-ld", + "prefix_placeholder": "/home/task_175993962606213/conda-bld/binutils_split_1759940008676/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "90dfaa28b5712e535a19d6f3ce561762556229c454c777708ccd158b169240ff", + "size_in_bytes": 2673304, + "sha256_in_prefix": "4b251626655ea0b5648ae4d2ac91bbbf8e9920476ded602c8e767582759f56ad" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/ld_impl_linux-64-2.44-h153f514_2", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libarchive-3.8.2-h3ec8f01_0.json b/miniconda3/conda-meta/libarchive-3.8.2-h3ec8f01_0.json new file mode 100644 index 0000000000000000000000000000000000000000..2732c3230d511cc68219755666783de7d6224313 --- /dev/null +++ b/miniconda3/conda-meta/libarchive-3.8.2-h3ec8f01_0.json @@ -0,0 +1,109 @@ +{ + "name": "libarchive", + "version": "3.8.2", + "build": "h3ec8f01_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libarchive-3.8.2-h3ec8f01_0.conda", + "md5": "7e646e7deafe4482bb0b9525ab748132", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libarchive-3.8.2-h3ec8f01_0.conda", + "sha256": "47b727b2add2529ee9f983fefda5307a728941e95f48b467119865ef17ec417c", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "bzip2 >=1.0.8,<2.0a0", + "libgcc-ng >=11.2.0", + "libxml2 >=2.13.8,<2.14.0a0", + "lz4-c >=1.9.4,<1.10.0a0", + "openssl >=3.0.18,<4.0a0", + "xz >=5.6.4,<6.0a0", + "zlib >=1.2.13,<2.0a0", + "zstd >=1.5.6,<1.6.0a0" + ], + "constrains": [], + "license": "BSD-2-Clause", + "license_family": "BSD", + "timestamp": 1761151790000, + "size": 875632, + "requested_spec": "pkgs/main/linux-64::libarchive==3.8.2=h3ec8f01_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libarchive-3.8.2-h3ec8f01_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libarchive-3.8.2-h3ec8f01_0", + "files": [ + "bin/bsdcat", + "bin/bsdcpio", + "bin/bsdtar", + "bin/bsdunzip", + "include/archive.h", + "include/archive_entry.h", + "lib/libarchive.a", + "lib/libarchive.so", + "lib/libarchive.so.13", + "lib/libarchive.so.13.8.2", + "lib/pkgconfig/libarchive.pc", + "share/man/man1/bsdcat.1", + "share/man/man1/bsdcpio.1", + "share/man/man1/bsdtar.1", + "share/man/man1/bsdunzip.1", + "share/man/man3/archive_entry.3", + "share/man/man3/archive_entry_acl.3", + "share/man/man3/archive_entry_linkify.3", + "share/man/man3/archive_entry_misc.3", + "share/man/man3/archive_entry_paths.3", + "share/man/man3/archive_entry_perms.3", + "share/man/man3/archive_entry_stat.3", + "share/man/man3/archive_entry_time.3", + "share/man/man3/archive_read.3", + "share/man/man3/archive_read_add_passphrase.3", + "share/man/man3/archive_read_data.3", + "share/man/man3/archive_read_disk.3", + "share/man/man3/archive_read_extract.3", + "share/man/man3/archive_read_filter.3", + "share/man/man3/archive_read_format.3", + "share/man/man3/archive_read_free.3", + "share/man/man3/archive_read_header.3", + "share/man/man3/archive_read_new.3", + "share/man/man3/archive_read_open.3", + "share/man/man3/archive_read_set_options.3", + "share/man/man3/archive_util.3", + "share/man/man3/archive_write.3", + "share/man/man3/archive_write_blocksize.3", + "share/man/man3/archive_write_data.3", + "share/man/man3/archive_write_disk.3", + "share/man/man3/archive_write_filter.3", + "share/man/man3/archive_write_finish_entry.3", + "share/man/man3/archive_write_format.3", + "share/man/man3/archive_write_free.3", + "share/man/man3/archive_write_header.3", + "share/man/man3/archive_write_new.3", + "share/man/man3/archive_write_open.3", + "share/man/man3/archive_write_set_options.3", + "share/man/man3/archive_write_set_passphrase.3", + "share/man/man3/libarchive.3", + "share/man/man3/libarchive_changes.3", + "share/man/man3/libarchive_internals.3", + "share/man/man5/cpio.5", + "share/man/man5/libarchive-formats.5", + "share/man/man5/mtree.5", + "share/man/man5/tar.5" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/pkgconfig/libarchive.pc", + "prefix_placeholder": "/home/task_176115161206218/conda-bld/libarchive_1761151624085/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeh", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "ab020bf0a523f329690c1fab44dda3b4908efa96daff1ab2ced781a6b8687c98", + "size_in_bytes": 2006, + "sha256_in_prefix": "7297c57417dbd0acc1619e1411999e5a1e340f136e36736f89b890af274b0f58" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libarchive-3.8.2-h3ec8f01_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libasprintf-0.25.1-hf2ab22a_0.json b/miniconda3/conda-meta/libasprintf-0.25.1-hf2ab22a_0.json new file mode 100644 index 0000000000000000000000000000000000000000..487b1b298ccb398c151873082e2a70eb017e2298 --- /dev/null +++ b/miniconda3/conda-meta/libasprintf-0.25.1-hf2ab22a_0.json @@ -0,0 +1,38 @@ +{ + "name": "libasprintf", + "version": "0.25.1", + "build": "hf2ab22a_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libasprintf-0.25.1-hf2ab22a_0.conda", + "md5": "9fe17fea3f12a5dcc483b89f48e361da", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libasprintf-0.25.1-hf2ab22a_0.conda", + "sha256": "b2f3a2a452022b990a76205957145a567b5aba86910fc20c4e2f853b4687132c", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "libgcc >=14", + "libstdcxx >=14" + ], + "constrains": [], + "license": "LGPL-2.1-or-later", + "timestamp": 1772045241000, + "size": 52393, + "requested_spec": "pkgs/main/linux-64::libasprintf==0.25.1=hf2ab22a_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libasprintf-0.25.1-hf2ab22a_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libasprintf-0.25.1-hf2ab22a_0", + "files": [ + "lib/libasprintf.so.0", + "lib/libasprintf.so.0.0.0" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libasprintf-0.25.1-hf2ab22a_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libasprintf-devel-0.25.1-hf2ab22a_0.json b/miniconda3/conda-meta/libasprintf-devel-0.25.1-hf2ab22a_0.json new file mode 100644 index 0000000000000000000000000000000000000000..0f11d6e14b9bc4f19baa3d93f2155cce5cebcdb8 --- /dev/null +++ b/miniconda3/conda-meta/libasprintf-devel-0.25.1-hf2ab22a_0.json @@ -0,0 +1,38 @@ +{ + "name": "libasprintf-devel", + "version": "0.25.1", + "build": "hf2ab22a_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libasprintf-devel-0.25.1-hf2ab22a_0.conda", + "md5": "114f7a7ae6d01b7f5d568439769857f7", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libasprintf-devel-0.25.1-hf2ab22a_0.conda", + "sha256": "a2652c79b33be9f2d2ea0a98dbb5f0b63b16598b4b16600f15f89d98655a1a6f", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "libasprintf 0.25.1 hf2ab22a_0", + "libgcc >=14" + ], + "constrains": [], + "license": "LGPL-2.1-or-later", + "timestamp": 1772045249000, + "size": 33684, + "requested_spec": "pkgs/main/linux-64::libasprintf-devel==0.25.1=hf2ab22a_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libasprintf-devel-0.25.1-hf2ab22a_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libasprintf-devel-0.25.1-hf2ab22a_0", + "files": [ + "include/autosprintf.h", + "lib/libasprintf.so" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libasprintf-devel-0.25.1-hf2ab22a_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libbrotlicommon-1.2.0-h32cd6e7_0.json b/miniconda3/conda-meta/libbrotlicommon-1.2.0-h32cd6e7_0.json new file mode 100644 index 0000000000000000000000000000000000000000..4b9fe6c531fb12b21dc4d80571e52cc80d36a934 --- /dev/null +++ b/miniconda3/conda-meta/libbrotlicommon-1.2.0-h32cd6e7_0.json @@ -0,0 +1,55 @@ +{ + "name": "libbrotlicommon", + "version": "1.2.0", + "build": "h32cd6e7_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libbrotlicommon-1.2.0-h32cd6e7_0.conda", + "md5": "cdc0bbfec0c99b30d435b22341a716b0", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libbrotlicommon-1.2.0-h32cd6e7_0.conda", + "sha256": "a389948434028846cd8a844a0fda48e2dbff9d639563c8cee643f754d30a90cd", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "libgcc-ng >=11.2.0" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1762363571000, + "size": 78282, + "requested_spec": "pkgs/main/linux-64::libbrotlicommon==1.2.0=h32cd6e7_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libbrotlicommon-1.2.0-h32cd6e7_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libbrotlicommon-1.2.0-h32cd6e7_0", + "files": [ + "lib/libbrotlicommon.so", + "lib/libbrotlicommon.so.1", + "lib/libbrotlicommon.so.1.2.0", + "lib/pkgconfig/libbrotlicommon.pc", + "share/man/man1/brotli.1", + "share/man/man3/constants.h.3", + "share/man/man3/decode.h.3", + "share/man/man3/encode.h.3", + "share/man/man3/types.h.3" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/pkgconfig/libbrotlicommon.pc", + "prefix_placeholder": "/home/task_176236350079666/conda-bld/brotli-split_1762363540655/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "e9fc16d081f6e4bee50d5f44681224a7751fa58233a7bfd5f72c23f96036dc7b", + "size_in_bytes": 761, + "sha256_in_prefix": "a828beb316d9e7048a9d4e6550a8c5647657882c6e7fa2b216ff176580c59e2e" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libbrotlicommon-1.2.0-h32cd6e7_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libbrotlidec-1.2.0-ha2c5f68_0.json b/miniconda3/conda-meta/libbrotlidec-1.2.0-ha2c5f68_0.json new file mode 100644 index 0000000000000000000000000000000000000000..d2b724a70252ce198df0e28195729f0181a00759 --- /dev/null +++ b/miniconda3/conda-meta/libbrotlidec-1.2.0-ha2c5f68_0.json @@ -0,0 +1,51 @@ +{ + "name": "libbrotlidec", + "version": "1.2.0", + "build": "ha2c5f68_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libbrotlidec-1.2.0-ha2c5f68_0.conda", + "md5": "7cad8348df1c96bf2f0a697806d1b3b5", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libbrotlidec-1.2.0-ha2c5f68_0.conda", + "sha256": "475bcf1824c93184cd4f2091481a5e6da5d593c5fc466a53c449e14aa30e850d", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "libbrotlicommon 1.2.0 h32cd6e7_0", + "libgcc-ng >=11.2.0" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1762363575000, + "size": 33634, + "requested_spec": "pkgs/main/linux-64::libbrotlidec==1.2.0=ha2c5f68_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libbrotlidec-1.2.0-ha2c5f68_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libbrotlidec-1.2.0-ha2c5f68_0", + "files": [ + "lib/libbrotlidec.so", + "lib/libbrotlidec.so.1", + "lib/libbrotlidec.so.1.2.0", + "lib/pkgconfig/libbrotlidec.pc" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/pkgconfig/libbrotlidec.pc", + "prefix_placeholder": "/home/task_176236350079666/conda-bld/brotli-split_1762363540655/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "73239569edbeca951cf3ae3198a748b6f4bc72fe7cbdf8f201cbcce590931a2c", + "size_in_bytes": 787, + "sha256_in_prefix": "601b14061caf46cfa2447d45f0a90083f760094d9c617eb688d030fe3e6e6f63" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libbrotlidec-1.2.0-ha2c5f68_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libbrotlienc-1.2.0-h2e96acb_0.json b/miniconda3/conda-meta/libbrotlienc-1.2.0-h2e96acb_0.json new file mode 100644 index 0000000000000000000000000000000000000000..9ecc1f267e139e45d437a337bcf185202e942c64 --- /dev/null +++ b/miniconda3/conda-meta/libbrotlienc-1.2.0-h2e96acb_0.json @@ -0,0 +1,51 @@ +{ + "name": "libbrotlienc", + "version": "1.2.0", + "build": "h2e96acb_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libbrotlienc-1.2.0-h2e96acb_0.conda", + "md5": "854af1d6af8b3565fa8c7edb2141a2de", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libbrotlienc-1.2.0-h2e96acb_0.conda", + "sha256": "31c153a8165bef6673fb460b9dd4cb6ed4904585cc455ab827282044fcfcce95", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "libbrotlicommon 1.2.0 h32cd6e7_0", + "libgcc-ng >=11.2.0" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1762363583000, + "size": 279951, + "requested_spec": "pkgs/main/linux-64::libbrotlienc==1.2.0=h2e96acb_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libbrotlienc-1.2.0-h2e96acb_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libbrotlienc-1.2.0-h2e96acb_0", + "files": [ + "lib/libbrotlienc.so", + "lib/libbrotlienc.so.1", + "lib/libbrotlienc.so.1.2.0", + "lib/pkgconfig/libbrotlienc.pc" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/pkgconfig/libbrotlienc.pc", + "prefix_placeholder": "/home/task_176236350079666/conda-bld/brotli-split_1762363540655/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "b1f077cc875134b7ec011544201d746962f122a5d326ddf1c5045bd1bea55f3e", + "size_in_bytes": 787, + "sha256_in_prefix": "f090ef190265394441109d05f22009a1ec02a5bd5b632feaa1c8e112629ad1f4" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libbrotlienc-1.2.0-h2e96acb_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libcurl-8.18.0-h3506a8c_0.json b/miniconda3/conda-meta/libcurl-8.18.0-h3506a8c_0.json new file mode 100644 index 0000000000000000000000000000000000000000..0baa5413537974b9596f9fffe58be39875441f4c --- /dev/null +++ b/miniconda3/conda-meta/libcurl-8.18.0-h3506a8c_0.json @@ -0,0 +1,93 @@ +{ + "name": "libcurl", + "version": "8.18.0", + "build": "h3506a8c_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libcurl-8.18.0-h3506a8c_0.conda", + "md5": "2963726272327ecbb6727c670302dbd9", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libcurl-8.18.0-h3506a8c_0.conda", + "sha256": "0ac765625f1b438fe4b6dce0771d2b9468f44cc370f2646aa1ac1b4215460f1c", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "libbrotlicommon >=1.2.0,<1.3.0a0", + "libbrotlidec >=1.2.0,<1.3.0a0", + "libbrotlienc >=1.2.0,<1.3.0a0", + "libgcc >=14", + "libidn2 >=2,<3.0a0", + "libkrb5 >=1.22.1,<1.23.0a0", + "libnghttp2 >=1.57.0", + "libnghttp2 >=1.67.1,<1.68.0a0", + "libssh2 >=1.11.1", + "libssh2 >=1.11.1,<2.0a0", + "openssl >=3.0.18,<4.0a0", + "zlib >=1.2.13,<2.0a0", + "zstd >=1.5.6,<1.6.0a0" + ], + "constrains": [], + "license": "curl", + "license_family": "MIT", + "timestamp": 1769605006000, + "size": 497677, + "requested_spec": "pkgs/main/linux-64::libcurl==8.18.0=h3506a8c_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libcurl-8.18.0-h3506a8c_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libcurl-8.18.0-h3506a8c_0", + "files": [ + "bin/curl-config", + "include/curl/curl.h", + "include/curl/curlver.h", + "include/curl/easy.h", + "include/curl/header.h", + "include/curl/mprintf.h", + "include/curl/multi.h", + "include/curl/options.h", + "include/curl/stdcheaders.h", + "include/curl/system.h", + "include/curl/typecheck-gcc.h", + "include/curl/urlapi.h", + "include/curl/websockets.h", + "lib/libcurl.so", + "lib/libcurl.so.4", + "lib/libcurl.so.4.8.0", + "lib/pkgconfig/libcurl.pc" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/curl-config", + "prefix_placeholder": "/home/task_176960491742041/croot/curl-split_1769604957454/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "c8e09eec7173fede1fed5d18b12a798aa39edb650913ae0aa41d68aaee8cf1ea", + "size_in_bytes": 5710, + "sha256_in_prefix": "a23564f4dbd358e4d24aead5bd86f173420fb59a3391a489e23f6031e71388cc" + }, + { + "_path": "lib/libcurl.so.4.8.0", + "prefix_placeholder": "/home/task_176960491742041/croot/curl-split_1769604957454/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "91cd88d7e047e25cf3f9e1ad822fd3acc95074dfd3f35d11729bf1a888c191a6", + "size_in_bytes": 1143896, + "sha256_in_prefix": "3111461e4da01e48a8d51b8394745cc52443e46d5352c35c7c47638c11818f27" + }, + { + "_path": "lib/pkgconfig/libcurl.pc", + "prefix_placeholder": "/home/task_176960491742041/croot/curl-split_1769604957454/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "5fa110c3a9d8894fb1c8e34c63ff2d13f2aab512d2a14f9e3caac588882c6687", + "size_in_bytes": 2140, + "sha256_in_prefix": "2dba19e678b7fb81b06e58a0da832a99d96242ee315de53b311be8c0f04acfc3" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libcurl-8.18.0-h3506a8c_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libev-4.33-h7f8727e_1.json b/miniconda3/conda-meta/libev-4.33-h7f8727e_1.json new file mode 100644 index 0000000000000000000000000000000000000000..5156068be45e4ce7fd3f24f799bd5c30ab21d8c7 --- /dev/null +++ b/miniconda3/conda-meta/libev-4.33-h7f8727e_1.json @@ -0,0 +1,41 @@ +{ + "name": "libev", + "version": "4.33", + "build": "h7f8727e_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libev-4.33-h7f8727e_1.conda", + "md5": "5065620db4393fb549f30114a33897d1", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libev-4.33-h7f8727e_1.conda", + "sha256": "75f04cf201848d58df127caf9f316f71e1103b28e00b5add9b0c8025e52d7569", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "libgcc-ng >=7.5.0" + ], + "constrains": [], + "license": "BSD-2-Clause", + "license_family": "BSD", + "timestamp": 1632891483000, + "size": 114011, + "requested_spec": "pkgs/main/linux-64::libev==4.33=h7f8727e_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libev-4.33-h7f8727e_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libev-4.33-h7f8727e_1", + "files": [ + "include/ev++.h", + "include/ev.h", + "lib/libev.so", + "lib/libev.so.4", + "lib/libev.so.4.0.0", + "share/man/man3/ev.3" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libev-4.33-h7f8727e_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libexpat-2.7.4-h7354ed3_0.json b/miniconda3/conda-meta/libexpat-2.7.4-h7354ed3_0.json new file mode 100644 index 0000000000000000000000000000000000000000..b59e9366e1ccc4c94f327a2781c70e2dcbec6d42 --- /dev/null +++ b/miniconda3/conda-meta/libexpat-2.7.4-h7354ed3_0.json @@ -0,0 +1,62 @@ +{ + "name": "libexpat", + "version": "2.7.4", + "build": "h7354ed3_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libexpat-2.7.4-h7354ed3_0.conda", + "md5": "04be005097756bc24b1929f4646506ae", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libexpat-2.7.4-h7354ed3_0.conda", + "sha256": "aaeb0b0bc0ca292600e19979b38afe692bde0a8bde24031d1e1ddced76b5e46d", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "libgcc >=14", + "libstdcxx >=14" + ], + "constrains": [ + "expat 2.7.4.*" + ], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1770062545000, + "size": 124967, + "requested_spec": "pkgs/main/linux-64::libexpat==2.7.4=h7354ed3_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libexpat-2.7.4-h7354ed3_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libexpat-2.7.4-h7354ed3_0", + "files": [ + "include/expat.h", + "include/expat_config.h", + "include/expat_external.h", + "lib/cmake/expat-2.7.4/expat-config-version.cmake", + "lib/cmake/expat-2.7.4/expat-config.cmake", + "lib/cmake/expat-2.7.4/expat-release.cmake", + "lib/cmake/expat-2.7.4/expat.cmake", + "lib/libexpat.so", + "lib/libexpat.so.1", + "lib/libexpat.so.1.11.2", + "lib/pkgconfig/expat.pc", + "share/doc/expat/AUTHORS", + "share/doc/expat/changelog" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/pkgconfig/expat.pc", + "prefix_placeholder": "/home/task_177006210476465/croot/expat-split_1770062509864/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "3f6e0396e4dee61f3f5c4da8ddd0c68d29ff05d184b918a9f2e1444d66deb7f7", + "size_in_bytes": 528, + "sha256_in_prefix": "d2e73d75a9290d43782793fd9b50b64aee575addf794f538c3e2df4fa186ad03" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libexpat-2.7.4-h7354ed3_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libffi-3.4.4-h6a678d5_1.json b/miniconda3/conda-meta/libffi-3.4.4-h6a678d5_1.json new file mode 100644 index 0000000000000000000000000000000000000000..c33d19a40cb1cf9268d7dd4923067e1c93319239 --- /dev/null +++ b/miniconda3/conda-meta/libffi-3.4.4-h6a678d5_1.json @@ -0,0 +1,61 @@ +{ + "name": "libffi", + "version": "3.4.4", + "build": "h6a678d5_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libffi-3.4.4-h6a678d5_1.conda", + "md5": "70646cc713f0c43926cfdcfe9b695fe0", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.4.4-h6a678d5_1.conda", + "sha256": "b0e7fe2e5d498bc5a2c57cf942701bba8f22ec55de55e092ffbffc40b816df88", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "libgcc-ng >=11.2.0", + "libstdcxx-ng >=11.2.0" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1714483282000, + "size": 144691, + "requested_spec": "pkgs/main/linux-64::libffi==3.4.4=h6a678d5_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libffi-3.4.4-h6a678d5_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libffi-3.4.4-h6a678d5_1", + "files": [ + "include/ffi.h", + "include/ffitarget.h", + "lib/libffi.7.so", + "lib/libffi.8.so", + "lib/libffi.a", + "lib/libffi.so", + "lib/libffi.so.7", + "lib/libffi.so.8", + "lib/libffi.so.8.1.2", + "lib/pkgconfig/libffi.pc", + "share/info/libffi.info", + "share/man/man3/ffi.3", + "share/man/man3/ffi_call.3", + "share/man/man3/ffi_prep_cif.3", + "share/man/man3/ffi_prep_cif_var.3" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/pkgconfig/libffi.pc", + "prefix_placeholder": "/croot/libffi_1714483243560/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "d42c74b8e17b72244a609b67b6f23d18da75e961f35ae11a8be0f205daee22b4", + "size_in_bytes": 756, + "sha256_in_prefix": "a42e4e588cc13d8e9d6093a6af9a35cfe741f608b6aa885906b6a7c2d904fcc9" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libffi-3.4.4-h6a678d5_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libgcc-15.2.0-h69a1729_7.json b/miniconda3/conda-meta/libgcc-15.2.0-h69a1729_7.json new file mode 100644 index 0000000000000000000000000000000000000000..48fb0629732dbad256f1937cd437d032bdbe26c2 --- /dev/null +++ b/miniconda3/conda-meta/libgcc-15.2.0-h69a1729_7.json @@ -0,0 +1,52 @@ +{ + "name": "libgcc", + "version": "15.2.0", + "build": "h69a1729_7", + "build_number": 7, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libgcc-15.2.0-h69a1729_7.conda", + "md5": "01fb1b8725fc7f66312b9d409758917a", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libgcc-15.2.0-h69a1729_7.conda", + "sha256": "baf9d8d16e2a8ae7a4d1b80f2c1a932deaca1a87c677a370f6ab4688482db47b", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "_openmp_mutex >=4.5" + ], + "constrains": [ + "libgcc-ng ==15.2.0 *_7", + "libgomp 15.2.0 h4751f2c_7" + ], + "license": "GPL-3.0-only WITH GCC-exception-3.1", + "timestamp": 1762772576000, + "size": 825084, + "requested_spec": "pkgs/main/linux-64::libgcc==15.2.0=h69a1729_7", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libgcc-15.2.0-h69a1729_7.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libgcc-15.2.0-h69a1729_7", + "files": [ + "lib/libatomic.so", + "lib/libatomic.so.1", + "lib/libatomic.so.1.2.0", + "lib/libgcc_s.so", + "lib/libgcc_s.so.1", + "lib/libitm.so", + "lib/libitm.so.1", + "lib/libitm.so.1.0.0", + "lib/libquadmath.so", + "lib/libquadmath.so.0", + "lib/libquadmath.so.0.0.0", + "share/info/libgomp.info", + "share/info/libquadmath.info", + "share/licenses/gcc-libs/RUNTIME.LIBRARY.EXCEPTION" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libgcc-15.2.0-h69a1729_7", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libgcc-ng-15.2.0-h166f726_7.json b/miniconda3/conda-meta/libgcc-ng-15.2.0-h166f726_7.json new file mode 100644 index 0000000000000000000000000000000000000000..6b67b93ac65eec25f9edab0cb118e8af6360fc8b --- /dev/null +++ b/miniconda3/conda-meta/libgcc-ng-15.2.0-h166f726_7.json @@ -0,0 +1,34 @@ +{ + "name": "libgcc-ng", + "version": "15.2.0", + "build": "h166f726_7", + "build_number": 7, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libgcc-ng-15.2.0-h166f726_7.conda", + "md5": "2783efb2502b9caa7f08e25fd54df899", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-15.2.0-h166f726_7.conda", + "sha256": "3a3678f17a8916777d03b83f19f673107b4a9bf55366234dcfa42edbd5173123", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "libgcc 15.2.0 h69a1729_7", + "_libgcc_mutex * main" + ], + "constrains": [], + "license": "GPL-3.0-only WITH GCC-exception-3.1", + "timestamp": 1762772577000, + "size": 28356, + "requested_spec": "pkgs/main/linux-64::libgcc-ng==15.2.0=h166f726_7", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libgcc-ng-15.2.0-h166f726_7.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libgcc-ng-15.2.0-h166f726_7", + "files": [], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libgcc-ng-15.2.0-h166f726_7", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libgettextpo-0.25.1-hf2ab22a_0.json b/miniconda3/conda-meta/libgettextpo-0.25.1-hf2ab22a_0.json new file mode 100644 index 0000000000000000000000000000000000000000..a3a8438a5732e503a10baee8ea49304c8481deb4 --- /dev/null +++ b/miniconda3/conda-meta/libgettextpo-0.25.1-hf2ab22a_0.json @@ -0,0 +1,38 @@ +{ + "name": "libgettextpo", + "version": "0.25.1", + "build": "hf2ab22a_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libgettextpo-0.25.1-hf2ab22a_0.conda", + "md5": "775a5698ec2a0aa6e2435b86418b563f", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libgettextpo-0.25.1-hf2ab22a_0.conda", + "sha256": "c1585ccdee3503c2e055014197f63b99ac47a7493c612beef2162cbdd9f5528c", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "libgcc >=14", + "libiconv >=1.18,<2.0a0" + ], + "constrains": [], + "license": "GPL-3.0-or-later", + "timestamp": 1772045245000, + "size": 190134, + "requested_spec": "pkgs/main/linux-64::libgettextpo==0.25.1=hf2ab22a_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libgettextpo-0.25.1-hf2ab22a_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libgettextpo-0.25.1-hf2ab22a_0", + "files": [ + "lib/libgettextpo.so.0", + "lib/libgettextpo.so.0.5.14" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libgettextpo-0.25.1-hf2ab22a_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libgettextpo-devel-0.25.1-hf2ab22a_0.json b/miniconda3/conda-meta/libgettextpo-devel-0.25.1-hf2ab22a_0.json new file mode 100644 index 0000000000000000000000000000000000000000..096c2fdd8240722e75f17a2c576c038d2f41c096 --- /dev/null +++ b/miniconda3/conda-meta/libgettextpo-devel-0.25.1-hf2ab22a_0.json @@ -0,0 +1,39 @@ +{ + "name": "libgettextpo-devel", + "version": "0.25.1", + "build": "hf2ab22a_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libgettextpo-devel-0.25.1-hf2ab22a_0.conda", + "md5": "5766eead346251db288d5b13c3dffd6f", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libgettextpo-devel-0.25.1-hf2ab22a_0.conda", + "sha256": "dcf5a9cf369a65a01367967177721b943a2927fa4305c4b4d04d80764d943f8c", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "libgcc >=14", + "libgettextpo 0.25.1 hf2ab22a_0", + "libiconv >=1.18,<2.0a0" + ], + "constrains": [], + "license": "GPL-3.0-or-later", + "timestamp": 1772045253000, + "size": 36248, + "requested_spec": "pkgs/main/linux-64::libgettextpo-devel==0.25.1=hf2ab22a_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libgettextpo-devel-0.25.1-hf2ab22a_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libgettextpo-devel-0.25.1-hf2ab22a_0", + "files": [ + "include/gettext-po.h", + "lib/libgettextpo.so" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libgettextpo-devel-0.25.1-hf2ab22a_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libgomp-15.2.0-h4751f2c_7.json b/miniconda3/conda-meta/libgomp-15.2.0-h4751f2c_7.json new file mode 100644 index 0000000000000000000000000000000000000000..6032f43936e15b70d2d069ec0d72b0158cffff37 --- /dev/null +++ b/miniconda3/conda-meta/libgomp-15.2.0-h4751f2c_7.json @@ -0,0 +1,37 @@ +{ + "name": "libgomp", + "version": "15.2.0", + "build": "h4751f2c_7", + "build_number": 7, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libgomp-15.2.0-h4751f2c_7.conda", + "md5": "82025ed6da944bd419d42d9b1ff116aa", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libgomp-15.2.0-h4751f2c_7.conda", + "sha256": "835e44371812c91563a00dec8bc98c460f8b9f33f50543244bc8774c446a2172", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0" + ], + "constrains": [], + "license": "GPL-3.0-only WITH GCC-exception-3.1", + "timestamp": 1762772542000, + "size": 446183, + "requested_spec": "pkgs/main/linux-64::libgomp==15.2.0=h4751f2c_7", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libgomp-15.2.0-h4751f2c_7.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libgomp-15.2.0-h4751f2c_7", + "files": [ + "lib/libgomp.so", + "lib/libgomp.so.1.0.0", + "share/licenses/gcc-libs/RUNTIME.LIBRARY.EXCEPTION.gomp_copy" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libgomp-15.2.0-h4751f2c_7", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libiconv-1.18-h75a1612_0.json b/miniconda3/conda-meta/libiconv-1.18-h75a1612_0.json new file mode 100644 index 0000000000000000000000000000000000000000..a8e8350bbdc80e3b930a522228b5bcfdd659937b --- /dev/null +++ b/miniconda3/conda-meta/libiconv-1.18-h75a1612_0.json @@ -0,0 +1,86 @@ +{ + "name": "libiconv", + "version": "1.18", + "build": "h75a1612_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libiconv-1.18-h75a1612_0.conda", + "md5": "14e4ca2d3797abc3c78ca0ce0e3d9c17", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libiconv-1.18-h75a1612_0.conda", + "sha256": "8852881ce7522ad4b9eb45ba94cd353f6b381ffd3f9fb5d31426ce2abd8c3ab0", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "libgcc >=14" + ], + "constrains": [], + "license": "LGPL-2.1-only", + "timestamp": 1771491869000, + "size": 789520, + "requested_spec": "pkgs/main/linux-64::libiconv==1.18=h75a1612_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libiconv-1.18-h75a1612_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libiconv-1.18-h75a1612_0", + "files": [ + "include/iconv.h", + "include/libcharset.h", + "include/localcharset.h", + "lib/libcharset.a", + "lib/libcharset.so", + "lib/libcharset.so.1", + "lib/libcharset.so.1.0.0", + "lib/libiconv.a", + "lib/libiconv.so", + "lib/libiconv.so.2", + "lib/libiconv.so.2.7.0", + "share/locale/af/LC_MESSAGES/libiconv.mo", + "share/locale/be/LC_MESSAGES/libiconv.mo", + "share/locale/bg/LC_MESSAGES/libiconv.mo", + "share/locale/ca/LC_MESSAGES/libiconv.mo", + "share/locale/cs/LC_MESSAGES/libiconv.mo", + "share/locale/da/LC_MESSAGES/libiconv.mo", + "share/locale/de/LC_MESSAGES/libiconv.mo", + "share/locale/el/LC_MESSAGES/libiconv.mo", + "share/locale/eo/LC_MESSAGES/libiconv.mo", + "share/locale/es/LC_MESSAGES/libiconv.mo", + "share/locale/et/LC_MESSAGES/libiconv.mo", + "share/locale/fi/LC_MESSAGES/libiconv.mo", + "share/locale/fr/LC_MESSAGES/libiconv.mo", + "share/locale/ga/LC_MESSAGES/libiconv.mo", + "share/locale/gl/LC_MESSAGES/libiconv.mo", + "share/locale/hr/LC_MESSAGES/libiconv.mo", + "share/locale/hu/LC_MESSAGES/libiconv.mo", + "share/locale/id/LC_MESSAGES/libiconv.mo", + "share/locale/it/LC_MESSAGES/libiconv.mo", + "share/locale/ja/LC_MESSAGES/libiconv.mo", + "share/locale/ka/LC_MESSAGES/libiconv.mo", + "share/locale/ko/LC_MESSAGES/libiconv.mo", + "share/locale/lt/LC_MESSAGES/libiconv.mo", + "share/locale/nl/LC_MESSAGES/libiconv.mo", + "share/locale/pl/LC_MESSAGES/libiconv.mo", + "share/locale/pt_BR/LC_MESSAGES/libiconv.mo", + "share/locale/rm/LC_MESSAGES/libiconv.mo", + "share/locale/ro/LC_MESSAGES/libiconv.mo", + "share/locale/ru/LC_MESSAGES/libiconv.mo", + "share/locale/sk/LC_MESSAGES/libiconv.mo", + "share/locale/sl/LC_MESSAGES/libiconv.mo", + "share/locale/sq/LC_MESSAGES/libiconv.mo", + "share/locale/sr/LC_MESSAGES/libiconv.mo", + "share/locale/sv/LC_MESSAGES/libiconv.mo", + "share/locale/tr/LC_MESSAGES/libiconv.mo", + "share/locale/uk/LC_MESSAGES/libiconv.mo", + "share/locale/vi/LC_MESSAGES/libiconv.mo", + "share/locale/wa/LC_MESSAGES/libiconv.mo", + "share/locale/zh_CN/LC_MESSAGES/libiconv.mo", + "share/locale/zh_TW/LC_MESSAGES/libiconv.mo" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libiconv-1.18-h75a1612_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libidn2-2.3.8-hf80d704_0.json b/miniconda3/conda-meta/libidn2-2.3.8-hf80d704_0.json new file mode 100644 index 0000000000000000000000000000000000000000..7d871924ae099305240a9e4bbe88c5ba0a7b2344 --- /dev/null +++ b/miniconda3/conda-meta/libidn2-2.3.8-hf80d704_0.json @@ -0,0 +1,55 @@ +{ + "name": "libidn2", + "version": "2.3.8", + "build": "hf80d704_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libidn2-2.3.8-hf80d704_0.conda", + "md5": "7ab70b332bb2df9ce90a1567126b5d2a", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libidn2-2.3.8-hf80d704_0.conda", + "sha256": "675beb2f9d9c876b87601b043d7e9e3b87cbec6b2172453932602db74e0099d7", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "gettext >=0.21.0,<1.0a0", + "libgcc-ng >=11.2.0", + "libiconv >=1.16,<2.0a0", + "libunistring >=1,<2.0a0" + ], + "constrains": [], + "license": "LGPL-2.0 AND LGPL-3.0-or-later AND GPL-3.0-or-later", + "license_family": "OTHER", + "timestamp": 1760364378000, + "size": 82352, + "requested_spec": "pkgs/main/linux-64::libidn2==2.3.8=hf80d704_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libidn2-2.3.8-hf80d704_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libidn2-2.3.8-hf80d704_0", + "files": [ + "bin/idn2", + "include/idn2.h", + "lib/libidn2.so", + "lib/libidn2.so.0", + "lib/libidn2.so.0.4.0", + "lib/pkgconfig/libidn2.pc" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/pkgconfig/libidn2.pc", + "prefix_placeholder": "/home/task_176036377076491/conda-bld/libidn2_1760364297213/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "55ebabecb04b26ebde8963555c8b1bf97499f0a49504e38c8c7d1762927b2722", + "size_in_bytes": 1553, + "sha256_in_prefix": "b922a0b78ca24d469834a0563b2b381924ef79d6ade7260ad9cedc419f3a8e57" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libidn2-2.3.8-hf80d704_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libkrb5-1.22.1-h6d2bf13_0.json b/miniconda3/conda-meta/libkrb5-1.22.1-h6d2bf13_0.json new file mode 100644 index 0000000000000000000000000000000000000000..b2c3ec5cebab86f06b466c836f49aca489393f33 --- /dev/null +++ b/miniconda3/conda-meta/libkrb5-1.22.1-h6d2bf13_0.json @@ -0,0 +1,187 @@ +{ + "name": "libkrb5", + "version": "1.22.1", + "build": "h6d2bf13_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libkrb5-1.22.1-h6d2bf13_0.conda", + "md5": "82619ec95cc6d12cec07401b3722ce89", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libkrb5-1.22.1-h6d2bf13_0.conda", + "sha256": "f1e8f3db4a01a7939d3eda83b632f7f9d3910ff4a03bcd124df099740509be97", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "libgcc >=14", + "libstdcxx >=14", + "lmdb", + "openssl >=3.0.18,<4.0a0" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1768489517000, + "size": 808402, + "requested_spec": "pkgs/main/linux-64::libkrb5==1.22.1=h6d2bf13_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libkrb5-1.22.1-h6d2bf13_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libkrb5-1.22.1-h6d2bf13_0", + "files": [ + "bin/compile_et", + "bin/krb5-config", + "include/com_err.h", + "include/gssapi.h", + "include/gssapi/gssapi.h", + "include/gssapi/gssapi_alloc.h", + "include/gssapi/gssapi_ext.h", + "include/gssapi/gssapi_generic.h", + "include/gssapi/gssapi_krb5.h", + "include/gssapi/mechglue.h", + "include/gssrpc/auth.h", + "include/gssrpc/auth_gss.h", + "include/gssrpc/auth_gssapi.h", + "include/gssrpc/auth_unix.h", + "include/gssrpc/clnt.h", + "include/gssrpc/netdb.h", + "include/gssrpc/pmap_clnt.h", + "include/gssrpc/pmap_prot.h", + "include/gssrpc/pmap_rmt.h", + "include/gssrpc/rename.h", + "include/gssrpc/rpc.h", + "include/gssrpc/rpc_msg.h", + "include/gssrpc/svc.h", + "include/gssrpc/svc_auth.h", + "include/gssrpc/types.h", + "include/gssrpc/xdr.h", + "include/kadm5/admin.h", + "include/kadm5/chpass_util_strings.h", + "include/kadm5/kadm_err.h", + "include/kdb.h", + "include/krad.h", + "include/krb5.h", + "include/krb5/ccselect_plugin.h", + "include/krb5/certauth_plugin.h", + "include/krb5/clpreauth_plugin.h", + "include/krb5/hostrealm_plugin.h", + "include/krb5/kadm5_auth_plugin.h", + "include/krb5/kadm5_hook_plugin.h", + "include/krb5/kdcpolicy_plugin.h", + "include/krb5/kdcpreauth_plugin.h", + "include/krb5/krb5.h", + "include/krb5/localauth_plugin.h", + "include/krb5/locate_plugin.h", + "include/krb5/plugin.h", + "include/krb5/preauth_plugin.h", + "include/krb5/pwqual_plugin.h", + "include/profile.h", + "include/verto-module.h", + "include/verto.h", + "lib/libcom_err.so", + "lib/libcom_err.so.3", + "lib/libcom_err.so.3.0", + "lib/libgssapi_krb5.so", + "lib/libgssapi_krb5.so.2", + "lib/libgssapi_krb5.so.2.2", + "lib/libgssrpc.so", + "lib/libgssrpc.so.4", + "lib/libgssrpc.so.4.2", + "lib/libk5crypto.so", + "lib/libk5crypto.so.3", + "lib/libk5crypto.so.3.1", + "lib/libkadm5clnt.so", + "lib/libkadm5clnt_mit.so", + "lib/libkadm5clnt_mit.so.12", + "lib/libkadm5clnt_mit.so.12.0", + "lib/libkadm5srv.so", + "lib/libkadm5srv_mit.so", + "lib/libkadm5srv_mit.so.12", + "lib/libkadm5srv_mit.so.12.0", + "lib/libkdb5.so", + "lib/libkdb5.so.10", + "lib/libkdb5.so.10.0", + "lib/libkrad.so", + "lib/libkrad.so.0", + "lib/libkrad.so.0.0", + "lib/libkrb5.so", + "lib/libkrb5.so.3", + "lib/libkrb5.so.3.3", + "lib/libkrb5support.so", + "lib/libkrb5support.so.0", + "lib/libkrb5support.so.0.1", + "lib/libverto.so", + "lib/libverto.so.0", + "lib/libverto.so.0.0" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/compile_et", + "prefix_placeholder": "/home/task_176848925151491/croot/krb5-split_1768489446313/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "c781f39303091fe71b9bf1a49a8a748d1e9917b983a9e116216bcce0a853ded7", + "size_in_bytes": 1069, + "sha256_in_prefix": "5fd96509467721ca38484a329e6e3e5bbf18d3c4c4901910d59a1445c022f5d4" + }, + { + "_path": "bin/krb5-config", + "prefix_placeholder": "/home/task_176848925151491/croot/krb5-split_1768489446313/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "444c293ecf9cd8343cc2f6ecc14d69402353055058af71b25090b9f417ce197f", + "size_in_bytes": 7187, + "sha256_in_prefix": "2c13f5cc0e583d4c2d72f8818e5066bce3c73ca58f5053d8ac98defc33ca05da" + }, + { + "_path": "lib/libgssapi_krb5.so.2.2", + "prefix_placeholder": "/home/task_176848925151491/croot/krb5-split_1768489446313/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "5777df692eca424949b68bd6617fd604ec97d464c10070c5387969dad2468b26", + "size_in_bytes": 396504, + "sha256_in_prefix": "29e6ffb84835e8d41cf052c4ca830be56766dc2b2edbe32a799a96e3ff23ea80" + }, + { + "_path": "lib/libkadm5clnt_mit.so.12.0", + "prefix_placeholder": "/home/task_176848925151491/croot/krb5-split_1768489446313/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "25cb7bb1ec1c88c71981e47f98a63b9b76f290a69998da97eefeb155517c91b1", + "size_in_bytes": 107712, + "sha256_in_prefix": "ad750f77186f288dd4c574a5e9ce2ffa06dc7ddcb15383ec31906425e563740f" + }, + { + "_path": "lib/libkadm5srv_mit.so.12.0", + "prefix_placeholder": "/home/task_176848925151491/croot/krb5-split_1768489446313/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "e6147a29e05a668711aeb4b8f8401fd1b9a7d954a848fe950d0acd1c1b1792f2", + "size_in_bytes": 139424, + "sha256_in_prefix": "7c6a1219bc2dc5d6d71eaf21f2a0ac2d03ae9c2b4a0b3011098e635adb774ecd" + }, + { + "_path": "lib/libkdb5.so.10.0", + "prefix_placeholder": "/home/task_176848925151491/croot/krb5-split_1768489446313/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "e4369feac85412c7e8d8d4b1b73dd4d09aa51e6968c5bc93bdff4d0149bab664", + "size_in_bytes": 94744, + "sha256_in_prefix": "9320b2581e1d735f0610a0c2bbcea4cb201b2f5de5c002387e33b36dc1adb0c7" + }, + { + "_path": "lib/libkrb5.so.3.3", + "prefix_placeholder": "/home/task_176848925151491/croot/krb5-split_1768489446313/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "3db6979c09378814851016891851b52563b21b5af3809968d6f918a8e1379abc", + "size_in_bytes": 1046840, + "sha256_in_prefix": "915939db0e495519cdbd5d1e769b4b6842448a314636cb83df927bc65c86bb3d" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libkrb5-1.22.1-h6d2bf13_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libmamba-2.3.2-h860b5fb_1.json b/miniconda3/conda-meta/libmamba-2.3.2-h860b5fb_1.json new file mode 100644 index 0000000000000000000000000000000000000000..463f6bdc6e06a64f38dcb4644ad41f11643e527a --- /dev/null +++ b/miniconda3/conda-meta/libmamba-2.3.2-h860b5fb_1.json @@ -0,0 +1,185 @@ +{ + "name": "libmamba", + "version": "2.3.2", + "build": "h860b5fb_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libmamba-2.3.2-h860b5fb_1.conda", + "md5": "c9351e4b3b09fbe3c3bba5526acbf19c", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libmamba-2.3.2-h860b5fb_1.conda", + "sha256": "87776624e4882955942a61799db0cafd19e5ab26874ddcb99cca2d66a4ea287d", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "bzip2 >=1.0.8,<2.0a0", + "cpp-expected >=1.1.0,<1.1.1.0a0", + "fmt >=11.2.0,<12.0a0", + "libarchive >=3.8.2,<3.9.0a0", + "libcurl >=8.16.0,<9.0a0", + "libgcc", + "libgcc-ng >=11.2.0", + "libsolv >=0.7.30,<0.8.0a0", + "libstdcxx", + "libstdcxx-ng >=11.2.0", + "nlohmann_json >=3.11.2,<3.11.3.0a0", + "openssl >=3.0.18,<4.0a0", + "reproc >=14.2,<15.0a0", + "reproc-cpp >=14.2,<15.0a0", + "simdjson >=3.10.1,<3.11.0a0", + "yaml-cpp >=0.8.0,<0.9.0a0", + "zstd >=1.5.7,<1.6.0a0" + ], + "constrains": [], + "license": "BSD-3-Clause", + "license_family": "BSD", + "timestamp": 1763111696000, + "size": 2061828, + "requested_spec": "pkgs/main/linux-64::libmamba==2.3.2=h860b5fb_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libmamba-2.3.2-h860b5fb_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libmamba-2.3.2-h860b5fb_1", + "files": [ + "bin/mamba-package", + "include/mamba/api/c_api.h", + "include/mamba/api/channel_loader.hpp", + "include/mamba/api/clean.hpp", + "include/mamba/api/config.hpp", + "include/mamba/api/configuration.hpp", + "include/mamba/api/configuration_impl.hpp", + "include/mamba/api/constants.hpp", + "include/mamba/api/create.hpp", + "include/mamba/api/env.hpp", + "include/mamba/api/info.hpp", + "include/mamba/api/install.hpp", + "include/mamba/api/list.hpp", + "include/mamba/api/remove.hpp", + "include/mamba/api/repoquery.hpp", + "include/mamba/api/shell.hpp", + "include/mamba/api/update.hpp", + "include/mamba/core/activation.hpp", + "include/mamba/core/channel_context.hpp", + "include/mamba/core/common_types.hpp", + "include/mamba/core/context.hpp", + "include/mamba/core/context_params.hpp", + "include/mamba/core/download_progress_bar.hpp", + "include/mamba/core/env_lockfile.hpp", + "include/mamba/core/environments_manager.hpp", + "include/mamba/core/error_handling.hpp", + "include/mamba/core/execution.hpp", + "include/mamba/core/fsutil.hpp", + "include/mamba/core/history.hpp", + "include/mamba/core/invoke.hpp", + "include/mamba/core/menuinst.hpp", + "include/mamba/core/output.hpp", + "include/mamba/core/package_cache.hpp", + "include/mamba/core/package_database_loader.hpp", + "include/mamba/core/package_fetcher.hpp", + "include/mamba/core/package_handling.hpp", + "include/mamba/core/package_paths.hpp", + "include/mamba/core/palette.hpp", + "include/mamba/core/pinning.hpp", + "include/mamba/core/prefix_data.hpp", + "include/mamba/core/progress_bar.hpp", + "include/mamba/core/query.hpp", + "include/mamba/core/repo_checker_store.hpp", + "include/mamba/core/run.hpp", + "include/mamba/core/shell_init.hpp", + "include/mamba/core/subdir_index.hpp", + "include/mamba/core/subdir_parameters.hpp", + "include/mamba/core/tasksync.hpp", + "include/mamba/core/thread_utils.hpp", + "include/mamba/core/timeref.hpp", + "include/mamba/core/transaction.hpp", + "include/mamba/core/util.hpp", + "include/mamba/core/util_os.hpp", + "include/mamba/core/util_scope.hpp", + "include/mamba/core/virtual_packages.hpp", + "include/mamba/download/downloader.hpp", + "include/mamba/download/mirror.hpp", + "include/mamba/download/mirror_map.hpp", + "include/mamba/download/parameters.hpp", + "include/mamba/download/request.hpp", + "include/mamba/fs/filesystem.hpp", + "include/mamba/solver/libsolv/database.hpp", + "include/mamba/solver/libsolv/parameters.hpp", + "include/mamba/solver/libsolv/repo_info.hpp", + "include/mamba/solver/libsolv/solver.hpp", + "include/mamba/solver/libsolv/unsolvable.hpp", + "include/mamba/solver/problems_graph.hpp", + "include/mamba/solver/request.hpp", + "include/mamba/solver/solution.hpp", + "include/mamba/specs/archive.hpp", + "include/mamba/specs/authentication_info.hpp", + "include/mamba/specs/build_number_spec.hpp", + "include/mamba/specs/channel.hpp", + "include/mamba/specs/chimera_string_spec.hpp", + "include/mamba/specs/conda_url.hpp", + "include/mamba/specs/error.hpp", + "include/mamba/specs/glob_spec.hpp", + "include/mamba/specs/match_spec.hpp", + "include/mamba/specs/package_info.hpp", + "include/mamba/specs/platform.hpp", + "include/mamba/specs/regex_spec.hpp", + "include/mamba/specs/repo_data.hpp", + "include/mamba/specs/unresolved_channel.hpp", + "include/mamba/specs/version.hpp", + "include/mamba/specs/version_spec.hpp", + "include/mamba/util/build.hpp", + "include/mamba/util/cast.hpp", + "include/mamba/util/cfile.hpp", + "include/mamba/util/charconv.hpp", + "include/mamba/util/conditional.hpp", + "include/mamba/util/cryptography.hpp", + "include/mamba/util/deprecation.hpp", + "include/mamba/util/encoding.hpp", + "include/mamba/util/environment.hpp", + "include/mamba/util/flat_binary_tree.hpp", + "include/mamba/util/flat_bool_expr_tree.hpp", + "include/mamba/util/flat_set.hpp", + "include/mamba/util/graph.hpp", + "include/mamba/util/heap_optional.hpp", + "include/mamba/util/iterator.hpp", + "include/mamba/util/json.hpp", + "include/mamba/util/loop_control.hpp", + "include/mamba/util/os.hpp", + "include/mamba/util/os_linux.hpp", + "include/mamba/util/os_osx.hpp", + "include/mamba/util/os_unix.hpp", + "include/mamba/util/os_win.hpp", + "include/mamba/util/parsers.hpp", + "include/mamba/util/path_manip.hpp", + "include/mamba/util/random.hpp", + "include/mamba/util/string.hpp", + "include/mamba/util/synchronized_value.hpp", + "include/mamba/util/tuple_hash.hpp", + "include/mamba/util/type_traits.hpp", + "include/mamba/util/url.hpp", + "include/mamba/util/url_manip.hpp", + "include/mamba/util/variant_cmp.hpp", + "include/mamba/util/weakening_map.hpp", + "include/mamba/validation/errors.hpp", + "include/mamba/validation/keys.hpp", + "include/mamba/validation/repo_checker.hpp", + "include/mamba/validation/tools.hpp", + "include/mamba/validation/update_framework.hpp", + "include/mamba/validation/update_framework_v0_6.hpp", + "include/mamba/validation/update_framework_v1.hpp", + "include/mamba/version.hpp", + "lib/cmake/libmamba/libmambaConfig.cmake", + "lib/cmake/libmamba/libmambaConfigVersion.cmake", + "lib/cmake/libmamba/libmambaTargets-release.cmake", + "lib/cmake/libmamba/libmambaTargets.cmake", + "lib/libmamba.so", + "lib/libmamba.so.4", + "lib/libmamba.so.4.0.1" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libmamba-2.3.2-h860b5fb_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libmambapy-2.3.2-py313h3f77f5b_1.json b/miniconda3/conda-meta/libmambapy-2.3.2-py313h3f77f5b_1.json new file mode 100644 index 0000000000000000000000000000000000000000..42ac096724a15ba6542c33deaa08e38f6773ba5a --- /dev/null +++ b/miniconda3/conda-meta/libmambapy-2.3.2-py313h3f77f5b_1.json @@ -0,0 +1,65 @@ +{ + "name": "libmambapy", + "version": "2.3.2", + "build": "py313h3f77f5b_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libmambapy-2.3.2-py313h3f77f5b_1.conda", + "md5": "a974c724de77f79cd7e926116fd861df", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libmambapy-2.3.2-py313h3f77f5b_1.conda", + "sha256": "feedf8857d483851cf41a5ff9d625ea9c100194d54a974259072e215a3f86307", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "fmt >=11.2.0,<12.0a0", + "libgcc", + "libgcc-ng >=11.2.0", + "libmamba 2.3.2 h860b5fb_1", + "libstdcxx", + "libstdcxx-ng >=11.2.0", + "pybind11-abi 5", + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "BSD-3-Clause", + "license_family": "BSD", + "timestamp": 1763111784000, + "size": 663170, + "requested_spec": "pkgs/main/linux-64::libmambapy==2.3.2=py313h3f77f5b_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libmambapy-2.3.2-py313h3f77f5b_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libmambapy-2.3.2-py313h3f77f5b_1", + "files": [ + "lib/python3.13/site-packages/libmambapy-2.3.2.dist-info/INSTALLER", + "lib/python3.13/site-packages/libmambapy-2.3.2.dist-info/LICENSE", + "lib/python3.13/site-packages/libmambapy-2.3.2.dist-info/METADATA", + "lib/python3.13/site-packages/libmambapy-2.3.2.dist-info/RECORD", + "lib/python3.13/site-packages/libmambapy-2.3.2.dist-info/REQUESTED", + "lib/python3.13/site-packages/libmambapy-2.3.2.dist-info/WHEEL", + "lib/python3.13/site-packages/libmambapy-2.3.2.dist-info/direct_url.json", + "lib/python3.13/site-packages/libmambapy-2.3.2.dist-info/top_level.txt", + "lib/python3.13/site-packages/libmambapy/__init__.py", + "lib/python3.13/site-packages/libmambapy/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/libmambapy/__pycache__/specs.cpython-313.pyc", + "lib/python3.13/site-packages/libmambapy/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/site-packages/libmambapy/__pycache__/version.cpython-313.pyc", + "lib/python3.13/site-packages/libmambapy/bindings.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/site-packages/libmambapy/solver/__init__.py", + "lib/python3.13/site-packages/libmambapy/solver/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/libmambapy/solver/__pycache__/libsolv.cpython-313.pyc", + "lib/python3.13/site-packages/libmambapy/solver/libsolv.py", + "lib/python3.13/site-packages/libmambapy/specs.py", + "lib/python3.13/site-packages/libmambapy/utils.py", + "lib/python3.13/site-packages/libmambapy/version.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libmambapy-2.3.2-py313h3f77f5b_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libmpdec-4.0.0-h5eee18b_0.json b/miniconda3/conda-meta/libmpdec-4.0.0-h5eee18b_0.json new file mode 100644 index 0000000000000000000000000000000000000000..6bff196bcbe785f16813f904a9e43f2662cc404a --- /dev/null +++ b/miniconda3/conda-meta/libmpdec-4.0.0-h5eee18b_0.json @@ -0,0 +1,37 @@ +{ + "name": "libmpdec", + "version": "4.0.0", + "build": "h5eee18b_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libmpdec-4.0.0-h5eee18b_0.conda", + "md5": "feb10f42b1a7b523acbf85461be41a3e", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libmpdec-4.0.0-h5eee18b_0.conda", + "sha256": "61e359466b780d45fc0af671a3959c1877ee68b30b9afb41b8bd112618735cab", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "libgcc-ng >=11.2.0" + ], + "constrains": [], + "license": "BSD-2-Clause", + "license_family": "BSD", + "timestamp": 1726088449000, + "size": 88085, + "requested_spec": "pkgs/main/linux-64::libmpdec==4.0.0=h5eee18b_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libmpdec-4.0.0-h5eee18b_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libmpdec-4.0.0-h5eee18b_0", + "files": [ + "lib/libmpdec.so.4", + "lib/libmpdec.so.4.0.0" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libmpdec-4.0.0-h5eee18b_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libnghttp2-1.67.1-h697f920_0.json b/miniconda3/conda-meta/libnghttp2-1.67.1-h697f920_0.json new file mode 100644 index 0000000000000000000000000000000000000000..0d4396bff027177303d34e56f2254a81fa8f278e --- /dev/null +++ b/miniconda3/conda-meta/libnghttp2-1.67.1-h697f920_0.json @@ -0,0 +1,69 @@ +{ + "name": "libnghttp2", + "version": "1.67.1", + "build": "h697f920_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libnghttp2-1.67.1-h697f920_0.conda", + "md5": "c509cea724fbc22300e5ce9ced97d569", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libnghttp2-1.67.1-h697f920_0.conda", + "sha256": "73b3c00697e9a1a5693e9ff70f7995dc27ac11a72524cb9fd71b60b6da480a1d", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "c-ares >=1.34.5,<2.0a0", + "c-ares >=1.7.5", + "jansson >=2.14,<3.0a0", + "jansson >=2.5", + "libev >=4.11", + "libev >=4.33,<4.34.0a0", + "libgcc >=15", + "libstdcxx >=15", + "libstdcxx-ng", + "libxml2 >=2.13.9,<2.14.0a0", + "libxml2 >=2.6.26", + "openssl >=1.1.1", + "openssl >=3.0.18,<4.0a0", + "zlib >=1.2.13,<2.0a0", + "zlib >=1.2.3" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1762785235000, + "size": 651583, + "requested_spec": "pkgs/main/linux-64::libnghttp2==1.67.1=h697f920_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libnghttp2-1.67.1-h697f920_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libnghttp2-1.67.1-h697f920_0", + "files": [ + "bin/nghttp", + "bin/nghttpd", + "bin/nghttpx", + "include/nghttp2/nghttp2.h", + "include/nghttp2/nghttp2ver.h", + "lib/libnghttp2.so", + "lib/libnghttp2.so.14", + "lib/libnghttp2.so.14.29.1", + "lib/pkgconfig/libnghttp2.pc" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/pkgconfig/libnghttp2.pc", + "prefix_placeholder": "/home/task_176278503679349/conda-bld/nghttp2-split_1762785142584/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pla", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "2ea2781c33eb45c5ace400e8e2ae3b934e73eb4c480b99d87573cd46a78be154", + "size_in_bytes": 1633, + "sha256_in_prefix": "2b348d11353a2b608b56b7c1305997a337d9848789e0b4abbee4544bbe7e0179" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libnghttp2-1.67.1-h697f920_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libsolv-0.7.30-h6f1ccf3_2.json b/miniconda3/conda-meta/libsolv-0.7.30-h6f1ccf3_2.json new file mode 100644 index 0000000000000000000000000000000000000000..066528149ca4e68723f79bff0a359273f600ff80 --- /dev/null +++ b/miniconda3/conda-meta/libsolv-0.7.30-h6f1ccf3_2.json @@ -0,0 +1,115 @@ +{ + "name": "libsolv", + "version": "0.7.30", + "build": "h6f1ccf3_2", + "build_number": 2, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libsolv-0.7.30-h6f1ccf3_2.conda", + "md5": "0d547d53349f3fcf4a20c9a207c08a3b", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libsolv-0.7.30-h6f1ccf3_2.conda", + "sha256": "7a04f79942f6d2ab8004fc61fa663a9fbc020bec723a45db19d56b81e4bedcf5", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "libgcc-ng >=11.2.0", + "libstdcxx-ng >=11.2.0", + "pcre2 >=10.46,<10.47.0a0", + "zlib >=1.2.13,<2.0a0" + ], + "constrains": [], + "license": "BSD-3-Clause", + "license_family": "BSD", + "timestamp": 1760357067000, + "size": 465860, + "requested_spec": "pkgs/main/linux-64::libsolv==0.7.30=h6f1ccf3_2", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libsolv-0.7.30-h6f1ccf3_2.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libsolv-0.7.30-h6f1ccf3_2", + "files": [ + "bin/conda2solv", + "bin/dumpsolv", + "bin/installcheck", + "bin/mergesolv", + "bin/repo2solv", + "bin/testsolv", + "include/solv/bitmap.h", + "include/solv/chksum.h", + "include/solv/conda.h", + "include/solv/dataiterator.h", + "include/solv/dirpool.h", + "include/solv/evr.h", + "include/solv/hash.h", + "include/solv/knownid.h", + "include/solv/policy.h", + "include/solv/pool.h", + "include/solv/poolarch.h", + "include/solv/poolid.h", + "include/solv/pooltypes.h", + "include/solv/poolvendor.h", + "include/solv/problems.h", + "include/solv/queue.h", + "include/solv/repo.h", + "include/solv/repo_conda.h", + "include/solv/repo_solv.h", + "include/solv/repo_write.h", + "include/solv/repodata.h", + "include/solv/rules.h", + "include/solv/selection.h", + "include/solv/solv_xfopen.h", + "include/solv/solvable.h", + "include/solv/solver.h", + "include/solv/solverdebug.h", + "include/solv/solvversion.h", + "include/solv/strpool.h", + "include/solv/testcase.h", + "include/solv/tools_util.h", + "include/solv/transaction.h", + "include/solv/util.h", + "lib/libsolv.so", + "lib/libsolv.so.1", + "lib/libsolvext.so", + "lib/libsolvext.so.1", + "lib/pkgconfig/libsolv.pc", + "lib/pkgconfig/libsolvext.pc", + "share/cmake/Modules/FindLibSolv.cmake", + "share/man/man1/dumpsolv.1", + "share/man/man1/installcheck.1", + "share/man/man1/mergesolv.1", + "share/man/man1/repo2solv.1", + "share/man/man1/solv.1", + "share/man/man1/testsolv.1", + "share/man/man3/libsolv-bindings.3", + "share/man/man3/libsolv-constantids.3", + "share/man/man3/libsolv-history.3", + "share/man/man3/libsolv-pool.3", + "share/man/man3/libsolv.3" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/pkgconfig/libsolv.pc", + "prefix_placeholder": "/home/task_176035639968744/conda-bld/libsolv-suite_1760357031527/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pla", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "4f6350c04a41333ac69e6e6f21ddf0ab3cbac67a6c72d41b3bf9f92499a14c62", + "size_in_bytes": 664, + "sha256_in_prefix": "544695634a90ef9dbdafc3b1a3f4c63bbfa65043e3ff52d983066c497d86d872" + }, + { + "_path": "lib/pkgconfig/libsolvext.pc", + "prefix_placeholder": "/home/task_176035639968744/conda-bld/libsolv-suite_1760357031527/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pla", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "74affa4f2df80d6944b16acb8d6f206ea053ab00d80b3423d3f481dfe1d49e28", + "size_in_bytes": 692, + "sha256_in_prefix": "1585e1eb9b9f0f97a4701a452c359a7bd84e67bf7c070b85068530839596d353" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libsolv-0.7.30-h6f1ccf3_2", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libssh2-1.11.1-h251f7ec_0.json b/miniconda3/conda-meta/libssh2-1.11.1-h251f7ec_0.json new file mode 100644 index 0000000000000000000000000000000000000000..dd0e9f3b9094a6736091fd446085794cabc80f79 --- /dev/null +++ b/miniconda3/conda-meta/libssh2-1.11.1-h251f7ec_0.json @@ -0,0 +1,254 @@ +{ + "name": "libssh2", + "version": "1.11.1", + "build": "h251f7ec_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libssh2-1.11.1-h251f7ec_0.conda", + "md5": "dd68c24355431c0543339dda1404129d", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libssh2-1.11.1-h251f7ec_0.conda", + "sha256": "57da13c06557d7d6f21a0ac6d1e83a3e990d2217adcc4dc395009eb56ed040a2", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "libgcc-ng >=11.2.0", + "openssl >=3.0.15,<4.0a0", + "zlib >=1.2.13,<2.0.0a0" + ], + "constrains": [], + "license": "BSD-3-Clause", + "license_family": "BSD", + "timestamp": 1732891131000, + "size": 315187, + "requested_spec": "pkgs/main/linux-64::libssh2==1.11.1=h251f7ec_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libssh2-1.11.1-h251f7ec_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libssh2-1.11.1-h251f7ec_0", + "files": [ + "include/libssh2.h", + "include/libssh2_publickey.h", + "include/libssh2_sftp.h", + "lib/cmake/libssh2/FindLibgcrypt.cmake", + "lib/cmake/libssh2/FindMbedTLS.cmake", + "lib/cmake/libssh2/FindWolfSSL.cmake", + "lib/cmake/libssh2/libssh2-config-version.cmake", + "lib/cmake/libssh2/libssh2-config.cmake", + "lib/cmake/libssh2/libssh2-targets-noconfig.cmake", + "lib/cmake/libssh2/libssh2-targets.cmake", + "lib/libssh2.so", + "lib/libssh2.so.1", + "lib/libssh2.so.1.0.1", + "lib/pkgconfig/libssh2.pc", + "share/doc/libssh2/AUTHORS", + "share/doc/libssh2/BINDINGS.md", + "share/doc/libssh2/COPYING", + "share/doc/libssh2/HACKING.md", + "share/doc/libssh2/NEWS", + "share/doc/libssh2/README", + "share/doc/libssh2/RELEASE-NOTES", + "share/man/man3/libssh2_agent_connect.3", + "share/man/man3/libssh2_agent_disconnect.3", + "share/man/man3/libssh2_agent_free.3", + "share/man/man3/libssh2_agent_get_identity.3", + "share/man/man3/libssh2_agent_get_identity_path.3", + "share/man/man3/libssh2_agent_init.3", + "share/man/man3/libssh2_agent_list_identities.3", + "share/man/man3/libssh2_agent_set_identity_path.3", + "share/man/man3/libssh2_agent_sign.3", + "share/man/man3/libssh2_agent_userauth.3", + "share/man/man3/libssh2_banner_set.3", + "share/man/man3/libssh2_base64_decode.3", + "share/man/man3/libssh2_channel_close.3", + "share/man/man3/libssh2_channel_direct_streamlocal_ex.3", + "share/man/man3/libssh2_channel_direct_tcpip.3", + "share/man/man3/libssh2_channel_direct_tcpip_ex.3", + "share/man/man3/libssh2_channel_eof.3", + "share/man/man3/libssh2_channel_exec.3", + "share/man/man3/libssh2_channel_flush.3", + "share/man/man3/libssh2_channel_flush_ex.3", + "share/man/man3/libssh2_channel_flush_stderr.3", + "share/man/man3/libssh2_channel_forward_accept.3", + "share/man/man3/libssh2_channel_forward_cancel.3", + "share/man/man3/libssh2_channel_forward_listen.3", + "share/man/man3/libssh2_channel_forward_listen_ex.3", + "share/man/man3/libssh2_channel_free.3", + "share/man/man3/libssh2_channel_get_exit_signal.3", + "share/man/man3/libssh2_channel_get_exit_status.3", + "share/man/man3/libssh2_channel_handle_extended_data.3", + "share/man/man3/libssh2_channel_handle_extended_data2.3", + "share/man/man3/libssh2_channel_ignore_extended_data.3", + "share/man/man3/libssh2_channel_open_ex.3", + "share/man/man3/libssh2_channel_open_session.3", + "share/man/man3/libssh2_channel_process_startup.3", + "share/man/man3/libssh2_channel_read.3", + "share/man/man3/libssh2_channel_read_ex.3", + "share/man/man3/libssh2_channel_read_stderr.3", + "share/man/man3/libssh2_channel_receive_window_adjust.3", + "share/man/man3/libssh2_channel_receive_window_adjust2.3", + "share/man/man3/libssh2_channel_request_auth_agent.3", + "share/man/man3/libssh2_channel_request_pty.3", + "share/man/man3/libssh2_channel_request_pty_ex.3", + "share/man/man3/libssh2_channel_request_pty_size.3", + "share/man/man3/libssh2_channel_request_pty_size_ex.3", + "share/man/man3/libssh2_channel_send_eof.3", + "share/man/man3/libssh2_channel_set_blocking.3", + "share/man/man3/libssh2_channel_setenv.3", + "share/man/man3/libssh2_channel_setenv_ex.3", + "share/man/man3/libssh2_channel_shell.3", + "share/man/man3/libssh2_channel_signal_ex.3", + "share/man/man3/libssh2_channel_subsystem.3", + "share/man/man3/libssh2_channel_wait_closed.3", + "share/man/man3/libssh2_channel_wait_eof.3", + "share/man/man3/libssh2_channel_window_read.3", + "share/man/man3/libssh2_channel_window_read_ex.3", + "share/man/man3/libssh2_channel_window_write.3", + "share/man/man3/libssh2_channel_window_write_ex.3", + "share/man/man3/libssh2_channel_write.3", + "share/man/man3/libssh2_channel_write_ex.3", + "share/man/man3/libssh2_channel_write_stderr.3", + "share/man/man3/libssh2_channel_x11_req.3", + "share/man/man3/libssh2_channel_x11_req_ex.3", + "share/man/man3/libssh2_crypto_engine.3", + "share/man/man3/libssh2_exit.3", + "share/man/man3/libssh2_free.3", + "share/man/man3/libssh2_hostkey_hash.3", + "share/man/man3/libssh2_init.3", + "share/man/man3/libssh2_keepalive_config.3", + "share/man/man3/libssh2_keepalive_send.3", + "share/man/man3/libssh2_knownhost_add.3", + "share/man/man3/libssh2_knownhost_addc.3", + "share/man/man3/libssh2_knownhost_check.3", + "share/man/man3/libssh2_knownhost_checkp.3", + "share/man/man3/libssh2_knownhost_del.3", + "share/man/man3/libssh2_knownhost_free.3", + "share/man/man3/libssh2_knownhost_get.3", + "share/man/man3/libssh2_knownhost_init.3", + "share/man/man3/libssh2_knownhost_readfile.3", + "share/man/man3/libssh2_knownhost_readline.3", + "share/man/man3/libssh2_knownhost_writefile.3", + "share/man/man3/libssh2_knownhost_writeline.3", + "share/man/man3/libssh2_poll.3", + "share/man/man3/libssh2_poll_channel_read.3", + "share/man/man3/libssh2_publickey_add.3", + "share/man/man3/libssh2_publickey_add_ex.3", + "share/man/man3/libssh2_publickey_init.3", + "share/man/man3/libssh2_publickey_list_fetch.3", + "share/man/man3/libssh2_publickey_list_free.3", + "share/man/man3/libssh2_publickey_remove.3", + "share/man/man3/libssh2_publickey_remove_ex.3", + "share/man/man3/libssh2_publickey_shutdown.3", + "share/man/man3/libssh2_scp_recv.3", + "share/man/man3/libssh2_scp_recv2.3", + "share/man/man3/libssh2_scp_send.3", + "share/man/man3/libssh2_scp_send64.3", + "share/man/man3/libssh2_scp_send_ex.3", + "share/man/man3/libssh2_session_abstract.3", + "share/man/man3/libssh2_session_banner_get.3", + "share/man/man3/libssh2_session_banner_set.3", + "share/man/man3/libssh2_session_block_directions.3", + "share/man/man3/libssh2_session_callback_set.3", + "share/man/man3/libssh2_session_callback_set2.3", + "share/man/man3/libssh2_session_disconnect.3", + "share/man/man3/libssh2_session_disconnect_ex.3", + "share/man/man3/libssh2_session_flag.3", + "share/man/man3/libssh2_session_free.3", + "share/man/man3/libssh2_session_get_blocking.3", + "share/man/man3/libssh2_session_get_read_timeout.3", + "share/man/man3/libssh2_session_get_timeout.3", + "share/man/man3/libssh2_session_handshake.3", + "share/man/man3/libssh2_session_hostkey.3", + "share/man/man3/libssh2_session_init.3", + "share/man/man3/libssh2_session_init_ex.3", + "share/man/man3/libssh2_session_last_errno.3", + "share/man/man3/libssh2_session_last_error.3", + "share/man/man3/libssh2_session_method_pref.3", + "share/man/man3/libssh2_session_methods.3", + "share/man/man3/libssh2_session_set_blocking.3", + "share/man/man3/libssh2_session_set_last_error.3", + "share/man/man3/libssh2_session_set_read_timeout.3", + "share/man/man3/libssh2_session_set_timeout.3", + "share/man/man3/libssh2_session_startup.3", + "share/man/man3/libssh2_session_supported_algs.3", + "share/man/man3/libssh2_sftp_close.3", + "share/man/man3/libssh2_sftp_close_handle.3", + "share/man/man3/libssh2_sftp_closedir.3", + "share/man/man3/libssh2_sftp_fsetstat.3", + "share/man/man3/libssh2_sftp_fstat.3", + "share/man/man3/libssh2_sftp_fstat_ex.3", + "share/man/man3/libssh2_sftp_fstatvfs.3", + "share/man/man3/libssh2_sftp_fsync.3", + "share/man/man3/libssh2_sftp_get_channel.3", + "share/man/man3/libssh2_sftp_init.3", + "share/man/man3/libssh2_sftp_last_error.3", + "share/man/man3/libssh2_sftp_lstat.3", + "share/man/man3/libssh2_sftp_mkdir.3", + "share/man/man3/libssh2_sftp_mkdir_ex.3", + "share/man/man3/libssh2_sftp_open.3", + "share/man/man3/libssh2_sftp_open_ex.3", + "share/man/man3/libssh2_sftp_open_ex_r.3", + "share/man/man3/libssh2_sftp_open_r.3", + "share/man/man3/libssh2_sftp_opendir.3", + "share/man/man3/libssh2_sftp_posix_rename.3", + "share/man/man3/libssh2_sftp_posix_rename_ex.3", + "share/man/man3/libssh2_sftp_read.3", + "share/man/man3/libssh2_sftp_readdir.3", + "share/man/man3/libssh2_sftp_readdir_ex.3", + "share/man/man3/libssh2_sftp_readlink.3", + "share/man/man3/libssh2_sftp_realpath.3", + "share/man/man3/libssh2_sftp_rename.3", + "share/man/man3/libssh2_sftp_rename_ex.3", + "share/man/man3/libssh2_sftp_rewind.3", + "share/man/man3/libssh2_sftp_rmdir.3", + "share/man/man3/libssh2_sftp_rmdir_ex.3", + "share/man/man3/libssh2_sftp_seek.3", + "share/man/man3/libssh2_sftp_seek64.3", + "share/man/man3/libssh2_sftp_setstat.3", + "share/man/man3/libssh2_sftp_shutdown.3", + "share/man/man3/libssh2_sftp_stat.3", + "share/man/man3/libssh2_sftp_stat_ex.3", + "share/man/man3/libssh2_sftp_statvfs.3", + "share/man/man3/libssh2_sftp_symlink.3", + "share/man/man3/libssh2_sftp_symlink_ex.3", + "share/man/man3/libssh2_sftp_tell.3", + "share/man/man3/libssh2_sftp_tell64.3", + "share/man/man3/libssh2_sftp_unlink.3", + "share/man/man3/libssh2_sftp_unlink_ex.3", + "share/man/man3/libssh2_sftp_write.3", + "share/man/man3/libssh2_sign_sk.3", + "share/man/man3/libssh2_trace.3", + "share/man/man3/libssh2_trace_sethandler.3", + "share/man/man3/libssh2_userauth_authenticated.3", + "share/man/man3/libssh2_userauth_banner.3", + "share/man/man3/libssh2_userauth_hostbased_fromfile.3", + "share/man/man3/libssh2_userauth_hostbased_fromfile_ex.3", + "share/man/man3/libssh2_userauth_keyboard_interactive.3", + "share/man/man3/libssh2_userauth_keyboard_interactive_ex.3", + "share/man/man3/libssh2_userauth_list.3", + "share/man/man3/libssh2_userauth_password.3", + "share/man/man3/libssh2_userauth_password_ex.3", + "share/man/man3/libssh2_userauth_publickey.3", + "share/man/man3/libssh2_userauth_publickey_fromfile.3", + "share/man/man3/libssh2_userauth_publickey_fromfile_ex.3", + "share/man/man3/libssh2_userauth_publickey_frommemory.3", + "share/man/man3/libssh2_userauth_publickey_sk.3", + "share/man/man3/libssh2_version.3" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/pkgconfig/libssh2.pc", + "prefix_placeholder": "/croot/libssh2_1732891098804/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "7599f3f5f4d469e8493513823568d030d7ab7b061fd7e3d2bc5c94966f518836", + "size_in_bytes": 851, + "sha256_in_prefix": "0947410763175cd8d865a489e278f7ffa29c9de4ad31079c931f171209de6ab9" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libssh2-1.11.1-h251f7ec_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libstdcxx-15.2.0-h39759b7_7.json b/miniconda3/conda-meta/libstdcxx-15.2.0-h39759b7_7.json new file mode 100644 index 0000000000000000000000000000000000000000..5301f5adb250d163b92cf78f33fd35d17f3f47c1 --- /dev/null +++ b/miniconda3/conda-meta/libstdcxx-15.2.0-h39759b7_7.json @@ -0,0 +1,41 @@ +{ + "name": "libstdcxx", + "version": "15.2.0", + "build": "h39759b7_7", + "build_number": 7, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libstdcxx-15.2.0-h39759b7_7.conda", + "md5": "7dc7ec61ceea5de17f3e2c4c5f442fc6", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-15.2.0-h39759b7_7.conda", + "sha256": "747474162ae421d680ab3374d8b11158701206d4a9c4a8f9de557dd6fc13345a", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "libgcc 15.2.0 h69a1729_7" + ], + "constrains": [ + "libstdcxx-ng ==15.2.0 *_7" + ], + "license": "GPL-3.0-only WITH GCC-exception-3.1", + "timestamp": 1762772586000, + "size": 3903663, + "requested_spec": "pkgs/main/linux-64::libstdcxx==15.2.0=h39759b7_7", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libstdcxx-15.2.0-h39759b7_7.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libstdcxx-15.2.0-h39759b7_7", + "files": [ + "lib/libstdc++.so", + "lib/libstdc++.so.6", + "lib/libstdc++.so.6.0.34", + "share/licenses/libstdc++/RUNTIME.LIBRARY.EXCEPTION" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libstdcxx-15.2.0-h39759b7_7", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libstdcxx-ng-15.2.0-hc03a8fd_7.json b/miniconda3/conda-meta/libstdcxx-ng-15.2.0-hc03a8fd_7.json new file mode 100644 index 0000000000000000000000000000000000000000..26c3908c2ce418182da42c890469e686dfb48327 --- /dev/null +++ b/miniconda3/conda-meta/libstdcxx-ng-15.2.0-hc03a8fd_7.json @@ -0,0 +1,33 @@ +{ + "name": "libstdcxx-ng", + "version": "15.2.0", + "build": "hc03a8fd_7", + "build_number": 7, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libstdcxx-ng-15.2.0-hc03a8fd_7.conda", + "md5": "cf200522c0b13d64bf81035358d05f5b", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-15.2.0-hc03a8fd_7.conda", + "sha256": "7a39becf3c7dd6016d4b6d24587071cda2afefcdf2886ad16572095261c87b90", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "libstdcxx 15.2.0 h39759b7_7" + ], + "constrains": [], + "license": "GPL-3.0-only WITH GCC-exception-3.1", + "timestamp": 1762772606000, + "size": 28429, + "requested_spec": "pkgs/main/linux-64::libstdcxx-ng==15.2.0=hc03a8fd_7", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libstdcxx-ng-15.2.0-hc03a8fd_7.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libstdcxx-ng-15.2.0-hc03a8fd_7", + "files": [], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libstdcxx-ng-15.2.0-hc03a8fd_7", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libunistring-1.3-hb25bd0a_0.json b/miniconda3/conda-meta/libunistring-1.3-hb25bd0a_0.json new file mode 100644 index 0000000000000000000000000000000000000000..f4dd617972567f804e1fd556efc1cf160d97d992 --- /dev/null +++ b/miniconda3/conda-meta/libunistring-1.3-hb25bd0a_0.json @@ -0,0 +1,59 @@ +{ + "name": "libunistring", + "version": "1.3", + "build": "hb25bd0a_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libunistring-1.3-hb25bd0a_0.conda", + "md5": "46838e72a11b9934a5e4e40530018ccf", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libunistring-1.3-hb25bd0a_0.conda", + "sha256": "7b30c28b4cf48110e983bcee62816c5ac6089379e5aac6f65b8c563430b01754", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.17,<3.0.a0", + "libgcc-ng >=11.2.0" + ], + "constrains": [], + "license": "LGPL-3.0-only", + "license_family": "LGPL", + "timestamp": 1755085809000, + "size": 737806, + "requested_spec": "pkgs/main/linux-64::libunistring==1.3=hb25bd0a_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libunistring-1.3-hb25bd0a_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libunistring-1.3-hb25bd0a_0", + "files": [ + "include/unicase.h", + "include/uniconv.h", + "include/unictype.h", + "include/unigbrk.h", + "include/unilbrk.h", + "include/unimetadata.h", + "include/uniname.h", + "include/uninorm.h", + "include/unistdio.h", + "include/unistr.h", + "include/unistring/cdefs.h", + "include/unistring/iconveh.h", + "include/unistring/inline.h", + "include/unistring/localcharset.h", + "include/unistring/stdint.h", + "include/unistring/version.h", + "include/unistring/woe32dll.h", + "include/unitypes.h", + "include/uniwbrk.h", + "include/uniwidth.h", + "lib/libunistring.so", + "lib/libunistring.so.5", + "lib/libunistring.so.5.2.0" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libunistring-1.3-hb25bd0a_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libuuid-1.41.5-h5eee18b_0.json b/miniconda3/conda-meta/libuuid-1.41.5-h5eee18b_0.json new file mode 100644 index 0000000000000000000000000000000000000000..4832b6e96f5f35c092bc9423ced2b1825bc06a1a --- /dev/null +++ b/miniconda3/conda-meta/libuuid-1.41.5-h5eee18b_0.json @@ -0,0 +1,51 @@ +{ + "name": "libuuid", + "version": "1.41.5", + "build": "h5eee18b_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libuuid-1.41.5-h5eee18b_0.conda", + "md5": "4a6a2354414c9080327274aa514e5299", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libuuid-1.41.5-h5eee18b_0.conda", + "sha256": "2a401aafabac51b7736cfe12d2ab205d29052640ea8183253c9d0a8e7ed0d49a", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "libgcc-ng >=11.2.0" + ], + "constrains": [], + "license": "BSD-3-Clause", + "license_family": "BSD", + "timestamp": 1668082729000, + "size": 28110, + "requested_spec": "pkgs/main/linux-64::libuuid==1.41.5=h5eee18b_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libuuid-1.41.5-h5eee18b_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libuuid-1.41.5-h5eee18b_0", + "files": [ + "include/uuid/uuid.h", + "lib/libuuid.a", + "lib/libuuid.so", + "lib/libuuid.so.1", + "lib/libuuid.so.1.3.0", + "lib/pkgconfig/uuid.pc" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/pkgconfig/uuid.pc", + "prefix_placeholder": "/croot/libuuid_1668082679328/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "ad771b4cb15ca6fcc526199ebbc1c4ff31e1cf96f01fb4710b14462327ebbef1", + "size_in_bytes": 1208, + "sha256_in_prefix": "fb1b9bf994dcba48104f844e7ab42c67a7a93af591ca926133170979fa53cded" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libuuid-1.41.5-h5eee18b_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libxcb-1.17.0-h9b100fa_0.json b/miniconda3/conda-meta/libxcb-1.17.0-h9b100fa_0.json new file mode 100644 index 0000000000000000000000000000000000000000..e281992b450a759742b5300648a4f8b4a7f42101 --- /dev/null +++ b/miniconda3/conda-meta/libxcb-1.17.0-h9b100fa_0.json @@ -0,0 +1,399 @@ +{ + "name": "libxcb", + "version": "1.17.0", + "build": "h9b100fa_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libxcb-1.17.0-h9b100fa_0.conda", + "md5": "fdf0d380fa3809a301e2dbc0d5183883", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libxcb-1.17.0-h9b100fa_0.conda", + "sha256": "f9cd1564fc83261ddba7496404f18143d4f8fda52e42c040005c1b1ad3e47f56", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "libgcc-ng >=11.2.0", + "pthread-stubs", + "xorg-libxau >=1.0.12,<2.0a0", + "xorg-libxdmcp >=1.1.5,<2.0a0" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1746022211000, + "size": 440690, + "requested_spec": "pkgs/main/linux-64::libxcb==1.17.0=h9b100fa_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libxcb-1.17.0-h9b100fa_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libxcb-1.17.0-h9b100fa_0", + "files": [ + "include/xcb/bigreq.h", + "include/xcb/composite.h", + "include/xcb/damage.h", + "include/xcb/dbe.h", + "include/xcb/dpms.h", + "include/xcb/dri2.h", + "include/xcb/dri3.h", + "include/xcb/ge.h", + "include/xcb/glx.h", + "include/xcb/present.h", + "include/xcb/randr.h", + "include/xcb/record.h", + "include/xcb/render.h", + "include/xcb/res.h", + "include/xcb/screensaver.h", + "include/xcb/shape.h", + "include/xcb/shm.h", + "include/xcb/sync.h", + "include/xcb/xc_misc.h", + "include/xcb/xcb.h", + "include/xcb/xcbext.h", + "include/xcb/xevie.h", + "include/xcb/xf86dri.h", + "include/xcb/xfixes.h", + "include/xcb/xinerama.h", + "include/xcb/xinput.h", + "include/xcb/xkb.h", + "include/xcb/xprint.h", + "include/xcb/xproto.h", + "include/xcb/xselinux.h", + "include/xcb/xtest.h", + "include/xcb/xv.h", + "include/xcb/xvmc.h", + "lib/libxcb-composite.so", + "lib/libxcb-composite.so.0", + "lib/libxcb-composite.so.0.0.0", + "lib/libxcb-damage.so", + "lib/libxcb-damage.so.0", + "lib/libxcb-damage.so.0.0.0", + "lib/libxcb-dbe.so", + "lib/libxcb-dbe.so.0", + "lib/libxcb-dbe.so.0.0.0", + "lib/libxcb-dpms.so", + "lib/libxcb-dpms.so.0", + "lib/libxcb-dpms.so.0.0.0", + "lib/libxcb-dri2.so", + "lib/libxcb-dri2.so.0", + "lib/libxcb-dri2.so.0.0.0", + "lib/libxcb-dri3.so", + "lib/libxcb-dri3.so.0", + "lib/libxcb-dri3.so.0.1.0", + "lib/libxcb-glx.so", + "lib/libxcb-glx.so.0", + "lib/libxcb-glx.so.0.0.0", + "lib/libxcb-present.so", + "lib/libxcb-present.so.0", + "lib/libxcb-present.so.0.0.0", + "lib/libxcb-randr.so", + "lib/libxcb-randr.so.0", + "lib/libxcb-randr.so.0.1.0", + "lib/libxcb-record.so", + "lib/libxcb-record.so.0", + "lib/libxcb-record.so.0.0.0", + "lib/libxcb-render.so", + "lib/libxcb-render.so.0", + "lib/libxcb-render.so.0.0.0", + "lib/libxcb-res.so", + "lib/libxcb-res.so.0", + "lib/libxcb-res.so.0.0.0", + "lib/libxcb-screensaver.so", + "lib/libxcb-screensaver.so.0", + "lib/libxcb-screensaver.so.0.0.0", + "lib/libxcb-shape.so", + "lib/libxcb-shape.so.0", + "lib/libxcb-shape.so.0.0.0", + "lib/libxcb-shm.so", + "lib/libxcb-shm.so.0", + "lib/libxcb-shm.so.0.0.0", + "lib/libxcb-sync.so", + "lib/libxcb-sync.so.1", + "lib/libxcb-sync.so.1.0.0", + "lib/libxcb-xf86dri.so", + "lib/libxcb-xf86dri.so.0", + "lib/libxcb-xf86dri.so.0.0.0", + "lib/libxcb-xfixes.so", + "lib/libxcb-xfixes.so.0", + "lib/libxcb-xfixes.so.0.0.0", + "lib/libxcb-xinerama.so", + "lib/libxcb-xinerama.so.0", + "lib/libxcb-xinerama.so.0.0.0", + "lib/libxcb-xinput.so", + "lib/libxcb-xinput.so.0", + "lib/libxcb-xinput.so.0.1.0", + "lib/libxcb-xkb.so", + "lib/libxcb-xkb.so.1", + "lib/libxcb-xkb.so.1.0.0", + "lib/libxcb-xlib.so.0", + "lib/libxcb-xlib.so.0.0.0", + "lib/libxcb-xtest.so", + "lib/libxcb-xtest.so.0", + "lib/libxcb-xtest.so.0.0.0", + "lib/libxcb-xv.so", + "lib/libxcb-xv.so.0", + "lib/libxcb-xv.so.0.0.0", + "lib/libxcb-xvmc.so", + "lib/libxcb-xvmc.so.0", + "lib/libxcb-xvmc.so.0.0.0", + "lib/libxcb.so", + "lib/libxcb.so.1", + "lib/libxcb.so.1.1.0", + "lib/pkgconfig/xcb-composite.pc", + "lib/pkgconfig/xcb-damage.pc", + "lib/pkgconfig/xcb-dbe.pc", + "lib/pkgconfig/xcb-dpms.pc", + "lib/pkgconfig/xcb-dri2.pc", + "lib/pkgconfig/xcb-dri3.pc", + "lib/pkgconfig/xcb-glx.pc", + "lib/pkgconfig/xcb-present.pc", + "lib/pkgconfig/xcb-randr.pc", + "lib/pkgconfig/xcb-record.pc", + "lib/pkgconfig/xcb-render.pc", + "lib/pkgconfig/xcb-res.pc", + "lib/pkgconfig/xcb-screensaver.pc", + "lib/pkgconfig/xcb-shape.pc", + "lib/pkgconfig/xcb-shm.pc", + "lib/pkgconfig/xcb-sync.pc", + "lib/pkgconfig/xcb-xf86dri.pc", + "lib/pkgconfig/xcb-xfixes.pc", + "lib/pkgconfig/xcb-xinerama.pc", + "lib/pkgconfig/xcb-xinput.pc", + "lib/pkgconfig/xcb-xkb.pc", + "lib/pkgconfig/xcb-xtest.pc", + "lib/pkgconfig/xcb-xv.pc", + "lib/pkgconfig/xcb-xvmc.pc", + "lib/pkgconfig/xcb.pc" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/pkgconfig/xcb-composite.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "392617736c36bfb04c216404910e13a3f71c1e6a2c48147f76f14eb1f0ba34e6", + "size_in_bytes": 505, + "sha256_in_prefix": "460551e7f57b0c6743a7f378e2b4f54ca7ca34f32fb503f9961b0337fc9127d7" + }, + { + "_path": "lib/pkgconfig/xcb-damage.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "61a8f7c5570dafdd83147b8873a375b2e66f4bad3bcd8796799ed2d34815264c", + "size_in_bytes": 496, + "sha256_in_prefix": "ea61c31fafc80a6a5b00fcfadb6d3a09dcf4e822f7b3dc6921f85b7ec1bdd85e" + }, + { + "_path": "lib/pkgconfig/xcb-dbe.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "158d46272102d561bb35806b13bb9e6821b2cca1ddbbd704a78f9b989fc4cd8a", + "size_in_bytes": 486, + "sha256_in_prefix": "6b146df992e8983b415197cc3c65b54560b626fda27053d476bce51d28d70b83" + }, + { + "_path": "lib/pkgconfig/xcb-dpms.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "4543c474a991cb876c7ddb2edbcd245233e78e8da59bfd107f2ed963fcc74127", + "size_in_bytes": 479, + "sha256_in_prefix": "c55fa2d413e9319e3c4ff8fded4ab861bb21dcff6284057dcb3f47aaa8f0e7b6" + }, + { + "_path": "lib/pkgconfig/xcb-dri2.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "9fe8b646d38e60a95a12f703d187a552735782e41e3cc76541f02e352ebf0b33", + "size_in_bytes": 479, + "sha256_in_prefix": "324b705a6bdb7a944b3416437aba098c1e9229b00d0aec7608d8496cd6f0eada" + }, + { + "_path": "lib/pkgconfig/xcb-dri3.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "05e53632ace30b0bba860cfe6247cd477938686d53bdb3393be97486532c8260", + "size_in_bytes": 479, + "sha256_in_prefix": "9a3ec2711b065b4d5a7460ded936ce8660f5615b7b77b86f3cf18b88ffbc0b56" + }, + { + "_path": "lib/pkgconfig/xcb-glx.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "20be637b478c9c36c1764da2929111baa9bb5583ef954ce0852b02274b83bea8", + "size_in_bytes": 476, + "sha256_in_prefix": "226057cd657387188c4579a069cfe27b1b56eee97b28aaf2489b9c1c4884ec6c" + }, + { + "_path": "lib/pkgconfig/xcb-present.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "3c66e22264bf0d7eee239be9d602956cb230394ab0e35ad41e7d83a2b840a195", + "size_in_bytes": 527, + "sha256_in_prefix": "24d1fae1759b136a269d60d9a7b02359adfd25f66b6ef6232368b30bb58939ec" + }, + { + "_path": "lib/pkgconfig/xcb-randr.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "0dd2b23f16efa52fd8fc360d03190da2162b7033fb5ef44075b96913ad7e7559", + "size_in_bytes": 493, + "sha256_in_prefix": "5c9f2d94f81e88046fa1bb9d619763c3b86065e2f56554c86687c67e23a98910" + }, + { + "_path": "lib/pkgconfig/xcb-record.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "c1fc6da33e42dc7c5f8fa3a052a58f045cef613b56e5c4ba20194caedb19ddc9", + "size_in_bytes": 485, + "sha256_in_prefix": "992c9e3f3a990317a5eab54a792ddc7267497959fe9b4df935d34cca427794b6" + }, + { + "_path": "lib/pkgconfig/xcb-render.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "629c3d1799397ddf1025f9e7a3bd946d5123ea510e48096a588787d75e90ebf6", + "size_in_bytes": 485, + "sha256_in_prefix": "dc382df47bbb117308170f8000d8eb549a98d675a8341782d3471a1b51706017" + }, + { + "_path": "lib/pkgconfig/xcb-res.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "46782bd54c5668e9157fbaada2c50f39808d08c8a9f9a27b70f66396ea572fbb", + "size_in_bytes": 483, + "sha256_in_prefix": "ad274b33793970d663fa25efa940c69b7c15f1a1221d44ee27e1329441dd8f1b" + }, + { + "_path": "lib/pkgconfig/xcb-screensaver.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "cae42767c334c1793d95d68df0c4e9cd6ba7f899652701fa9ed55be4268a9de1", + "size_in_bytes": 500, + "sha256_in_prefix": "d1bdc24754688fe591ed644e30d4e9056abd782d73cf64feb34e6bb98f2da658" + }, + { + "_path": "lib/pkgconfig/xcb-shape.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "a5ccf172f64cee9a823e8b111251bbba912dac90e2416852ff0ad16197d17bfc", + "size_in_bytes": 482, + "sha256_in_prefix": "7fd2ee6b8fdcdd2c9e35c00b664f5cd374740be7b113681644bb0f6b13314ba0" + }, + { + "_path": "lib/pkgconfig/xcb-shm.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "0862d1554b125d19ad653c58d019a1dfca3c8ca084f6c56857167240360f5f5b", + "size_in_bytes": 476, + "sha256_in_prefix": "e4aadf0c4c2ed85463ec1169de54d0ac7acba89983a25c9a0e02c08a036ec825" + }, + { + "_path": "lib/pkgconfig/xcb-sync.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "b99b3603464217884bbeba73cfcb94bc6f0aa03974d8c519c2dd0649c3f37383", + "size_in_bytes": 479, + "sha256_in_prefix": "a61a4b87105271a5b0dc3b875f7f2bf3c7a213971b7e6b120e86afc7b551e659" + }, + { + "_path": "lib/pkgconfig/xcb-xf86dri.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "a807cca9282a9e5f07b9630901cb7f19457e88958ba34c93a991d8e86e89f346", + "size_in_bytes": 496, + "sha256_in_prefix": "a7843fcef5ae70ce9821f6e79673af17a168f85b000df173f4d7ce083ae42205" + }, + { + "_path": "lib/pkgconfig/xcb-xfixes.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "669435a533dbe30b510ec0b06bce813ca79263235bff639ee3a7f2891986ca08", + "size_in_bytes": 506, + "sha256_in_prefix": "004d5fe02f5be15e707f73d54c08852acd0e04946ea77e7ef31fc65808ebcedb" + }, + { + "_path": "lib/pkgconfig/xcb-xinerama.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "9018d4a33bcd34aa3252beae1feba57484f659dac7bc87b39bdcf7f6697560f3", + "size_in_bytes": 491, + "sha256_in_prefix": "9496551ad82f18c3c5d4f64e574ba5c4b59696a59ac22632f26a26de8308e847" + }, + { + "_path": "lib/pkgconfig/xcb-xinput.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "193f8d2828f2f9d801849afb0724ded452969e2b26ceccb4de84fe3233618010", + "size_in_bytes": 511, + "sha256_in_prefix": "a2048e0741f316e598004d399a923d64b12cffd359ea6260653027f6c00efb02" + }, + { + "_path": "lib/pkgconfig/xcb-xkb.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "46bae313161719ee817b9b5f53ec4726af472c597a1365fec45214fde4ce177a", + "size_in_bytes": 496, + "sha256_in_prefix": "a4f61e2ec865b92edd29cba1e02eb9d853f988e1dc2e71cc3b75157ab53414d7" + }, + { + "_path": "lib/pkgconfig/xcb-xtest.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "265cda1d94bb6b116643af0351fc9e72645cf5ec413be8b3de999c052ef3d246", + "size_in_bytes": 482, + "sha256_in_prefix": "06fa6d6d37ed4b0199294ed42a9ae73a8df7324f9abccad1cdbbe4b60e2e02d7" + }, + { + "_path": "lib/pkgconfig/xcb-xv.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "04d4e7aeab299d7860e95603e505133db8a8dcbd0cc6c4429fa4201604e47325", + "size_in_bytes": 481, + "sha256_in_prefix": "2a5fcbb52e76413b92be41aa81b2b76b467ae22c6f61d9137e0e9b881874456e" + }, + { + "_path": "lib/pkgconfig/xcb-xvmc.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "7ef8be5864a07233ad970698eeef08d20f9b513f5a339f1fe573023f9467264b", + "size_in_bytes": 486, + "sha256_in_prefix": "ed7dab61d15543e1a15ad46aa2b4406434aef6b2a8bc3d438f9fe155fcfefd94" + }, + { + "_path": "lib/pkgconfig/xcb.pc", + "prefix_placeholder": "/croot/libxcb_1746022161355/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "ef77d897b119da593048c8a664b51dadaceb90c84700549d7635122bd19ba439", + "size_in_bytes": 526, + "sha256_in_prefix": "c61a17126f095870397c9d8bdccac3c5db7117ac7e90ebcf55fc2f0d489660be" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libxcb-1.17.0-h9b100fa_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libxml2-2.13.9-h2c43086_0.json b/miniconda3/conda-meta/libxml2-2.13.9-h2c43086_0.json new file mode 100644 index 0000000000000000000000000000000000000000..aedc25d03532ebd600704f441264ec40c48806ec --- /dev/null +++ b/miniconda3/conda-meta/libxml2-2.13.9-h2c43086_0.json @@ -0,0 +1,149 @@ +{ + "name": "libxml2", + "version": "2.13.9", + "build": "h2c43086_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libxml2-2.13.9-h2c43086_0.conda", + "md5": "72d5d2d627dd9b7780781e7aa6a12689", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libxml2-2.13.9-h2c43086_0.conda", + "sha256": "9bb90ed726ba5868488184f03aa1c18fe654e00aa36b570a16a66c3d350a868b", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "icu >=73.1,<74.0a0", + "libgcc-ng >=11.2.0", + "xz >=5.6.4,<6.0a0", + "zlib >=1.2.13,<2.0a0" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1761768971000, + "size": 684847, + "requested_spec": "pkgs/main/linux-64::libxml2==2.13.9=h2c43086_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libxml2-2.13.9-h2c43086_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libxml2-2.13.9-h2c43086_0", + "files": [ + "bin/xml2-config", + "bin/xmlcatalog", + "bin/xmllint", + "include/libxml2/libxml/HTMLparser.h", + "include/libxml2/libxml/HTMLtree.h", + "include/libxml2/libxml/SAX.h", + "include/libxml2/libxml/SAX2.h", + "include/libxml2/libxml/c14n.h", + "include/libxml2/libxml/catalog.h", + "include/libxml2/libxml/chvalid.h", + "include/libxml2/libxml/debugXML.h", + "include/libxml2/libxml/dict.h", + "include/libxml2/libxml/encoding.h", + "include/libxml2/libxml/entities.h", + "include/libxml2/libxml/globals.h", + "include/libxml2/libxml/hash.h", + "include/libxml2/libxml/list.h", + "include/libxml2/libxml/nanoftp.h", + "include/libxml2/libxml/nanohttp.h", + "include/libxml2/libxml/parser.h", + "include/libxml2/libxml/parserInternals.h", + "include/libxml2/libxml/pattern.h", + "include/libxml2/libxml/relaxng.h", + "include/libxml2/libxml/schemasInternals.h", + "include/libxml2/libxml/schematron.h", + "include/libxml2/libxml/threads.h", + "include/libxml2/libxml/tree.h", + "include/libxml2/libxml/uri.h", + "include/libxml2/libxml/valid.h", + "include/libxml2/libxml/xinclude.h", + "include/libxml2/libxml/xlink.h", + "include/libxml2/libxml/xmlIO.h", + "include/libxml2/libxml/xmlautomata.h", + "include/libxml2/libxml/xmlerror.h", + "include/libxml2/libxml/xmlexports.h", + "include/libxml2/libxml/xmlmemory.h", + "include/libxml2/libxml/xmlmodule.h", + "include/libxml2/libxml/xmlreader.h", + "include/libxml2/libxml/xmlregexp.h", + "include/libxml2/libxml/xmlsave.h", + "include/libxml2/libxml/xmlschemas.h", + "include/libxml2/libxml/xmlschemastypes.h", + "include/libxml2/libxml/xmlstring.h", + "include/libxml2/libxml/xmlunicode.h", + "include/libxml2/libxml/xmlversion.h", + "include/libxml2/libxml/xmlwriter.h", + "include/libxml2/libxml/xpath.h", + "include/libxml2/libxml/xpathInternals.h", + "include/libxml2/libxml/xpointer.h", + "lib/cmake/libxml2/libxml2-config.cmake", + "lib/libxml2.so", + "lib/libxml2.so.2", + "lib/libxml2.so.2.13.9", + "lib/pkgconfig/libxml-2.0.pc", + "share/aclocal/libxml.m4" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/xml2-config", + "prefix_placeholder": "/home/task_176176819578609/conda-bld/libxml2_1761768910671/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "10e3ae074769a93ff030044449db30816242adaecb023fbcbc13a706f39ac66b", + "size_in_bytes": 3369, + "sha256_in_prefix": "b3ee0231e810c13e3fe0869cf2a601ebe3bf2e1f1fbca95961061508913b8385" + }, + { + "_path": "bin/xmlcatalog", + "prefix_placeholder": "/home/task_176176819578609/conda-bld/libxml2_1761768910671/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "ffb85688cd1dc47548618fdb86eee412b9852cbcc323ae54972f46f25c3338d6", + "size_in_bytes": 27520, + "sha256_in_prefix": "29559a7a1d62493b916d3c475e166fdffcc072d7900b203fc5aeff92ac418524" + }, + { + "_path": "bin/xmllint", + "prefix_placeholder": "/home/task_176176819578609/conda-bld/libxml2_1761768910671/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "39a7f0dd8d2c64e1ef6d0b7a1a5b6c0afd40662a996a3313981c0c79b130d536", + "size_in_bytes": 84608, + "sha256_in_prefix": "14f62d7e67bbde45d7a65ef607d31e89af365b53d92e577cf8ae79cc128c14cf" + }, + { + "_path": "lib/cmake/libxml2/libxml2-config.cmake", + "prefix_placeholder": "/home/task_176176819578609/conda-bld/libxml2_1761768910671/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "c6ad0097d7d39b11c125cf0d2abbf93bdea88a7a817257d6ee11aa4b1d23eeaf", + "size_in_bytes": 6513, + "sha256_in_prefix": "3667752bd706f2db556e1e3a46a679745ac453ba45dd71075124809b9f6eaa1c" + }, + { + "_path": "lib/libxml2.so.2.13.9", + "prefix_placeholder": "/home/task_176176819578609/conda-bld/libxml2_1761768910671/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "c2111348a54a23d18db9f89485000fd6a63d8a1f78d348cbe065e095caba0c52", + "size_in_bytes": 1578016, + "sha256_in_prefix": "15a19e5cce8631f13e33aab86fd9dc3255e2e8b1091d7b26a71c407abf6cd281" + }, + { + "_path": "lib/pkgconfig/libxml-2.0.pc", + "prefix_placeholder": "/home/task_176176819578609/conda-bld/libxml2_1761768910671/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "610a2ef084c38879cbf6e166ea204e30c4122a1af652eefff814d2c6f45a3bb6", + "size_in_bytes": 1592, + "sha256_in_prefix": "2926e50ecb0aee806cabe9fedc880f9d899764464aac616c1a58e7c8af58cc45" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libxml2-2.13.9-h2c43086_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/libzlib-1.3.1-hb25bd0a_0.json b/miniconda3/conda-meta/libzlib-1.3.1-hb25bd0a_0.json new file mode 100644 index 0000000000000000000000000000000000000000..63aadf0fb13d9b913a778b8d1465d93d106c5eab --- /dev/null +++ b/miniconda3/conda-meta/libzlib-1.3.1-hb25bd0a_0.json @@ -0,0 +1,40 @@ +{ + "name": "libzlib", + "version": "1.3.1", + "build": "hb25bd0a_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "libzlib-1.3.1-hb25bd0a_0.conda", + "md5": "338ee51e19ee211b7fc994d4ba88c631", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libzlib-1.3.1-hb25bd0a_0.conda", + "sha256": "2e0a3ea3aba7ffaa9c2ce9b267b34b12859f93bde8e62cedcbbab6144776568f", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.17,<3.0.a0", + "libgcc-ng >=11.2.0" + ], + "constrains": [ + "zlib 1.3.1" + ], + "license": "Zlib", + "license_family": "OTHER", + "timestamp": 1756475934000, + "size": 60697, + "requested_spec": "pkgs/main/linux-64::libzlib==1.3.1=hb25bd0a_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libzlib-1.3.1-hb25bd0a_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libzlib-1.3.1-hb25bd0a_0", + "files": [ + "lib/libz.so.1", + "lib/libz.so.1.3.1" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/libzlib-1.3.1-hb25bd0a_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/lmdb-0.9.31-hb25bd0a_0.json b/miniconda3/conda-meta/lmdb-0.9.31-hb25bd0a_0.json new file mode 100644 index 0000000000000000000000000000000000000000..df9dc7452010ad89347cc893e68ced88426ff7b6 --- /dev/null +++ b/miniconda3/conda-meta/lmdb-0.9.31-hb25bd0a_0.json @@ -0,0 +1,47 @@ +{ + "name": "lmdb", + "version": "0.9.31", + "build": "hb25bd0a_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "lmdb-0.9.31-hb25bd0a_0.conda", + "md5": "1468bc20414b0fa8eb1b18d3a916039f", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/lmdb-0.9.31-hb25bd0a_0.conda", + "sha256": "839f0cd7e4a13088dcd9b8ac3213e8992725dd67f8e1a747c54132013b87d4b9", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.17,<3.0.a0", + "libgcc-ng >=11.2.0" + ], + "constrains": [], + "license": "BSD-3-Clause", + "license_family": "BSD", + "timestamp": 1754999718000, + "size": 480121, + "requested_spec": "pkgs/main/linux-64::lmdb==0.9.31=hb25bd0a_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/lmdb-0.9.31-hb25bd0a_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/lmdb-0.9.31-hb25bd0a_0", + "files": [ + "bin/mdb_copy", + "bin/mdb_dump", + "bin/mdb_load", + "bin/mdb_stat", + "include/lmdb.h", + "lib/liblmdb.a", + "lib/liblmdb.so", + "share/man/man1/mdb_copy.1", + "share/man/man1/mdb_dump.1", + "share/man/man1/mdb_load.1", + "share/man/man1/mdb_stat.1" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/lmdb-0.9.31-hb25bd0a_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/lz4-c-1.9.4-h6a678d5_1.json b/miniconda3/conda-meta/lz4-c-1.9.4-h6a678d5_1.json new file mode 100644 index 0000000000000000000000000000000000000000..b8aaee2a55f69b363d9c5946d419489b54de595c --- /dev/null +++ b/miniconda3/conda-meta/lz4-c-1.9.4-h6a678d5_1.json @@ -0,0 +1,62 @@ +{ + "name": "lz4-c", + "version": "1.9.4", + "build": "h6a678d5_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "lz4-c-1.9.4-h6a678d5_1.conda", + "md5": "2ee58861f2b92b868ce761abb831819d", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/lz4-c-1.9.4-h6a678d5_1.conda", + "sha256": "cc19d62a7f2c0af8e1f0e5bf643cf34475a35d5dc82733d679e575daa7b863aa", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "libgcc-ng >=11.2.0", + "libstdcxx-ng >=11.2.0" + ], + "constrains": [], + "license": "BSD-2-Clause", + "license_family": "BSD", + "timestamp": 1714510587000, + "size": 159495, + "requested_spec": "pkgs/main/linux-64::lz4-c==1.9.4=h6a678d5_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/lz4-c-1.9.4-h6a678d5_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/lz4-c-1.9.4-h6a678d5_1", + "files": [ + "bin/lz4", + "bin/lz4c", + "bin/lz4cat", + "bin/unlz4", + "include/lz4.h", + "include/lz4frame.h", + "include/lz4frame_static.h", + "include/lz4hc.h", + "lib/liblz4.so", + "lib/liblz4.so.1", + "lib/liblz4.so.1.9.4", + "lib/pkgconfig/liblz4.pc", + "share/man/man1/lz4.1", + "share/man/man1/lz4c.1", + "share/man/man1/lz4cat.1", + "share/man/man1/unlz4.1" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/pkgconfig/liblz4.pc", + "prefix_placeholder": "/croot/lz4-c_1714510556686/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "d38cd99a75a077ab3a655f28db056093a0f195eb46beef1ea3f81484583e60cd", + "size_in_bytes": 640, + "sha256_in_prefix": "46f58a161f398167601a721c4564b7421453f30cc2463b657ecca7557b93db28" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/lz4-c-1.9.4-h6a678d5_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/markdown-it-py-4.0.0-py313h06a4308_1.json b/miniconda3/conda-meta/markdown-it-py-4.0.0-py313h06a4308_1.json new file mode 100644 index 0000000000000000000000000000000000000000..616147d75f3a9698ee1469ea7f0f34ec5767bb5c --- /dev/null +++ b/miniconda3/conda-meta/markdown-it-py-4.0.0-py313h06a4308_1.json @@ -0,0 +1,200 @@ +{ + "name": "markdown-it-py", + "version": "4.0.0", + "build": "py313h06a4308_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "markdown-it-py-4.0.0-py313h06a4308_1.conda", + "md5": "f515d22e3c87bcf86d4cd5c877bc34cd", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/markdown-it-py-4.0.0-py313h06a4308_1.conda", + "sha256": "bfed5539652f10a2c344501a4d9928856b50d323fdd390c578fd08e856b7d648", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "mdurl >=0.1,<0.2", + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [ + "mdit-py-plugins >=0.5.0", + "sphinx-book-theme >=1,<2", + "commonmark >=0.9,<0.10", + "panflute >=2.3,<2.4", + "markdown >=3.4,<3.9", + "mistletoe >=1.0,<2.0", + "mistune >=3.0,<4.0", + "linkify-it-py >=1,<3" + ], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1767001668000, + "size": 242668, + "requested_spec": "pkgs/main/linux-64::markdown-it-py==4.0.0=py313h06a4308_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/markdown-it-py-4.0.0-py313h06a4308_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/markdown-it-py-4.0.0-py313h06a4308_1", + "files": [ + "bin/markdown-it", + "lib/python3.13/site-packages/markdown_it/__init__.py", + "lib/python3.13/site-packages/markdown_it/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/__pycache__/_compat.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/__pycache__/_punycode.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/__pycache__/main.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/__pycache__/parser_block.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/__pycache__/parser_core.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/__pycache__/parser_inline.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/__pycache__/renderer.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/__pycache__/ruler.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/__pycache__/token.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/__pycache__/tree.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/_compat.py", + "lib/python3.13/site-packages/markdown_it/_punycode.py", + "lib/python3.13/site-packages/markdown_it/cli/__init__.py", + "lib/python3.13/site-packages/markdown_it/cli/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/cli/__pycache__/parse.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/cli/parse.py", + "lib/python3.13/site-packages/markdown_it/common/__init__.py", + "lib/python3.13/site-packages/markdown_it/common/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/common/__pycache__/entities.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/common/__pycache__/html_blocks.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/common/__pycache__/html_re.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/common/__pycache__/normalize_url.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/common/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/common/entities.py", + "lib/python3.13/site-packages/markdown_it/common/html_blocks.py", + "lib/python3.13/site-packages/markdown_it/common/html_re.py", + "lib/python3.13/site-packages/markdown_it/common/normalize_url.py", + "lib/python3.13/site-packages/markdown_it/common/utils.py", + "lib/python3.13/site-packages/markdown_it/helpers/__init__.py", + "lib/python3.13/site-packages/markdown_it/helpers/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/helpers/__pycache__/parse_link_destination.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/helpers/__pycache__/parse_link_label.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/helpers/__pycache__/parse_link_title.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/helpers/parse_link_destination.py", + "lib/python3.13/site-packages/markdown_it/helpers/parse_link_label.py", + "lib/python3.13/site-packages/markdown_it/helpers/parse_link_title.py", + "lib/python3.13/site-packages/markdown_it/main.py", + "lib/python3.13/site-packages/markdown_it/parser_block.py", + "lib/python3.13/site-packages/markdown_it/parser_core.py", + "lib/python3.13/site-packages/markdown_it/parser_inline.py", + "lib/python3.13/site-packages/markdown_it/port.yaml", + "lib/python3.13/site-packages/markdown_it/presets/__init__.py", + "lib/python3.13/site-packages/markdown_it/presets/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/presets/__pycache__/commonmark.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/presets/__pycache__/default.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/presets/__pycache__/zero.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/presets/commonmark.py", + "lib/python3.13/site-packages/markdown_it/presets/default.py", + "lib/python3.13/site-packages/markdown_it/presets/zero.py", + "lib/python3.13/site-packages/markdown_it/py.typed", + "lib/python3.13/site-packages/markdown_it/renderer.py", + "lib/python3.13/site-packages/markdown_it/ruler.py", + "lib/python3.13/site-packages/markdown_it/rules_block/__init__.py", + "lib/python3.13/site-packages/markdown_it/rules_block/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_block/__pycache__/blockquote.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_block/__pycache__/code.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_block/__pycache__/fence.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_block/__pycache__/heading.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_block/__pycache__/hr.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_block/__pycache__/html_block.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_block/__pycache__/lheading.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_block/__pycache__/list.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_block/__pycache__/paragraph.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_block/__pycache__/reference.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_block/__pycache__/state_block.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_block/__pycache__/table.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_block/blockquote.py", + "lib/python3.13/site-packages/markdown_it/rules_block/code.py", + "lib/python3.13/site-packages/markdown_it/rules_block/fence.py", + "lib/python3.13/site-packages/markdown_it/rules_block/heading.py", + "lib/python3.13/site-packages/markdown_it/rules_block/hr.py", + "lib/python3.13/site-packages/markdown_it/rules_block/html_block.py", + "lib/python3.13/site-packages/markdown_it/rules_block/lheading.py", + "lib/python3.13/site-packages/markdown_it/rules_block/list.py", + "lib/python3.13/site-packages/markdown_it/rules_block/paragraph.py", + "lib/python3.13/site-packages/markdown_it/rules_block/reference.py", + "lib/python3.13/site-packages/markdown_it/rules_block/state_block.py", + "lib/python3.13/site-packages/markdown_it/rules_block/table.py", + "lib/python3.13/site-packages/markdown_it/rules_core/__init__.py", + "lib/python3.13/site-packages/markdown_it/rules_core/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_core/__pycache__/block.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_core/__pycache__/inline.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_core/__pycache__/linkify.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_core/__pycache__/normalize.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_core/__pycache__/replacements.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_core/__pycache__/smartquotes.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_core/__pycache__/state_core.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_core/__pycache__/text_join.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_core/block.py", + "lib/python3.13/site-packages/markdown_it/rules_core/inline.py", + "lib/python3.13/site-packages/markdown_it/rules_core/linkify.py", + "lib/python3.13/site-packages/markdown_it/rules_core/normalize.py", + "lib/python3.13/site-packages/markdown_it/rules_core/replacements.py", + "lib/python3.13/site-packages/markdown_it/rules_core/smartquotes.py", + "lib/python3.13/site-packages/markdown_it/rules_core/state_core.py", + "lib/python3.13/site-packages/markdown_it/rules_core/text_join.py", + "lib/python3.13/site-packages/markdown_it/rules_inline/__init__.py", + "lib/python3.13/site-packages/markdown_it/rules_inline/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_inline/__pycache__/autolink.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_inline/__pycache__/backticks.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_inline/__pycache__/balance_pairs.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_inline/__pycache__/emphasis.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_inline/__pycache__/entity.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_inline/__pycache__/escape.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_inline/__pycache__/fragments_join.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_inline/__pycache__/html_inline.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_inline/__pycache__/image.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_inline/__pycache__/link.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_inline/__pycache__/linkify.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_inline/__pycache__/newline.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_inline/__pycache__/state_inline.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_inline/__pycache__/strikethrough.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_inline/__pycache__/text.cpython-313.pyc", + "lib/python3.13/site-packages/markdown_it/rules_inline/autolink.py", + "lib/python3.13/site-packages/markdown_it/rules_inline/backticks.py", + "lib/python3.13/site-packages/markdown_it/rules_inline/balance_pairs.py", + "lib/python3.13/site-packages/markdown_it/rules_inline/emphasis.py", + "lib/python3.13/site-packages/markdown_it/rules_inline/entity.py", + "lib/python3.13/site-packages/markdown_it/rules_inline/escape.py", + "lib/python3.13/site-packages/markdown_it/rules_inline/fragments_join.py", + "lib/python3.13/site-packages/markdown_it/rules_inline/html_inline.py", + "lib/python3.13/site-packages/markdown_it/rules_inline/image.py", + "lib/python3.13/site-packages/markdown_it/rules_inline/link.py", + "lib/python3.13/site-packages/markdown_it/rules_inline/linkify.py", + "lib/python3.13/site-packages/markdown_it/rules_inline/newline.py", + "lib/python3.13/site-packages/markdown_it/rules_inline/state_inline.py", + "lib/python3.13/site-packages/markdown_it/rules_inline/strikethrough.py", + "lib/python3.13/site-packages/markdown_it/rules_inline/text.py", + "lib/python3.13/site-packages/markdown_it/token.py", + "lib/python3.13/site-packages/markdown_it/tree.py", + "lib/python3.13/site-packages/markdown_it/utils.py", + "lib/python3.13/site-packages/markdown_it_py-4.0.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/markdown_it_py-4.0.0.dist-info/METADATA", + "lib/python3.13/site-packages/markdown_it_py-4.0.0.dist-info/RECORD", + "lib/python3.13/site-packages/markdown_it_py-4.0.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/markdown_it_py-4.0.0.dist-info/WHEEL", + "lib/python3.13/site-packages/markdown_it_py-4.0.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/markdown_it_py-4.0.0.dist-info/entry_points.txt", + "lib/python3.13/site-packages/markdown_it_py-4.0.0.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/markdown_it_py-4.0.0.dist-info/licenses/LICENSE.markdown-it" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/markdown-it", + "prefix_placeholder": "/home/task_176700162971740/croot/markdown-it-py_1767001650253/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeh", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "a0ddbaee228b7b7f8f32869bf6600c0dda4c56e29394b82f9c466a99a9803b7e", + "size_in_bytes": 474, + "sha256_in_prefix": "37adf31a7670be408d4c9211c6f2b095ff3a55ae61fb63d193aff5b2b1b579e9" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/markdown-it-py-4.0.0-py313h06a4308_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/mdurl-0.1.2-py313h06a4308_0.json b/miniconda3/conda-meta/mdurl-0.1.2-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..0998e6419a868a4c8c492cf0a934b4cbf2b8fc83 --- /dev/null +++ b/miniconda3/conda-meta/mdurl-0.1.2-py313h06a4308_0.json @@ -0,0 +1,56 @@ +{ + "name": "mdurl", + "version": "0.1.2", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "mdurl-0.1.2-py313h06a4308_0.conda", + "md5": "39da6986b50a3eb3cbf60c9883f4b92e", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/mdurl-0.1.2-py313h06a4308_0.conda", + "sha256": "b4af3847be42fd97001227f10b8e6347aefb45199bcf5f358e870f4c43cbdd9a", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1758552191000, + "size": 26871, + "requested_spec": "pkgs/main/linux-64::mdurl==0.1.2=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/mdurl-0.1.2-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/mdurl-0.1.2-py313h06a4308_0", + "files": [ + "lib/python3.13/site-packages/mdurl-0.1.2.dist-info/INSTALLER", + "lib/python3.13/site-packages/mdurl-0.1.2.dist-info/METADATA", + "lib/python3.13/site-packages/mdurl-0.1.2.dist-info/RECORD", + "lib/python3.13/site-packages/mdurl-0.1.2.dist-info/REQUESTED", + "lib/python3.13/site-packages/mdurl-0.1.2.dist-info/WHEEL", + "lib/python3.13/site-packages/mdurl-0.1.2.dist-info/direct_url.json", + "lib/python3.13/site-packages/mdurl-0.1.2.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/mdurl/__init__.py", + "lib/python3.13/site-packages/mdurl/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/mdurl/__pycache__/_decode.cpython-313.pyc", + "lib/python3.13/site-packages/mdurl/__pycache__/_encode.cpython-313.pyc", + "lib/python3.13/site-packages/mdurl/__pycache__/_format.cpython-313.pyc", + "lib/python3.13/site-packages/mdurl/__pycache__/_parse.cpython-313.pyc", + "lib/python3.13/site-packages/mdurl/__pycache__/_url.cpython-313.pyc", + "lib/python3.13/site-packages/mdurl/_decode.py", + "lib/python3.13/site-packages/mdurl/_encode.py", + "lib/python3.13/site-packages/mdurl/_format.py", + "lib/python3.13/site-packages/mdurl/_parse.py", + "lib/python3.13/site-packages/mdurl/_url.py", + "lib/python3.13/site-packages/mdurl/py.typed" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/mdurl-0.1.2-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/menuinst-2.4.2-py313h06a4308_1.json b/miniconda3/conda-meta/menuinst-2.4.2-py313h06a4308_1.json new file mode 100644 index 0000000000000000000000000000000000000000..02040007046e0095d6520ad7e73b66e1f64dbfdd --- /dev/null +++ b/miniconda3/conda-meta/menuinst-2.4.2-py313h06a4308_1.json @@ -0,0 +1,137 @@ +{ + "name": "menuinst", + "version": "2.4.2", + "build": "py313h06a4308_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "menuinst-2.4.2-py313h06a4308_1.conda", + "md5": "3c19869ee69743cd3e6ed44610f7b845", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/menuinst-2.4.2-py313h06a4308_1.conda", + "sha256": "4a7cbe8e343d05ea964f6b390b4e8e876423080ddc8efee42da96255a8e45dc8", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "BSD-3-Clause AND MIT", + "license_family": "BSD", + "timestamp": 1765382387000, + "size": 257750, + "requested_spec": "pkgs/main/linux-64::menuinst==2.4.2=py313h06a4308_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/menuinst-2.4.2-py313h06a4308_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/menuinst-2.4.2-py313h06a4308_1", + "files": [ + "bin/menuinst", + "lib/python3.13/site-packages/menuinst-2.4.2.dist-info/INSTALLER", + "lib/python3.13/site-packages/menuinst-2.4.2.dist-info/METADATA", + "lib/python3.13/site-packages/menuinst-2.4.2.dist-info/RECORD", + "lib/python3.13/site-packages/menuinst-2.4.2.dist-info/REQUESTED", + "lib/python3.13/site-packages/menuinst-2.4.2.dist-info/WHEEL", + "lib/python3.13/site-packages/menuinst-2.4.2.dist-info/direct_url.json", + "lib/python3.13/site-packages/menuinst-2.4.2.dist-info/entry_points.txt", + "lib/python3.13/site-packages/menuinst-2.4.2.dist-info/licenses/AUTHORS.md", + "lib/python3.13/site-packages/menuinst-2.4.2.dist-info/licenses/LICENSE.txt", + "lib/python3.13/site-packages/menuinst-2.4.2.dist-info/top_level.txt", + "lib/python3.13/site-packages/menuinst/__init__.py", + "lib/python3.13/site-packages/menuinst/__main__.py", + "lib/python3.13/site-packages/menuinst/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/__pycache__/_schema.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/__pycache__/_version.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/__pycache__/api.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/__pycache__/conda_plugin.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/_legacy/__init__.py", + "lib/python3.13/site-packages/menuinst/_legacy/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/_legacy/__pycache__/cwp.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/_legacy/__pycache__/main.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/_legacy/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/_legacy/__pycache__/win32.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/_legacy/cwp.py", + "lib/python3.13/site-packages/menuinst/_legacy/main.py", + "lib/python3.13/site-packages/menuinst/_legacy/utils.py", + "lib/python3.13/site-packages/menuinst/_legacy/win32.py", + "lib/python3.13/site-packages/menuinst/_schema.py", + "lib/python3.13/site-packages/menuinst/_vendor/apipkg/LICENSE", + "lib/python3.13/site-packages/menuinst/_vendor/apipkg/__init__.py", + "lib/python3.13/site-packages/menuinst/_vendor/apipkg/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/_vendor/apipkg/__pycache__/_alias_module.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/_vendor/apipkg/__pycache__/_importing.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/_vendor/apipkg/__pycache__/_module.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/_vendor/apipkg/__pycache__/_syncronized.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/_vendor/apipkg/__pycache__/_version.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/_vendor/apipkg/_alias_module.py", + "lib/python3.13/site-packages/menuinst/_vendor/apipkg/_importing.py", + "lib/python3.13/site-packages/menuinst/_vendor/apipkg/_module.py", + "lib/python3.13/site-packages/menuinst/_vendor/apipkg/_syncronized.py", + "lib/python3.13/site-packages/menuinst/_vendor/apipkg/_version.py", + "lib/python3.13/site-packages/menuinst/_vendor/apipkg/py.typed", + "lib/python3.13/site-packages/menuinst/_version.py", + "lib/python3.13/site-packages/menuinst/api.py", + "lib/python3.13/site-packages/menuinst/cli/__init__.py", + "lib/python3.13/site-packages/menuinst/cli/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/cli/__pycache__/cli.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/cli/cli.py", + "lib/python3.13/site-packages/menuinst/conda_plugin.py", + "lib/python3.13/site-packages/menuinst/data/appkit_launcher_arm64", + "lib/python3.13/site-packages/menuinst/data/appkit_launcher_x86_64", + "lib/python3.13/site-packages/menuinst/data/menuinst-1-0-0.default.json", + "lib/python3.13/site-packages/menuinst/data/menuinst-1-0-0.schema.json", + "lib/python3.13/site-packages/menuinst/data/menuinst-1-0-1.default.json", + "lib/python3.13/site-packages/menuinst/data/menuinst-1-0-1.schema.json", + "lib/python3.13/site-packages/menuinst/data/menuinst-1-0-2.default.json", + "lib/python3.13/site-packages/menuinst/data/menuinst-1-0-2.schema.json", + "lib/python3.13/site-packages/menuinst/data/menuinst-1-1-0.default.json", + "lib/python3.13/site-packages/menuinst/data/menuinst-1-1-0.schema.json", + "lib/python3.13/site-packages/menuinst/data/menuinst-1-1-1.default.json", + "lib/python3.13/site-packages/menuinst/data/menuinst-1-1-1.schema.json", + "lib/python3.13/site-packages/menuinst/data/menuinst-1-1-2.default.json", + "lib/python3.13/site-packages/menuinst/data/menuinst-1-1-2.schema.json", + "lib/python3.13/site-packages/menuinst/data/menuinst-1-1-3.default.json", + "lib/python3.13/site-packages/menuinst/data/menuinst-1-1-3.schema.json", + "lib/python3.13/site-packages/menuinst/data/menuinst.default.json", + "lib/python3.13/site-packages/menuinst/data/menuinst.schema.json", + "lib/python3.13/site-packages/menuinst/data/osx_launcher_arm64", + "lib/python3.13/site-packages/menuinst/data/osx_launcher_x86_64", + "lib/python3.13/site-packages/menuinst/platforms/__init__.py", + "lib/python3.13/site-packages/menuinst/platforms/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/platforms/__pycache__/base.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/platforms/__pycache__/linux.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/platforms/__pycache__/osx.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/platforms/__pycache__/win.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/platforms/base.py", + "lib/python3.13/site-packages/menuinst/platforms/linux.py", + "lib/python3.13/site-packages/menuinst/platforms/osx.py", + "lib/python3.13/site-packages/menuinst/platforms/win.py", + "lib/python3.13/site-packages/menuinst/platforms/win_utils/__init__.py", + "lib/python3.13/site-packages/menuinst/platforms/win_utils/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/platforms/win_utils/__pycache__/knownfolders.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/platforms/win_utils/__pycache__/registry.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/platforms/win_utils/__pycache__/win_elevate.cpython-313.pyc", + "lib/python3.13/site-packages/menuinst/platforms/win_utils/knownfolders.py", + "lib/python3.13/site-packages/menuinst/platforms/win_utils/registry.py", + "lib/python3.13/site-packages/menuinst/platforms/win_utils/win_elevate.py", + "lib/python3.13/site-packages/menuinst/utils.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/menuinst", + "prefix_placeholder": "/home/task_176538230483207/conda-bld/menuinst_1765382366331/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "02eb42662e1dbde724daa165101ec9d7b1a2cf0183032de0bb3f95ead8e7c06f", + "size_in_bytes": 465, + "sha256_in_prefix": "c02b78315337471f975d8962a2b536c82a8b4256fdef7cfd2d0390d5606bae63" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/menuinst-2.4.2-py313h06a4308_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/more-itertools-10.8.0-py313h06a4308_0.json b/miniconda3/conda-meta/more-itertools-10.8.0-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..32f11b5d75ec0babbb1576846790b3046df15fb3 --- /dev/null +++ b/miniconda3/conda-meta/more-itertools-10.8.0-py313h06a4308_0.json @@ -0,0 +1,53 @@ +{ + "name": "more-itertools", + "version": "10.8.0", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "more-itertools-10.8.0-py313h06a4308_0.conda", + "md5": "bd0dee4808dd6acb561fce514a345c3d", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/more-itertools-10.8.0-py313h06a4308_0.conda", + "sha256": "a6da3706af1a527f98e4db5e9e492836d9315825ee99336230865493ae4ee0a6", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1761121509000, + "size": 167359, + "requested_spec": "pkgs/main/linux-64::more-itertools==10.8.0=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/more-itertools-10.8.0-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/more-itertools-10.8.0-py313h06a4308_0", + "files": [ + "lib/python3.13/site-packages/more_itertools-10.8.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/more_itertools-10.8.0.dist-info/METADATA", + "lib/python3.13/site-packages/more_itertools-10.8.0.dist-info/RECORD", + "lib/python3.13/site-packages/more_itertools-10.8.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/more_itertools-10.8.0.dist-info/WHEEL", + "lib/python3.13/site-packages/more_itertools-10.8.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/more_itertools-10.8.0.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/more_itertools/__init__.py", + "lib/python3.13/site-packages/more_itertools/__init__.pyi", + "lib/python3.13/site-packages/more_itertools/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/more_itertools/__pycache__/more.cpython-313.pyc", + "lib/python3.13/site-packages/more_itertools/__pycache__/recipes.cpython-313.pyc", + "lib/python3.13/site-packages/more_itertools/more.py", + "lib/python3.13/site-packages/more_itertools/more.pyi", + "lib/python3.13/site-packages/more_itertools/py.typed", + "lib/python3.13/site-packages/more_itertools/recipes.py", + "lib/python3.13/site-packages/more_itertools/recipes.pyi" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/more-itertools-10.8.0-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/msgpack-python-1.1.1-py313h6a678d5_0.json b/miniconda3/conda-meta/msgpack-python-1.1.1-py313h6a678d5_0.json new file mode 100644 index 0000000000000000000000000000000000000000..590afe88af7b294e95fe4417d45ccec227f66375 --- /dev/null +++ b/miniconda3/conda-meta/msgpack-python-1.1.1-py313h6a678d5_0.json @@ -0,0 +1,55 @@ +{ + "name": "msgpack-python", + "version": "1.1.1", + "build": "py313h6a678d5_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "msgpack-python-1.1.1-py313h6a678d5_0.conda", + "md5": "b1fb5c763a2d3e15e633e84bccf52ce4", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/msgpack-python-1.1.1-py313h6a678d5_0.conda", + "sha256": "c9077c988bbab8f4315f9f98657f62d8d0dc87505756d78db808bccb88b32dd5", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "libgcc-ng >=11.2.0", + "libstdcxx-ng >=11.2.0", + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "Apache-2.0", + "license_family": "Apache", + "timestamp": 1750958840000, + "size": 123032, + "requested_spec": "pkgs/main/linux-64::msgpack-python==1.1.1=py313h6a678d5_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/msgpack-python-1.1.1-py313h6a678d5_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/msgpack-python-1.1.1-py313h6a678d5_0", + "files": [ + "lib/python3.13/site-packages/msgpack-1.1.1.dist-info/INSTALLER", + "lib/python3.13/site-packages/msgpack-1.1.1.dist-info/METADATA", + "lib/python3.13/site-packages/msgpack-1.1.1.dist-info/RECORD", + "lib/python3.13/site-packages/msgpack-1.1.1.dist-info/REQUESTED", + "lib/python3.13/site-packages/msgpack-1.1.1.dist-info/WHEEL", + "lib/python3.13/site-packages/msgpack-1.1.1.dist-info/direct_url.json", + "lib/python3.13/site-packages/msgpack-1.1.1.dist-info/licenses/COPYING", + "lib/python3.13/site-packages/msgpack-1.1.1.dist-info/top_level.txt", + "lib/python3.13/site-packages/msgpack/__init__.py", + "lib/python3.13/site-packages/msgpack/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/msgpack/__pycache__/exceptions.cpython-313.pyc", + "lib/python3.13/site-packages/msgpack/__pycache__/ext.cpython-313.pyc", + "lib/python3.13/site-packages/msgpack/__pycache__/fallback.cpython-313.pyc", + "lib/python3.13/site-packages/msgpack/_cmsgpack.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/site-packages/msgpack/exceptions.py", + "lib/python3.13/site-packages/msgpack/ext.py", + "lib/python3.13/site-packages/msgpack/fallback.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/msgpack-python-1.1.1-py313h6a678d5_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/ncurses-6.5-h7934f7d_0.json b/miniconda3/conda-meta/ncurses-6.5-h7934f7d_0.json new file mode 100644 index 0000000000000000000000000000000000000000..37a66745cb9217446e4bc6bb48051d39b9a26cb4 --- /dev/null +++ b/miniconda3/conda-meta/ncurses-6.5-h7934f7d_0.json @@ -0,0 +1,4457 @@ +{ + "name": "ncurses", + "version": "6.5", + "build": "h7934f7d_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "ncurses-6.5-h7934f7d_0.conda", + "md5": "0abfc090299da4bb031b84c64309757b", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.5-h7934f7d_0.conda", + "sha256": "5ab33c1e90efbb3507116ae00d1f6740ec74104bb7028dc017f5f76796cee154", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.17,<3.0.a0", + "libgcc-ng >=11.2.0" + ], + "constrains": [], + "license": "MIT AND X11", + "license_family": "MIT", + "timestamp": 1753947487000, + "size": 1137647, + "requested_spec": "pkgs/main/linux-64::ncurses==6.5=h7934f7d_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/ncurses-6.5-h7934f7d_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/ncurses-6.5-h7934f7d_0", + "files": [ + "bin/captoinfo", + "bin/clear", + "bin/infocmp", + "bin/infotocap", + "bin/ncursesw6-config", + "bin/reset", + "bin/tabs", + "bin/tic", + "bin/toe", + "bin/tput", + "bin/tset", + "include/curses.h", + "include/cursesapp.h", + "include/cursesf.h", + "include/cursesm.h", + "include/cursesp.h", + "include/cursesw.h", + "include/cursslk.h", + "include/eti.h", + "include/etip.h", + "include/form.h", + "include/menu.h", + "include/ncurses.h", + "include/ncurses/curses.h", + "include/ncurses/cursesapp.h", + "include/ncurses/cursesf.h", + "include/ncurses/cursesm.h", + "include/ncurses/cursesp.h", + "include/ncurses/cursesw.h", + "include/ncurses/cursslk.h", + "include/ncurses/eti.h", + "include/ncurses/etip.h", + "include/ncurses/form.h", + "include/ncurses/menu.h", + "include/ncurses/ncurses.h", + "include/ncurses/ncurses_dll.h", + "include/ncurses/panel.h", + "include/ncurses/term.h", + "include/ncurses/term_entry.h", + "include/ncurses/termcap.h", + "include/ncurses/unctrl.h", + "include/ncurses_dll.h", + "include/ncursesw/curses.h", + "include/ncursesw/cursesapp.h", + "include/ncursesw/cursesf.h", + "include/ncursesw/cursesm.h", + "include/ncursesw/cursesp.h", + "include/ncursesw/cursesw.h", + "include/ncursesw/cursslk.h", + "include/ncursesw/eti.h", + "include/ncursesw/etip.h", + "include/ncursesw/form.h", + "include/ncursesw/menu.h", + "include/ncursesw/ncurses.h", + "include/ncursesw/ncurses_dll.h", + "include/ncursesw/panel.h", + "include/ncursesw/term.h", + "include/ncursesw/term_entry.h", + "include/ncursesw/termcap.h", + "include/ncursesw/unctrl.h", + "include/panel.h", + "include/term.h", + "include/term_entry.h", + "include/termcap.h", + "include/unctrl.h", + "lib/libform.a", + "lib/libform.so", + "lib/libform.so.6", + "lib/libform.so.6.5", + "lib/libformw.a", + "lib/libformw.so", + "lib/libformw.so.6", + "lib/libformw.so.6.5", + "lib/libmenu.a", + "lib/libmenu.so", + "lib/libmenu.so.6", + "lib/libmenu.so.6.5", + "lib/libmenuw.a", + "lib/libmenuw.so", + "lib/libmenuw.so.6", + "lib/libmenuw.so.6.5", + "lib/libncurses++.a", + "lib/libncurses++w.a", + "lib/libncurses.a", + "lib/libncurses.so", + "lib/libncurses.so.6", + "lib/libncurses.so.6.5", + "lib/libncursesw.a", + "lib/libncursesw.so", + "lib/libncursesw.so.6", + "lib/libncursesw.so.6.5", + "lib/libpanel.a", + "lib/libpanel.so", + "lib/libpanel.so.6", + "lib/libpanel.so.6.5", + "lib/libpanelw.a", + "lib/libpanelw.so", + "lib/libpanelw.so.6", + "lib/libpanelw.so.6.5", + "lib/libtinfo.a", + "lib/libtinfo.so", + "lib/libtinfo.so.6", + "lib/libtinfo.so.6.5", + "lib/libtinfow.a", + "lib/libtinfow.so", + "lib/libtinfow.so.6", + "lib/libtinfow.so.6.5", + "lib/pkgconfig/formw.pc", + "lib/pkgconfig/menuw.pc", + "lib/pkgconfig/ncurses++w.pc", + "lib/pkgconfig/ncursesw.pc", + "lib/pkgconfig/panelw.pc", + "lib/pkgconfig/tinfow.pc", + "lib/terminfo", + "share/tabset/std", + "share/tabset/stdcrt", + "share/tabset/vt100", + "share/tabset/vt300", + "share/terminfo/1/1178", + "share/terminfo/1/1730-lm", + "share/terminfo/2/2621", + "share/terminfo/2/2621-wl", + "share/terminfo/2/2621A", + "share/terminfo/2/2621a", + "share/terminfo/3/386at", + "share/terminfo/3/3b1", + "share/terminfo/4/4025ex", + "share/terminfo/4/4027ex", + "share/terminfo/4/4410-w", + "share/terminfo/5/5051", + "share/terminfo/5/5410-w", + "share/terminfo/5/5620", + "share/terminfo/5/5630-24", + "share/terminfo/5/5630DMD-24", + "share/terminfo/6/6053", + "share/terminfo/6/6053-dg", + "share/terminfo/6/605x", + "share/terminfo/6/605x-dg", + "share/terminfo/6/630-lm", + "share/terminfo/6/630MTG-24", + "share/terminfo/7/730MTG-24", + "share/terminfo/7/730MTG-41", + "share/terminfo/7/730MTG-41r", + "share/terminfo/7/730MTGr", + "share/terminfo/7/730MTGr-24", + "share/terminfo/8/8510", + "share/terminfo/9/955-hb", + "share/terminfo/9/955-w", + "share/terminfo/9/9term", + "share/terminfo/A/Apple_Terminal", + "share/terminfo/E/Eterm", + "share/terminfo/E/Eterm-256color", + "share/terminfo/E/Eterm-88color", + "share/terminfo/E/Eterm-color", + "share/terminfo/L/LFT-PC850", + "share/terminfo/M/MtxOrb", + "share/terminfo/M/MtxOrb162", + "share/terminfo/M/MtxOrb204", + "share/terminfo/N/NCR260VT300WPP", + "share/terminfo/N/NCRVT100WPP", + "share/terminfo/P/P12", + "share/terminfo/P/P12-M", + "share/terminfo/P/P12-M-W", + "share/terminfo/P/P12-W", + "share/terminfo/P/P14", + "share/terminfo/P/P14-M", + "share/terminfo/P/P14-M-W", + "share/terminfo/P/P14-W", + "share/terminfo/P/P4", + "share/terminfo/P/P5", + "share/terminfo/P/P7", + "share/terminfo/P/P8", + "share/terminfo/P/P8-W", + "share/terminfo/P/P9", + "share/terminfo/P/P9-8", + "share/terminfo/P/P9-8-W", + "share/terminfo/P/P9-W", + "share/terminfo/Q/Q306-8-pc", + "share/terminfo/Q/Q310-vip-H", + "share/terminfo/Q/Q310-vip-H-am", + "share/terminfo/Q/Q310-vip-Hw", + "share/terminfo/Q/Q310-vip-w", + "share/terminfo/Q/Q310-vip-w-am", + "share/terminfo/X/X-hpterm", + "share/terminfo/X/X-hpterm-color2", + "share/terminfo/a/a210", + "share/terminfo/a/a80", + "share/terminfo/a/a980", + "share/terminfo/a/aa4080", + "share/terminfo/a/aaa", + "share/terminfo/a/aaa+dec", + "share/terminfo/a/aaa+rv", + "share/terminfo/a/aaa+unk", + "share/terminfo/a/aaa-18", + "share/terminfo/a/aaa-18-rv", + "share/terminfo/a/aaa-20", + "share/terminfo/a/aaa-22", + "share/terminfo/a/aaa-24", + "share/terminfo/a/aaa-24-rv", + "share/terminfo/a/aaa-26", + "share/terminfo/a/aaa-28", + "share/terminfo/a/aaa-30", + "share/terminfo/a/aaa-30-ctxt", + "share/terminfo/a/aaa-30-rv", + "share/terminfo/a/aaa-30-rv-ctxt", + "share/terminfo/a/aaa-30-s", + "share/terminfo/a/aaa-30-s-ctxt", + "share/terminfo/a/aaa-30-s-rv", + "share/terminfo/a/aaa-30-s-rv-ct", + "share/terminfo/a/aaa-36", + "share/terminfo/a/aaa-36-rv", + "share/terminfo/a/aaa-40", + "share/terminfo/a/aaa-40-rv", + "share/terminfo/a/aaa-48", + "share/terminfo/a/aaa-48-rv", + "share/terminfo/a/aaa-60", + "share/terminfo/a/aaa-60-dec-rv", + "share/terminfo/a/aaa-60-rv", + "share/terminfo/a/aaa-60-s", + "share/terminfo/a/aaa-60-s-rv", + "share/terminfo/a/aaa-ctxt", + "share/terminfo/a/aaa-db", + "share/terminfo/a/aaa-rv", + "share/terminfo/a/aaa-rv-ctxt", + "share/terminfo/a/aaa-rv-unk", + "share/terminfo/a/aaa-s", + "share/terminfo/a/aaa-s-ctxt", + "share/terminfo/a/aaa-s-rv", + "share/terminfo/a/aaa-s-rv-ctxt", + "share/terminfo/a/aaa-unk", + "share/terminfo/a/aas1901", + "share/terminfo/a/abm80", + "share/terminfo/a/abm85", + "share/terminfo/a/abm85e", + "share/terminfo/a/abm85h", + "share/terminfo/a/abm85h-old", + "share/terminfo/a/absolute", + "share/terminfo/a/act4", + "share/terminfo/a/act5", + "share/terminfo/a/addrinfo", + "share/terminfo/a/adds200", + "share/terminfo/a/adds980", + "share/terminfo/a/addsviewpoint", + "share/terminfo/a/addsvp60", + "share/terminfo/a/adm+sgr", + "share/terminfo/a/adm1", + "share/terminfo/a/adm11", + "share/terminfo/a/adm1178", + "share/terminfo/a/adm12", + "share/terminfo/a/adm1a", + "share/terminfo/a/adm2", + "share/terminfo/a/adm20", + "share/terminfo/a/adm21", + "share/terminfo/a/adm22", + "share/terminfo/a/adm3", + "share/terminfo/a/adm31", + "share/terminfo/a/adm31-old", + "share/terminfo/a/adm36", + "share/terminfo/a/adm3a", + "share/terminfo/a/adm3a+", + "share/terminfo/a/adm42", + "share/terminfo/a/adm42-ns", + "share/terminfo/a/adm5", + "share/terminfo/a/aepro", + "share/terminfo/a/aixterm", + "share/terminfo/a/aixterm+sl", + "share/terminfo/a/aixterm-16color", + "share/terminfo/a/aixterm-m", + "share/terminfo/a/aixterm-m-old", + "share/terminfo/a/aj", + "share/terminfo/a/aj510", + "share/terminfo/a/aj830", + "share/terminfo/a/aj832", + "share/terminfo/a/alacritty", + "share/terminfo/a/alacritty+common", + "share/terminfo/a/alacritty-direct", + "share/terminfo/a/alt2", + "share/terminfo/a/alt3", + "share/terminfo/a/alt4", + "share/terminfo/a/alt5", + "share/terminfo/a/alt7", + "share/terminfo/a/alt7pc", + "share/terminfo/a/alto-h19", + "share/terminfo/a/alto-heath", + "share/terminfo/a/altoh19", + "share/terminfo/a/altoheath", + "share/terminfo/a/altos-2", + "share/terminfo/a/altos-3", + "share/terminfo/a/altos-4", + "share/terminfo/a/altos-5", + "share/terminfo/a/altos2", + "share/terminfo/a/altos3", + "share/terminfo/a/altos4", + "share/terminfo/a/altos5", + "share/terminfo/a/altos7", + "share/terminfo/a/altos7pc", + "share/terminfo/a/ambas", + "share/terminfo/a/ambassador", + "share/terminfo/a/amiga", + "share/terminfo/a/amiga-8bit", + "share/terminfo/a/amiga-h", + "share/terminfo/a/amiga-vnc", + "share/terminfo/a/amp219", + "share/terminfo/a/amp219w", + "share/terminfo/a/ampex-219", + "share/terminfo/a/ampex-219w", + "share/terminfo/a/ampex-232", + "share/terminfo/a/ampex175", + "share/terminfo/a/ampex175-b", + "share/terminfo/a/ampex210", + "share/terminfo/a/ampex219", + "share/terminfo/a/ampex219w", + "share/terminfo/a/ampex232", + "share/terminfo/a/ampex232w", + "share/terminfo/a/ampex80", + "share/terminfo/a/annarbor4080", + "share/terminfo/a/ansi", + "share/terminfo/a/ansi+apparrows", + "share/terminfo/a/ansi+arrows", + "share/terminfo/a/ansi+cpr", + "share/terminfo/a/ansi+csr", + "share/terminfo/a/ansi+cup", + "share/terminfo/a/ansi+enq", + "share/terminfo/a/ansi+erase", + "share/terminfo/a/ansi+idc", + "share/terminfo/a/ansi+idc1", + "share/terminfo/a/ansi+idl", + "share/terminfo/a/ansi+idl1", + "share/terminfo/a/ansi+inittabs", + "share/terminfo/a/ansi+local", + "share/terminfo/a/ansi+local1", + "share/terminfo/a/ansi+pp", + "share/terminfo/a/ansi+rca", + "share/terminfo/a/ansi+rca2", + "share/terminfo/a/ansi+rep", + "share/terminfo/a/ansi+sgr", + "share/terminfo/a/ansi+sgrbold", + "share/terminfo/a/ansi+sgrdim", + "share/terminfo/a/ansi+sgrso", + "share/terminfo/a/ansi+sgrul", + "share/terminfo/a/ansi+tabs", + "share/terminfo/a/ansi-color-2-emx", + "share/terminfo/a/ansi-color-3-emx", + "share/terminfo/a/ansi-emx", + "share/terminfo/a/ansi-generic", + "share/terminfo/a/ansi-m", + "share/terminfo/a/ansi-mini", + "share/terminfo/a/ansi-mono", + "share/terminfo/a/ansi-mr", + "share/terminfo/a/ansi-mtabs", + "share/terminfo/a/ansi-nt", + "share/terminfo/a/ansi.sys", + "share/terminfo/a/ansi.sys-old", + "share/terminfo/a/ansi.sysk", + "share/terminfo/a/ansi43m", + "share/terminfo/a/ansi77", + "share/terminfo/a/ansi80x25", + "share/terminfo/a/ansi80x25-mono", + "share/terminfo/a/ansi80x25-raw", + "share/terminfo/a/ansi80x30", + "share/terminfo/a/ansi80x30-mono", + "share/terminfo/a/ansi80x43", + "share/terminfo/a/ansi80x43-mono", + "share/terminfo/a/ansi80x50", + "share/terminfo/a/ansi80x50-mono", + "share/terminfo/a/ansi80x60", + "share/terminfo/a/ansi80x60-mono", + "share/terminfo/a/ansil", + "share/terminfo/a/ansil-mono", + "share/terminfo/a/ansis", + "share/terminfo/a/ansis-mono", + "share/terminfo/a/ansisysk", + "share/terminfo/a/ansiterm", + "share/terminfo/a/ansiw", + "share/terminfo/a/ap-vm80", + "share/terminfo/a/apl", + "share/terminfo/a/apollo", + "share/terminfo/a/apollo+vt132", + "share/terminfo/a/apollo_15P", + "share/terminfo/a/apollo_19L", + "share/terminfo/a/apollo_color", + "share/terminfo/a/apple-80", + "share/terminfo/a/apple-ae", + "share/terminfo/a/apple-soroc", + "share/terminfo/a/apple-uterm", + "share/terminfo/a/apple-uterm-vb", + "share/terminfo/a/apple-videx", + "share/terminfo/a/apple-videx2", + "share/terminfo/a/apple-videx3", + "share/terminfo/a/apple-vm80", + "share/terminfo/a/apple2e", + "share/terminfo/a/apple2e-p", + "share/terminfo/a/apple80p", + "share/terminfo/a/appleII", + "share/terminfo/a/appleIIc", + "share/terminfo/a/appleIIe", + "share/terminfo/a/appleIIgs", + "share/terminfo/a/arm100", + "share/terminfo/a/arm100-am", + "share/terminfo/a/arm100-w", + "share/terminfo/a/arm100-wam", + "share/terminfo/a/at", + "share/terminfo/a/at-color", + "share/terminfo/a/at-m", + "share/terminfo/a/at386", + "share/terminfo/a/atari", + "share/terminfo/a/atari-color", + "share/terminfo/a/atari-m", + "share/terminfo/a/atari-old", + "share/terminfo/a/atari_st", + "share/terminfo/a/atari_st-color", + "share/terminfo/a/atarist-m", + "share/terminfo/a/aterm", + "share/terminfo/a/att2300", + "share/terminfo/a/att2350", + "share/terminfo/a/att4410", + "share/terminfo/a/att4410-w", + "share/terminfo/a/att4410v1", + "share/terminfo/a/att4410v1-w", + "share/terminfo/a/att4415", + "share/terminfo/a/att4415+nl", + "share/terminfo/a/att4415-nl", + "share/terminfo/a/att4415-rv", + "share/terminfo/a/att4415-rv-nl", + "share/terminfo/a/att4415-w", + "share/terminfo/a/att4415-w-nl", + "share/terminfo/a/att4415-w-rv", + "share/terminfo/a/att4415-w-rv-n", + "share/terminfo/a/att4418", + "share/terminfo/a/att4418-w", + "share/terminfo/a/att4420", + "share/terminfo/a/att4424", + "share/terminfo/a/att4424-1", + "share/terminfo/a/att4424m", + "share/terminfo/a/att4425", + "share/terminfo/a/att4425-nl", + "share/terminfo/a/att4425-w", + "share/terminfo/a/att4426", + "share/terminfo/a/att500", + "share/terminfo/a/att505", + "share/terminfo/a/att505-22", + "share/terminfo/a/att505-24", + "share/terminfo/a/att510a", + "share/terminfo/a/att510d", + "share/terminfo/a/att513", + "share/terminfo/a/att5310", + "share/terminfo/a/att5320", + "share/terminfo/a/att5410", + "share/terminfo/a/att5410-w", + "share/terminfo/a/att5410v1", + "share/terminfo/a/att5410v1-w", + "share/terminfo/a/att5418", + "share/terminfo/a/att5418-w", + "share/terminfo/a/att5420", + "share/terminfo/a/att5420+nl", + "share/terminfo/a/att5420-nl", + "share/terminfo/a/att5420-rv", + "share/terminfo/a/att5420-rv-nl", + "share/terminfo/a/att5420-w", + "share/terminfo/a/att5420-w-nl", + "share/terminfo/a/att5420-w-rv", + "share/terminfo/a/att5420-w-rv-n", + "share/terminfo/a/att5420_2", + "share/terminfo/a/att5420_2-w", + "share/terminfo/a/att5425", + "share/terminfo/a/att5425-nl", + "share/terminfo/a/att5425-w", + "share/terminfo/a/att5430", + "share/terminfo/a/att5620", + "share/terminfo/a/att5620-1", + "share/terminfo/a/att5620-24", + "share/terminfo/a/att5620-34", + "share/terminfo/a/att5620-s", + "share/terminfo/a/att605", + "share/terminfo/a/att605-pc", + "share/terminfo/a/att605-w", + "share/terminfo/a/att610", + "share/terminfo/a/att610+cvis", + "share/terminfo/a/att610+cvis0", + "share/terminfo/a/att610-103k", + "share/terminfo/a/att610-103k-w", + "share/terminfo/a/att610-w", + "share/terminfo/a/att615", + "share/terminfo/a/att615-103k", + "share/terminfo/a/att615-103k-w", + "share/terminfo/a/att615-w", + "share/terminfo/a/att620", + "share/terminfo/a/att620-103k", + "share/terminfo/a/att620-103k-w", + "share/terminfo/a/att620-w", + "share/terminfo/a/att630", + "share/terminfo/a/att630-24", + "share/terminfo/a/att6386", + "share/terminfo/a/att700", + "share/terminfo/a/att730", + "share/terminfo/a/att730-24", + "share/terminfo/a/att730-41", + "share/terminfo/a/att7300", + "share/terminfo/a/att730r", + "share/terminfo/a/att730r-24", + "share/terminfo/a/att730r-41", + "share/terminfo/a/avatar", + "share/terminfo/a/avatar0", + "share/terminfo/a/avatar0+", + "share/terminfo/a/avatar1", + "share/terminfo/a/avt", + "share/terminfo/a/avt+s", + "share/terminfo/a/avt-ns", + "share/terminfo/a/avt-rv", + "share/terminfo/a/avt-rv-ns", + "share/terminfo/a/avt-rv-s", + "share/terminfo/a/avt-s", + "share/terminfo/a/avt-w", + "share/terminfo/a/avt-w-ns", + "share/terminfo/a/avt-w-rv", + "share/terminfo/a/avt-w-rv-ns", + "share/terminfo/a/avt-w-rv-s", + "share/terminfo/a/avt-w-s", + "share/terminfo/a/aws", + "share/terminfo/a/awsc", + "share/terminfo/b/b-128", + "share/terminfo/b/bantam", + "share/terminfo/b/basic4", + "share/terminfo/b/basis", + "share/terminfo/b/bct510a", + "share/terminfo/b/bct510d", + "share/terminfo/b/beacon", + "share/terminfo/b/bee", + "share/terminfo/b/beehive", + "share/terminfo/b/beehive3", + "share/terminfo/b/beehive4", + "share/terminfo/b/beehiveIIIm", + "share/terminfo/b/beterm", + "share/terminfo/b/bg1.25", + "share/terminfo/b/bg1.25nv", + "share/terminfo/b/bg1.25rv", + "share/terminfo/b/bg2.0", + "share/terminfo/b/bg2.0nv", + "share/terminfo/b/bg2.0rv", + "share/terminfo/b/bg3.10", + "share/terminfo/b/bg3.10nv", + "share/terminfo/b/bg3.10rv", + "share/terminfo/b/bh3m", + "share/terminfo/b/bh4", + "share/terminfo/b/bitgraph", + "share/terminfo/b/blit", + "share/terminfo/b/bobcat", + "share/terminfo/b/bq300", + "share/terminfo/b/bq300-8", + "share/terminfo/b/bq300-8-pc", + "share/terminfo/b/bq300-8-pc-rv", + "share/terminfo/b/bq300-8-pc-w", + "share/terminfo/b/bq300-8-pc-w-rv", + "share/terminfo/b/bq300-8rv", + "share/terminfo/b/bq300-8w", + "share/terminfo/b/bq300-pc", + "share/terminfo/b/bq300-pc-rv", + "share/terminfo/b/bq300-pc-w", + "share/terminfo/b/bq300-pc-w-rv", + "share/terminfo/b/bq300-rv", + "share/terminfo/b/bq300-w", + "share/terminfo/b/bq300-w-8rv", + "share/terminfo/b/bq300-w-rv", + "share/terminfo/b/bracketed+paste", + "share/terminfo/b/bsdos-pc", + "share/terminfo/b/bsdos-pc-m", + "share/terminfo/b/bsdos-pc-mono", + "share/terminfo/b/bsdos-pc-nobold", + "share/terminfo/b/bsdos-ppc", + "share/terminfo/b/bsdos-sparc", + "share/terminfo/b/bterm", + "share/terminfo/c/c100", + "share/terminfo/c/c100-1p", + "share/terminfo/c/c100-4p", + "share/terminfo/c/c100-rv", + "share/terminfo/c/c100-rv-4p", + "share/terminfo/c/c104", + "share/terminfo/c/c108", + "share/terminfo/c/c108-4p", + "share/terminfo/c/c108-8p", + "share/terminfo/c/c108-rv", + "share/terminfo/c/c108-rv-4p", + "share/terminfo/c/c108-rv-8p", + "share/terminfo/c/c108-w", + "share/terminfo/c/c108-w-8p", + "share/terminfo/c/c300", + "share/terminfo/c/c301", + "share/terminfo/c/c321", + "share/terminfo/c/ca22851", + "share/terminfo/c/cad68-2", + "share/terminfo/c/cad68-3", + "share/terminfo/c/cbblit", + "share/terminfo/c/cbunix", + "share/terminfo/c/cci", + "share/terminfo/c/cci1", + "share/terminfo/c/cdc456", + "share/terminfo/c/cdc721", + "share/terminfo/c/cdc721-esc", + "share/terminfo/c/cdc721ll", + "share/terminfo/c/cdc752", + "share/terminfo/c/cdc756", + "share/terminfo/c/cg7900", + "share/terminfo/c/cgc2", + "share/terminfo/c/cgc3", + "share/terminfo/c/chromatics", + "share/terminfo/c/ci8510", + "share/terminfo/c/cit-80", + "share/terminfo/c/cit101", + "share/terminfo/c/cit101e", + "share/terminfo/c/cit101e-132", + "share/terminfo/c/cit101e-n", + "share/terminfo/c/cit101e-n132", + "share/terminfo/c/cit101e-rv", + "share/terminfo/c/cit500", + "share/terminfo/c/cit80", + "share/terminfo/c/citc", + "share/terminfo/c/citoh", + "share/terminfo/c/citoh-6lpi", + "share/terminfo/c/citoh-8lpi", + "share/terminfo/c/citoh-comp", + "share/terminfo/c/citoh-elite", + "share/terminfo/c/citoh-pica", + "share/terminfo/c/citoh-prop", + "share/terminfo/c/citoh-ps", + "share/terminfo/c/coco3", + "share/terminfo/c/coherent", + "share/terminfo/c/color_xterm", + "share/terminfo/c/colorscan", + "share/terminfo/c/commodore", + "share/terminfo/c/concept", + "share/terminfo/c/concept-avt", + "share/terminfo/c/concept100", + "share/terminfo/c/concept100-rv", + "share/terminfo/c/concept108", + "share/terminfo/c/concept108-4p", + "share/terminfo/c/concept108-8p", + "share/terminfo/c/concept108-w-8", + "share/terminfo/c/concept108-w8p", + "share/terminfo/c/concept108rv4p", + "share/terminfo/c/cons25", + "share/terminfo/c/cons25-debian", + "share/terminfo/c/cons25-iso-m", + "share/terminfo/c/cons25-iso8859", + "share/terminfo/c/cons25-koi8-r", + "share/terminfo/c/cons25-koi8r-m", + "share/terminfo/c/cons25-m", + "share/terminfo/c/cons25l1", + "share/terminfo/c/cons25l1-m", + "share/terminfo/c/cons25r", + "share/terminfo/c/cons25r-m", + "share/terminfo/c/cons25w", + "share/terminfo/c/cons30", + "share/terminfo/c/cons30-m", + "share/terminfo/c/cons43", + "share/terminfo/c/cons43-m", + "share/terminfo/c/cons50", + "share/terminfo/c/cons50-iso-m", + "share/terminfo/c/cons50-iso8859", + "share/terminfo/c/cons50-koi8r", + "share/terminfo/c/cons50-koi8r-m", + "share/terminfo/c/cons50-m", + "share/terminfo/c/cons50l1", + "share/terminfo/c/cons50l1-m", + "share/terminfo/c/cons50r", + "share/terminfo/c/cons50r-m", + "share/terminfo/c/cons60", + "share/terminfo/c/cons60-iso", + "share/terminfo/c/cons60-iso-m", + "share/terminfo/c/cons60-koi8r", + "share/terminfo/c/cons60-koi8r-m", + "share/terminfo/c/cons60-m", + "share/terminfo/c/cons60l1", + "share/terminfo/c/cons60l1-m", + "share/terminfo/c/cons60r", + "share/terminfo/c/cons60r-m", + "share/terminfo/c/contel300", + "share/terminfo/c/contel301", + "share/terminfo/c/contel320", + "share/terminfo/c/contel321", + "share/terminfo/c/contour", + "share/terminfo/c/contour-direct", + "share/terminfo/c/contour-latest", + "share/terminfo/c/cops", + "share/terminfo/c/cops-10", + "share/terminfo/c/cops10", + "share/terminfo/c/crt", + "share/terminfo/c/crt-vt220", + "share/terminfo/c/cs10", + "share/terminfo/c/cs10-w", + "share/terminfo/c/ct82", + "share/terminfo/c/ct8500", + "share/terminfo/c/ctrm", + "share/terminfo/c/cx", + "share/terminfo/c/cx100", + "share/terminfo/c/cyb110", + "share/terminfo/c/cyb83", + "share/terminfo/c/cygwin", + "share/terminfo/c/cygwinB19", + "share/terminfo/c/cygwinDBG", + "share/terminfo/d/d132", + "share/terminfo/d/d2", + "share/terminfo/d/d2-dg", + "share/terminfo/d/d200", + "share/terminfo/d/d200-dg", + "share/terminfo/d/d210", + "share/terminfo/d/d210-dg", + "share/terminfo/d/d211", + "share/terminfo/d/d211-7b", + "share/terminfo/d/d211-dg", + "share/terminfo/d/d214", + "share/terminfo/d/d214-dg", + "share/terminfo/d/d215", + "share/terminfo/d/d215-7b", + "share/terminfo/d/d215-dg", + "share/terminfo/d/d216+", + "share/terminfo/d/d216+25", + "share/terminfo/d/d216+dg", + "share/terminfo/d/d216-dg", + "share/terminfo/d/d216-unix", + "share/terminfo/d/d216-unix-25", + "share/terminfo/d/d216e+", + "share/terminfo/d/d216e+dg", + "share/terminfo/d/d216e-dg", + "share/terminfo/d/d216e-unix", + "share/terminfo/d/d217-dg", + "share/terminfo/d/d217-unix", + "share/terminfo/d/d217-unix-25", + "share/terminfo/d/d220", + "share/terminfo/d/d220-7b", + "share/terminfo/d/d220-dg", + "share/terminfo/d/d230", + "share/terminfo/d/d230-dg", + "share/terminfo/d/d230c", + "share/terminfo/d/d230c-dg", + "share/terminfo/d/d400", + "share/terminfo/d/d400-dg", + "share/terminfo/d/d410", + "share/terminfo/d/d410-7b", + "share/terminfo/d/d410-7b-w", + "share/terminfo/d/d410-dg", + "share/terminfo/d/d410-w", + "share/terminfo/d/d411", + "share/terminfo/d/d411-7b", + "share/terminfo/d/d411-7b-w", + "share/terminfo/d/d411-dg", + "share/terminfo/d/d411-w", + "share/terminfo/d/d412+", + "share/terminfo/d/d412+25", + "share/terminfo/d/d412+dg", + "share/terminfo/d/d412+s", + "share/terminfo/d/d412+sr", + "share/terminfo/d/d412+w", + "share/terminfo/d/d412-dg", + "share/terminfo/d/d412-unix", + "share/terminfo/d/d412-unix-25", + "share/terminfo/d/d412-unix-s", + "share/terminfo/d/d412-unix-sr", + "share/terminfo/d/d412-unix-w", + "share/terminfo/d/d413-dg", + "share/terminfo/d/d413-unix", + "share/terminfo/d/d413-unix-25", + "share/terminfo/d/d413-unix-s", + "share/terminfo/d/d413-unix-sr", + "share/terminfo/d/d413-unix-w", + "share/terminfo/d/d414-unix", + "share/terminfo/d/d414-unix-25", + "share/terminfo/d/d414-unix-s", + "share/terminfo/d/d414-unix-sr", + "share/terminfo/d/d414-unix-w", + "share/terminfo/d/d430-dg", + "share/terminfo/d/d430-dg-ccc", + "share/terminfo/d/d430-unix", + "share/terminfo/d/d430-unix-25", + "share/terminfo/d/d430-unix-25-ccc", + "share/terminfo/d/d430-unix-ccc", + "share/terminfo/d/d430-unix-s", + "share/terminfo/d/d430-unix-s-ccc", + "share/terminfo/d/d430-unix-sr", + "share/terminfo/d/d430-unix-sr-ccc", + "share/terminfo/d/d430-unix-w", + "share/terminfo/d/d430-unix-w-ccc", + "share/terminfo/d/d430c-dg", + "share/terminfo/d/d430c-dg-ccc", + "share/terminfo/d/d430c-unix", + "share/terminfo/d/d430c-unix-25", + "share/terminfo/d/d430c-unix-25-ccc", + "share/terminfo/d/d430c-unix-ccc", + "share/terminfo/d/d430c-unix-s", + "share/terminfo/d/d430c-unix-s-ccc", + "share/terminfo/d/d430c-unix-sr", + "share/terminfo/d/d430c-unix-sr-ccc", + "share/terminfo/d/d430c-unix-w", + "share/terminfo/d/d430c-unix-w-ccc", + "share/terminfo/d/d450", + "share/terminfo/d/d450-dg", + "share/terminfo/d/d460", + "share/terminfo/d/d460-7b", + "share/terminfo/d/d460-7b-w", + "share/terminfo/d/d460-dg", + "share/terminfo/d/d460-w", + "share/terminfo/d/d461", + "share/terminfo/d/d461-7b", + "share/terminfo/d/d461-7b-w", + "share/terminfo/d/d461-dg", + "share/terminfo/d/d461-w", + "share/terminfo/d/d462+", + "share/terminfo/d/d462+25", + "share/terminfo/d/d462+dg", + "share/terminfo/d/d462+s", + "share/terminfo/d/d462+sr", + "share/terminfo/d/d462+w", + "share/terminfo/d/d462-dg", + "share/terminfo/d/d462-unix", + "share/terminfo/d/d462-unix-25", + "share/terminfo/d/d462-unix-s", + "share/terminfo/d/d462-unix-sr", + "share/terminfo/d/d462-unix-w", + "share/terminfo/d/d462e-dg", + "share/terminfo/d/d463-dg", + "share/terminfo/d/d463-unix", + "share/terminfo/d/d463-unix-25", + "share/terminfo/d/d463-unix-s", + "share/terminfo/d/d463-unix-sr", + "share/terminfo/d/d463-unix-w", + "share/terminfo/d/d464-unix", + "share/terminfo/d/d464-unix-25", + "share/terminfo/d/d464-unix-s", + "share/terminfo/d/d464-unix-sr", + "share/terminfo/d/d464-unix-w", + "share/terminfo/d/d470", + "share/terminfo/d/d470-7b", + "share/terminfo/d/d470-dg", + "share/terminfo/d/d470c", + "share/terminfo/d/d470c-7b", + "share/terminfo/d/d470c-dg", + "share/terminfo/d/d555", + "share/terminfo/d/d555-7b", + "share/terminfo/d/d555-7b-w", + "share/terminfo/d/d555-dg", + "share/terminfo/d/d555-w", + "share/terminfo/d/d577", + "share/terminfo/d/d577-7b", + "share/terminfo/d/d577-7b-w", + "share/terminfo/d/d577-dg", + "share/terminfo/d/d577-w", + "share/terminfo/d/d578", + "share/terminfo/d/d578-7b", + "share/terminfo/d/d578-dg", + "share/terminfo/d/d80", + "share/terminfo/d/d800", + "share/terminfo/d/darwin", + "share/terminfo/d/darwin-100x37", + "share/terminfo/d/darwin-100x37-m", + "share/terminfo/d/darwin-112x37", + "share/terminfo/d/darwin-112x37-m", + "share/terminfo/d/darwin-128x40", + "share/terminfo/d/darwin-128x40-m", + "share/terminfo/d/darwin-128x48", + "share/terminfo/d/darwin-128x48-m", + "share/terminfo/d/darwin-144x48", + "share/terminfo/d/darwin-144x48-m", + "share/terminfo/d/darwin-160x64", + "share/terminfo/d/darwin-160x64-m", + "share/terminfo/d/darwin-200x64", + "share/terminfo/d/darwin-200x64-m", + "share/terminfo/d/darwin-200x75", + "share/terminfo/d/darwin-200x75-m", + "share/terminfo/d/darwin-256x96", + "share/terminfo/d/darwin-256x96-m", + "share/terminfo/d/darwin-80x25", + "share/terminfo/d/darwin-80x25-m", + "share/terminfo/d/darwin-80x30", + "share/terminfo/d/darwin-80x30-m", + "share/terminfo/d/darwin-90x30", + "share/terminfo/d/darwin-90x30-m", + "share/terminfo/d/darwin-b", + "share/terminfo/d/darwin-f", + "share/terminfo/d/darwin-f2", + "share/terminfo/d/darwin-m", + "share/terminfo/d/darwin-m-b", + "share/terminfo/d/darwin-m-f", + "share/terminfo/d/darwin-m-f2", + "share/terminfo/d/datagraphix", + "share/terminfo/d/datamedia2500", + "share/terminfo/d/datapoint", + "share/terminfo/d/dataspeed40", + "share/terminfo/d/dd5000", + "share/terminfo/d/ddr", + "share/terminfo/d/ddr3180", + "share/terminfo/d/dec+pp", + "share/terminfo/d/dec+sl", + "share/terminfo/d/dec-vt100", + "share/terminfo/d/dec-vt220", + "share/terminfo/d/dec-vt330", + "share/terminfo/d/dec-vt340", + "share/terminfo/d/dec-vt400", + "share/terminfo/d/decansi", + "share/terminfo/d/decid+cpr", + "share/terminfo/d/decpro", + "share/terminfo/d/decwriter", + "share/terminfo/d/delta", + "share/terminfo/d/dg+ccc", + "share/terminfo/d/dg+color", + "share/terminfo/d/dg+color8", + "share/terminfo/d/dg+fixed", + "share/terminfo/d/dg-ansi", + "share/terminfo/d/dg-generic", + "share/terminfo/d/dg100", + "share/terminfo/d/dg200", + "share/terminfo/d/dg210", + "share/terminfo/d/dg211", + "share/terminfo/d/dg450", + "share/terminfo/d/dg460-ansi", + "share/terminfo/d/dg6053", + "share/terminfo/d/dg6053-old", + "share/terminfo/d/dg605x", + "share/terminfo/d/dg6134", + "share/terminfo/d/dgkeys+11", + "share/terminfo/d/dgkeys+15", + "share/terminfo/d/dgkeys+7b", + "share/terminfo/d/dgkeys+8b", + "share/terminfo/d/dgmode+color", + "share/terminfo/d/dgmode+color8", + "share/terminfo/d/dgunix+ccc", + "share/terminfo/d/dgunix+fixed", + "share/terminfo/d/diablo", + "share/terminfo/d/diablo-lm", + "share/terminfo/d/diablo1620", + "share/terminfo/d/diablo1620-m8", + "share/terminfo/d/diablo1640", + "share/terminfo/d/diablo1640-lm", + "share/terminfo/d/diablo1640-m8", + "share/terminfo/d/diablo1720", + "share/terminfo/d/diablo1730", + "share/terminfo/d/diablo1740", + "share/terminfo/d/diablo1740-lm", + "share/terminfo/d/diablo450", + "share/terminfo/d/diablo630", + "share/terminfo/d/dialogue", + "share/terminfo/d/dialogue80", + "share/terminfo/d/digilog", + "share/terminfo/d/djgpp", + "share/terminfo/d/djgpp203", + "share/terminfo/d/djgpp204", + "share/terminfo/d/dku7003", + "share/terminfo/d/dku7003-dumb", + "share/terminfo/d/dku7102", + "share/terminfo/d/dku7102-old", + "share/terminfo/d/dku7102-sna", + "share/terminfo/d/dku7103-sna", + "share/terminfo/d/dku7202", + "share/terminfo/d/dm1520", + "share/terminfo/d/dm1521", + "share/terminfo/d/dm2500", + "share/terminfo/d/dm3025", + "share/terminfo/d/dm3045", + "share/terminfo/d/dm80", + "share/terminfo/d/dm80w", + "share/terminfo/d/dmchat", + "share/terminfo/d/dmd", + "share/terminfo/d/dmd-24", + "share/terminfo/d/dmd-34", + "share/terminfo/d/dmd1", + "share/terminfo/d/dmdt80", + "share/terminfo/d/dmdt80w", + "share/terminfo/d/dmterm", + "share/terminfo/d/domterm", + "share/terminfo/d/dp3360", + "share/terminfo/d/dp8242", + "share/terminfo/d/ds40", + "share/terminfo/d/ds40-2", + "share/terminfo/d/dt-100", + "share/terminfo/d/dt-100w", + "share/terminfo/d/dt100", + "share/terminfo/d/dt100w", + "share/terminfo/d/dt110", + "share/terminfo/d/dt80", + "share/terminfo/d/dt80-sas", + "share/terminfo/d/dt80w", + "share/terminfo/d/dtc300s", + "share/terminfo/d/dtc382", + "share/terminfo/d/dtterm", + "share/terminfo/d/dumb", + "share/terminfo/d/dumb-emacs-ansi", + "share/terminfo/d/dvtm", + "share/terminfo/d/dvtm-256color", + "share/terminfo/d/dw", + "share/terminfo/d/dw1", + "share/terminfo/d/dw2", + "share/terminfo/d/dw3", + "share/terminfo/d/dw4", + "share/terminfo/d/dwk", + "share/terminfo/d/dwk-vt", + "share/terminfo/e/ecma+color", + "share/terminfo/e/ecma+index", + "share/terminfo/e/ecma+italics", + "share/terminfo/e/ecma+sgr", + "share/terminfo/e/ecma+strikeout", + "share/terminfo/e/elks", + "share/terminfo/e/elks-ansi", + "share/terminfo/e/elks-glasstty", + "share/terminfo/e/elks-vt52", + "share/terminfo/e/emots", + "share/terminfo/e/emu", + "share/terminfo/e/emu-220", + "share/terminfo/e/emx-base", + "share/terminfo/e/env230", + "share/terminfo/e/envision230", + "share/terminfo/e/ep40", + "share/terminfo/e/ep4000", + "share/terminfo/e/ep4080", + "share/terminfo/e/ep48", + "share/terminfo/e/ergo4000", + "share/terminfo/e/esprit", + "share/terminfo/e/esprit-am", + "share/terminfo/e/eterm", + "share/terminfo/e/eterm-color", + "share/terminfo/e/ex155", + "share/terminfo/e/excel62", + "share/terminfo/e/excel62-rv", + "share/terminfo/e/excel62-w", + "share/terminfo/e/excel64", + "share/terminfo/e/excel64-rv", + "share/terminfo/e/excel64-w", + "share/terminfo/e/exec80", + "share/terminfo/f/f100", + "share/terminfo/f/f100-rv", + "share/terminfo/f/f110", + "share/terminfo/f/f110-14", + "share/terminfo/f/f110-14w", + "share/terminfo/f/f110-w", + "share/terminfo/f/f1720", + "share/terminfo/f/f1720a", + "share/terminfo/f/f200", + "share/terminfo/f/f200-w", + "share/terminfo/f/f200vi", + "share/terminfo/f/f200vi-w", + "share/terminfo/f/falco", + "share/terminfo/f/falco-p", + "share/terminfo/f/fbterm", + "share/terminfo/f/fenix", + "share/terminfo/f/fenixw", + "share/terminfo/f/fixterm", + "share/terminfo/f/foot", + "share/terminfo/f/foot+base", + "share/terminfo/f/foot-direct", + "share/terminfo/f/fortune", + "share/terminfo/f/fos", + "share/terminfo/f/fox", + "share/terminfo/f/freedom", + "share/terminfo/f/freedom-rv", + "share/terminfo/f/freedom100", + "share/terminfo/f/freedom110", + "share/terminfo/f/freedom200", + "share/terminfo/g/gator", + "share/terminfo/g/gator-52", + "share/terminfo/g/gator-52t", + "share/terminfo/g/gator-t", + "share/terminfo/g/gigi", + "share/terminfo/g/glasstty", + "share/terminfo/g/gnome", + "share/terminfo/g/gnome+pcfkeys", + "share/terminfo/g/gnome-2007", + "share/terminfo/g/gnome-2008", + "share/terminfo/g/gnome-2012", + "share/terminfo/g/gnome-256color", + "share/terminfo/g/gnome-fc5", + "share/terminfo/g/gnome-rh62", + "share/terminfo/g/gnome-rh72", + "share/terminfo/g/gnome-rh80", + "share/terminfo/g/gnome-rh90", + "share/terminfo/g/go-225", + "share/terminfo/g/go140", + "share/terminfo/g/go140w", + "share/terminfo/g/go225", + "share/terminfo/g/graphos", + "share/terminfo/g/graphos-30", + "share/terminfo/g/gs5430", + "share/terminfo/g/gs5430-22", + "share/terminfo/g/gs5430-24", + "share/terminfo/g/gs6300", + "share/terminfo/g/gsi", + "share/terminfo/g/gt100", + "share/terminfo/g/gt100a", + "share/terminfo/g/gt40", + "share/terminfo/g/gt42", + "share/terminfo/g/guru", + "share/terminfo/g/guru+rv", + "share/terminfo/g/guru+s", + "share/terminfo/g/guru+unk", + "share/terminfo/g/guru-24", + "share/terminfo/g/guru-33", + "share/terminfo/g/guru-33-rv", + "share/terminfo/g/guru-33-s", + "share/terminfo/g/guru-44", + "share/terminfo/g/guru-44-s", + "share/terminfo/g/guru-76", + "share/terminfo/g/guru-76-lp", + "share/terminfo/g/guru-76-s", + "share/terminfo/g/guru-76-w", + "share/terminfo/g/guru-76-w-s", + "share/terminfo/g/guru-76-wm", + "share/terminfo/g/guru-lp", + "share/terminfo/g/guru-nctxt", + "share/terminfo/g/guru-rv", + "share/terminfo/g/guru-s", + "share/terminfo/h/h-100", + "share/terminfo/h/h-100bw", + "share/terminfo/h/h100", + "share/terminfo/h/h100bw", + "share/terminfo/h/h19", + "share/terminfo/h/h19-a", + "share/terminfo/h/h19-b", + "share/terminfo/h/h19-bs", + "share/terminfo/h/h19-g", + "share/terminfo/h/h19-smul", + "share/terminfo/h/h19-u", + "share/terminfo/h/h19-us", + "share/terminfo/h/h19a", + "share/terminfo/h/h19g", + "share/terminfo/h/h19k", + "share/terminfo/h/h19kermit", + "share/terminfo/h/h19us", + "share/terminfo/h/h29a-kc-bc", + "share/terminfo/h/h29a-kc-uc", + "share/terminfo/h/h29a-nkc-bc", + "share/terminfo/h/h29a-nkc-uc", + "share/terminfo/h/h80", + "share/terminfo/h/ha8675", + "share/terminfo/h/ha8686", + "share/terminfo/h/hazel", + "share/terminfo/h/hds200", + "share/terminfo/h/he80", + "share/terminfo/h/heath", + "share/terminfo/h/heath-19", + "share/terminfo/h/heath-ansi", + "share/terminfo/h/heathkit", + "share/terminfo/h/heathkit-a", + "share/terminfo/h/hft", + "share/terminfo/h/hft-c", + "share/terminfo/h/hft-c-old", + "share/terminfo/h/hft-old", + "share/terminfo/h/hirez100", + "share/terminfo/h/hirez100-w", + "share/terminfo/h/hmod1", + "share/terminfo/h/hp", + "share/terminfo/h/hp+arrows", + "share/terminfo/h/hp+color", + "share/terminfo/h/hp+labels", + "share/terminfo/h/hp+pfk+arrows", + "share/terminfo/h/hp+pfk+cr", + "share/terminfo/h/hp+pfk-cr", + "share/terminfo/h/hp+printer", + "share/terminfo/h/hp110", + "share/terminfo/h/hp150", + "share/terminfo/h/hp2", + "share/terminfo/h/hp236", + "share/terminfo/h/hp2382", + "share/terminfo/h/hp2382a", + "share/terminfo/h/hp2392", + "share/terminfo/h/hp2397", + "share/terminfo/h/hp2397a", + "share/terminfo/h/hp2621", + "share/terminfo/h/hp2621-48", + "share/terminfo/h/hp2621-a", + "share/terminfo/h/hp2621-ba", + "share/terminfo/h/hp2621-fl", + "share/terminfo/h/hp2621-k45", + "share/terminfo/h/hp2621-nl", + "share/terminfo/h/hp2621-nt", + "share/terminfo/h/hp2621-wl", + "share/terminfo/h/hp2621A", + "share/terminfo/h/hp2621a", + "share/terminfo/h/hp2621a-a", + "share/terminfo/h/hp2621b", + "share/terminfo/h/hp2621b-kx", + "share/terminfo/h/hp2621b-kx-p", + "share/terminfo/h/hp2621b-p", + "share/terminfo/h/hp2621k45", + "share/terminfo/h/hp2621p", + "share/terminfo/h/hp2621p-a", + "share/terminfo/h/hp2622", + "share/terminfo/h/hp2622a", + "share/terminfo/h/hp2623", + "share/terminfo/h/hp2623a", + "share/terminfo/h/hp2624", + "share/terminfo/h/hp2624-10p", + "share/terminfo/h/hp2624a", + "share/terminfo/h/hp2624a-10p", + "share/terminfo/h/hp2624b", + "share/terminfo/h/hp2624b-10p", + "share/terminfo/h/hp2624b-10p-p", + "share/terminfo/h/hp2624b-4p", + "share/terminfo/h/hp2624b-4p-p", + "share/terminfo/h/hp2624b-p", + "share/terminfo/h/hp2626", + "share/terminfo/h/hp2626-12", + "share/terminfo/h/hp2626-12-s", + "share/terminfo/h/hp2626-12x40", + "share/terminfo/h/hp2626-ns", + "share/terminfo/h/hp2626-s", + "share/terminfo/h/hp2626-x40", + "share/terminfo/h/hp2626a", + "share/terminfo/h/hp2626p", + "share/terminfo/h/hp2627a", + "share/terminfo/h/hp2627a-rev", + "share/terminfo/h/hp2627c", + "share/terminfo/h/hp262x", + "share/terminfo/h/hp2640a", + "share/terminfo/h/hp2640b", + "share/terminfo/h/hp2641a", + "share/terminfo/h/hp2644a", + "share/terminfo/h/hp2645", + "share/terminfo/h/hp2645a", + "share/terminfo/h/hp2647a", + "share/terminfo/h/hp2648", + "share/terminfo/h/hp2648a", + "share/terminfo/h/hp300h", + "share/terminfo/h/hp45", + "share/terminfo/h/hp700", + "share/terminfo/h/hp700-wy", + "share/terminfo/h/hp70092", + "share/terminfo/h/hp70092A", + "share/terminfo/h/hp70092a", + "share/terminfo/h/hp9837", + "share/terminfo/h/hp9845", + "share/terminfo/h/hp98550", + "share/terminfo/h/hp98550-color", + "share/terminfo/h/hp98550a", + "share/terminfo/h/hp98550a-color", + "share/terminfo/h/hp98720", + "share/terminfo/h/hp98721", + "share/terminfo/h/hpansi", + "share/terminfo/h/hpex", + "share/terminfo/h/hpex2", + "share/terminfo/h/hpgeneric", + "share/terminfo/h/hpsub", + "share/terminfo/h/hpterm", + "share/terminfo/h/hpterm-color", + "share/terminfo/h/hpterm-color2", + "share/terminfo/h/hterm", + "share/terminfo/h/hterm-256color", + "share/terminfo/h/htx11", + "share/terminfo/h/hurd", + "share/terminfo/h/hz1000", + "share/terminfo/h/hz1420", + "share/terminfo/h/hz1500", + "share/terminfo/h/hz1510", + "share/terminfo/h/hz1520", + "share/terminfo/h/hz1520-noesc", + "share/terminfo/h/hz1552", + "share/terminfo/h/hz1552-rv", + "share/terminfo/h/hz2000", + "share/terminfo/i/i100", + "share/terminfo/i/i3101", + "share/terminfo/i/i3164", + "share/terminfo/i/i400", + "share/terminfo/i/iTerm.app", + "share/terminfo/i/iTerm2.app", + "share/terminfo/i/ibcs2", + "share/terminfo/i/ibm+16color", + "share/terminfo/i/ibm+color", + "share/terminfo/i/ibm-apl", + "share/terminfo/i/ibm-pc", + "share/terminfo/i/ibm-system1", + "share/terminfo/i/ibm3101", + "share/terminfo/i/ibm3151", + "share/terminfo/i/ibm3161", + "share/terminfo/i/ibm3161-C", + "share/terminfo/i/ibm3162", + "share/terminfo/i/ibm3163", + "share/terminfo/i/ibm3164", + "share/terminfo/i/ibm327x", + "share/terminfo/i/ibm5051", + "share/terminfo/i/ibm5081", + "share/terminfo/i/ibm5081-c", + "share/terminfo/i/ibm5151", + "share/terminfo/i/ibm5154", + "share/terminfo/i/ibm5154-c", + "share/terminfo/i/ibm6153", + "share/terminfo/i/ibm6153-40", + "share/terminfo/i/ibm6153-90", + "share/terminfo/i/ibm6154", + "share/terminfo/i/ibm6154-c", + "share/terminfo/i/ibm6155", + "share/terminfo/i/ibm8503", + "share/terminfo/i/ibm8507", + "share/terminfo/i/ibm8512", + "share/terminfo/i/ibm8513", + "share/terminfo/i/ibm8514", + "share/terminfo/i/ibm8514-c", + "share/terminfo/i/ibm8604", + "share/terminfo/i/ibmaed", + "share/terminfo/i/ibmapa16", + "share/terminfo/i/ibmapa8", + "share/terminfo/i/ibmapa8c", + "share/terminfo/i/ibmapa8c-c", + "share/terminfo/i/ibmega", + "share/terminfo/i/ibmega-c", + "share/terminfo/i/ibmmono", + "share/terminfo/i/ibmmpel-c", + "share/terminfo/i/ibmpc", + "share/terminfo/i/ibmpc3", + "share/terminfo/i/ibmpc3r", + "share/terminfo/i/ibmpc3r-mono", + "share/terminfo/i/ibmpcx", + "share/terminfo/i/ibmvga", + "share/terminfo/i/ibmvga-c", + "share/terminfo/i/ibmx", + "share/terminfo/i/icl6402", + "share/terminfo/i/icl6404", + "share/terminfo/i/icl6404-w", + "share/terminfo/i/ifmr", + "share/terminfo/i/ims-ansi", + "share/terminfo/i/ims950", + "share/terminfo/i/ims950-b", + "share/terminfo/i/ims950-rv", + "share/terminfo/i/infoton", + "share/terminfo/i/infoton2", + "share/terminfo/i/interix", + "share/terminfo/i/interix-nti", + "share/terminfo/i/intertec", + "share/terminfo/i/intertube", + "share/terminfo/i/intertube2", + "share/terminfo/i/intext", + "share/terminfo/i/intext2", + "share/terminfo/i/intextii", + "share/terminfo/i/ips", + "share/terminfo/i/ipsi", + "share/terminfo/i/iq120", + "share/terminfo/i/iq140", + "share/terminfo/i/iris-ansi", + "share/terminfo/i/iris-ansi-ap", + "share/terminfo/i/iris-ansi-net", + "share/terminfo/i/iris-color", + "share/terminfo/i/iris40", + "share/terminfo/i/iterm", + "share/terminfo/i/iterm2", + "share/terminfo/i/iterm2-direct", + "share/terminfo/j/jaixterm", + "share/terminfo/j/jaixterm-m", + "share/terminfo/j/jerq", + "share/terminfo/j/jfbterm", + "share/terminfo/k/k45", + "share/terminfo/k/kaypro", + "share/terminfo/k/kaypro2", + "share/terminfo/k/kds6402", + "share/terminfo/k/kds7372", + "share/terminfo/k/kds7372-w", + "share/terminfo/k/kermit", + "share/terminfo/k/kermit-am", + "share/terminfo/k/kitty", + "share/terminfo/k/kitty+common", + "share/terminfo/k/kitty+setal", + "share/terminfo/k/kitty-direct", + "share/terminfo/k/klone+acs", + "share/terminfo/k/klone+color", + "share/terminfo/k/klone+koi8acs", + "share/terminfo/k/klone+sgr", + "share/terminfo/k/klone+sgr-dumb", + "share/terminfo/k/klone+sgr8", + "share/terminfo/k/kon", + "share/terminfo/k/kon2", + "share/terminfo/k/konsole", + "share/terminfo/k/konsole+pcfkeys", + "share/terminfo/k/konsole-16color", + "share/terminfo/k/konsole-256color", + "share/terminfo/k/konsole-base", + "share/terminfo/k/konsole-direct", + "share/terminfo/k/konsole-linux", + "share/terminfo/k/konsole-solaris", + "share/terminfo/k/konsole-vt100", + "share/terminfo/k/konsole-vt420pc", + "share/terminfo/k/konsole-xf3x", + "share/terminfo/k/konsole-xf4x", + "share/terminfo/k/kt7", + "share/terminfo/k/kt7ix", + "share/terminfo/k/kterm", + "share/terminfo/k/kterm-co", + "share/terminfo/k/kterm-color", + "share/terminfo/k/ktm", + "share/terminfo/k/kvt", + "share/terminfo/l/la120", + "share/terminfo/l/layer", + "share/terminfo/l/lft", + "share/terminfo/l/lft-pc850", + "share/terminfo/l/linux", + "share/terminfo/l/linux+decid", + "share/terminfo/l/linux+kbs", + "share/terminfo/l/linux+sfkeys", + "share/terminfo/l/linux-16color", + "share/terminfo/l/linux-basic", + "share/terminfo/l/linux-c", + "share/terminfo/l/linux-c-nc", + "share/terminfo/l/linux-koi8", + "share/terminfo/l/linux-koi8r", + "share/terminfo/l/linux-lat", + "share/terminfo/l/linux-m", + "share/terminfo/l/linux-m1", + "share/terminfo/l/linux-m1b", + "share/terminfo/l/linux-m2", + "share/terminfo/l/linux-nic", + "share/terminfo/l/linux-s", + "share/terminfo/l/linux-vt", + "share/terminfo/l/linux2.2", + "share/terminfo/l/linux2.6", + "share/terminfo/l/linux2.6.26", + "share/terminfo/l/linux3.0", + "share/terminfo/l/lisa", + "share/terminfo/l/lisaterm", + "share/terminfo/l/lisaterm-w", + "share/terminfo/l/liswb", + "share/terminfo/l/ln03", + "share/terminfo/l/ln03-w", + "share/terminfo/l/lpr", + "share/terminfo/l/luna", + "share/terminfo/l/luna68k", + "share/terminfo/m/m2-nam", + "share/terminfo/m/mac", + "share/terminfo/m/mac-w", + "share/terminfo/m/mach", + "share/terminfo/m/mach-bold", + "share/terminfo/m/mach-color", + "share/terminfo/m/mach-gnu", + "share/terminfo/m/mach-gnu-color", + "share/terminfo/m/macintosh", + "share/terminfo/m/macterminal-w", + "share/terminfo/m/mai", + "share/terminfo/m/masscomp", + "share/terminfo/m/masscomp1", + "share/terminfo/m/masscomp2", + "share/terminfo/m/mdl110", + "share/terminfo/m/megatek", + "share/terminfo/m/memhp", + "share/terminfo/m/mgr", + "share/terminfo/m/mgr-linux", + "share/terminfo/m/mgr-sun", + "share/terminfo/m/mgt", + "share/terminfo/m/mgterm", + "share/terminfo/m/microb", + "share/terminfo/m/microbee", + "share/terminfo/m/microterm", + "share/terminfo/m/microterm5", + "share/terminfo/m/mime", + "share/terminfo/m/mime-3ax", + "share/terminfo/m/mime-fb", + "share/terminfo/m/mime-hb", + "share/terminfo/m/mime1", + "share/terminfo/m/mime2", + "share/terminfo/m/mime2a", + "share/terminfo/m/mime2a-s", + "share/terminfo/m/mime2a-v", + "share/terminfo/m/mime314", + "share/terminfo/m/mime340", + "share/terminfo/m/mime3a", + "share/terminfo/m/mime3ax", + "share/terminfo/m/mimei", + "share/terminfo/m/mimeii", + "share/terminfo/m/minitel", + "share/terminfo/m/minitel-2", + "share/terminfo/m/minitel-2-nam", + "share/terminfo/m/minitel1", + "share/terminfo/m/minitel1-nb", + "share/terminfo/m/minitel12-80", + "share/terminfo/m/minitel1b", + "share/terminfo/m/minitel1b-80", + "share/terminfo/m/minitel1b-nb", + "share/terminfo/m/minitel2-80", + "share/terminfo/m/minix", + "share/terminfo/m/minix-1.5", + "share/terminfo/m/minix-1.7", + "share/terminfo/m/minix-3.0", + "share/terminfo/m/minix-old", + "share/terminfo/m/minix-old-am", + "share/terminfo/m/mintty", + "share/terminfo/m/mintty+common", + "share/terminfo/m/mintty-direct", + "share/terminfo/m/mlterm", + "share/terminfo/m/mlterm+pcfkeys", + "share/terminfo/m/mlterm-256color", + "share/terminfo/m/mlterm-direct", + "share/terminfo/m/mlterm2", + "share/terminfo/m/mlterm3", + "share/terminfo/m/mm314", + "share/terminfo/m/mm340", + "share/terminfo/m/mod", + "share/terminfo/m/mod24", + "share/terminfo/m/modgraph", + "share/terminfo/m/modgraph2", + "share/terminfo/m/modgraph48", + "share/terminfo/m/mono-emx", + "share/terminfo/m/morphos", + "share/terminfo/m/mosh", + "share/terminfo/m/mosh-256color", + "share/terminfo/m/mostlike", + "share/terminfo/m/mouse-sun", + "share/terminfo/m/mrxvt", + "share/terminfo/m/mrxvt-256color", + "share/terminfo/m/ms-terminal", + "share/terminfo/m/ms-vt-utf8", + "share/terminfo/m/ms-vt100", + "share/terminfo/m/ms-vt100+", + "share/terminfo/m/ms-vt100-16color", + "share/terminfo/m/ms-vt100-color", + "share/terminfo/m/msk227", + "share/terminfo/m/msk22714", + "share/terminfo/m/msk227am", + "share/terminfo/m/mskermit227", + "share/terminfo/m/mskermit22714", + "share/terminfo/m/mskermit227am", + "share/terminfo/m/mt-70", + "share/terminfo/m/mt4520-rv", + "share/terminfo/m/mt70", + "share/terminfo/m/mterm", + "share/terminfo/m/mterm-ansi", + "share/terminfo/m/mvterm", + "share/terminfo/n/n7900", + "share/terminfo/n/nansi.sys", + "share/terminfo/n/nansi.sysk", + "share/terminfo/n/nansisys", + "share/terminfo/n/nansisysk", + "share/terminfo/n/ncr160vppp", + "share/terminfo/n/ncr160vpwpp", + "share/terminfo/n/ncr160vt100an", + "share/terminfo/n/ncr160vt100pp", + "share/terminfo/n/ncr160vt100wan", + "share/terminfo/n/ncr160vt100wpp", + "share/terminfo/n/ncr160vt200an", + "share/terminfo/n/ncr160vt200pp", + "share/terminfo/n/ncr160vt200wan", + "share/terminfo/n/ncr160vt200wpp", + "share/terminfo/n/ncr160vt300an", + "share/terminfo/n/ncr160vt300pp", + "share/terminfo/n/ncr160vt300wan", + "share/terminfo/n/ncr160vt300wpp", + "share/terminfo/n/ncr160wy50+pp", + "share/terminfo/n/ncr160wy50+wpp", + "share/terminfo/n/ncr160wy60pp", + "share/terminfo/n/ncr160wy60wpp", + "share/terminfo/n/ncr260intan", + "share/terminfo/n/ncr260intpp", + "share/terminfo/n/ncr260intwan", + "share/terminfo/n/ncr260intwpp", + "share/terminfo/n/ncr260vp+sl", + "share/terminfo/n/ncr260vppp", + "share/terminfo/n/ncr260vpwpp", + "share/terminfo/n/ncr260vt+sl", + "share/terminfo/n/ncr260vt100an", + "share/terminfo/n/ncr260vt100pp", + "share/terminfo/n/ncr260vt100wan", + "share/terminfo/n/ncr260vt100wpp", + "share/terminfo/n/ncr260vt200an", + "share/terminfo/n/ncr260vt200pp", + "share/terminfo/n/ncr260vt200wan", + "share/terminfo/n/ncr260vt200wpp", + "share/terminfo/n/ncr260vt300an", + "share/terminfo/n/ncr260vt300pp", + "share/terminfo/n/ncr260vt300wan", + "share/terminfo/n/ncr260vt300wpp", + "share/terminfo/n/ncr260wy325pp", + "share/terminfo/n/ncr260wy325wpp", + "share/terminfo/n/ncr260wy350pp", + "share/terminfo/n/ncr260wy350wpp", + "share/terminfo/n/ncr260wy50+pp", + "share/terminfo/n/ncr260wy50+wpp", + "share/terminfo/n/ncr260wy60pp", + "share/terminfo/n/ncr260wy60wpp", + "share/terminfo/n/ncr7900", + "share/terminfo/n/ncr7900i", + "share/terminfo/n/ncr7900iv", + "share/terminfo/n/ncr7901", + "share/terminfo/n/ncrvt100an", + "share/terminfo/n/ncrvt100pp", + "share/terminfo/n/ncrvt100wan", + "share/terminfo/n/ncrvt100wpp", + "share/terminfo/n/ncsa", + "share/terminfo/n/ncsa-m", + "share/terminfo/n/ncsa-m-ns", + "share/terminfo/n/ncsa-ns", + "share/terminfo/n/ncsa-vt220", + "share/terminfo/n/ncsa-vt220-8", + "share/terminfo/n/nd9500", + "share/terminfo/n/ndr9500", + "share/terminfo/n/ndr9500-25", + "share/terminfo/n/ndr9500-25-mc", + "share/terminfo/n/ndr9500-25-mc-nl", + "share/terminfo/n/ndr9500-25-nl", + "share/terminfo/n/ndr9500-mc", + "share/terminfo/n/ndr9500-mc-nl", + "share/terminfo/n/ndr9500-nl", + "share/terminfo/n/nec", + "share/terminfo/n/nec5520", + "share/terminfo/n/netbsd6", + "share/terminfo/n/newhp", + "share/terminfo/n/newhpkeyboard", + "share/terminfo/n/news", + "share/terminfo/n/news-29", + "share/terminfo/n/news-29-euc", + "share/terminfo/n/news-29-sjis", + "share/terminfo/n/news-33", + "share/terminfo/n/news-33-euc", + "share/terminfo/n/news-33-sjis", + "share/terminfo/n/news-42", + "share/terminfo/n/news-42-euc", + "share/terminfo/n/news-42-sjis", + "share/terminfo/n/news-a", + "share/terminfo/n/news-o", + "share/terminfo/n/news-old-unk", + "share/terminfo/n/news-unk", + "share/terminfo/n/news28", + "share/terminfo/n/news28-a", + "share/terminfo/n/news29", + "share/terminfo/n/news31", + "share/terminfo/n/news31-a", + "share/terminfo/n/news31-o", + "share/terminfo/n/news33", + "share/terminfo/n/news40", + "share/terminfo/n/news40-a", + "share/terminfo/n/news40-o", + "share/terminfo/n/news42", + "share/terminfo/n/newscbm", + "share/terminfo/n/newscbm-a", + "share/terminfo/n/newscbm-o", + "share/terminfo/n/newscbm33", + "share/terminfo/n/next", + "share/terminfo/n/nextshell", + "share/terminfo/n/no+brackets", + "share/terminfo/n/northstar", + "share/terminfo/n/nsterm", + "share/terminfo/n/nsterm+7", + "share/terminfo/n/nsterm+acs", + "share/terminfo/n/nsterm+c", + "share/terminfo/n/nsterm+c41", + "share/terminfo/n/nsterm+mac", + "share/terminfo/n/nsterm+s", + "share/terminfo/n/nsterm-16color", + "share/terminfo/n/nsterm-256color", + "share/terminfo/n/nsterm-7", + "share/terminfo/n/nsterm-7-c", + "share/terminfo/n/nsterm-7-c-s", + "share/terminfo/n/nsterm-7-m", + "share/terminfo/n/nsterm-7-m-s", + "share/terminfo/n/nsterm-7-s", + "share/terminfo/n/nsterm-acs", + "share/terminfo/n/nsterm-acs-c", + "share/terminfo/n/nsterm-acs-c-s", + "share/terminfo/n/nsterm-acs-m", + "share/terminfo/n/nsterm-acs-m-s", + "share/terminfo/n/nsterm-acs-s", + "share/terminfo/n/nsterm-bce", + "share/terminfo/n/nsterm-build309", + "share/terminfo/n/nsterm-build326", + "share/terminfo/n/nsterm-build343", + "share/terminfo/n/nsterm-build361", + "share/terminfo/n/nsterm-build400", + "share/terminfo/n/nsterm-build440", + "share/terminfo/n/nsterm-c", + "share/terminfo/n/nsterm-c-7", + "share/terminfo/n/nsterm-c-acs", + "share/terminfo/n/nsterm-c-s", + "share/terminfo/n/nsterm-c-s-7", + "share/terminfo/n/nsterm-c-s-acs", + "share/terminfo/n/nsterm-direct", + "share/terminfo/n/nsterm-m", + "share/terminfo/n/nsterm-m-7", + "share/terminfo/n/nsterm-m-acs", + "share/terminfo/n/nsterm-m-s", + "share/terminfo/n/nsterm-m-s-7", + "share/terminfo/n/nsterm-m-s-acs", + "share/terminfo/n/nsterm-old", + "share/terminfo/n/nsterm-s", + "share/terminfo/n/nsterm-s-7", + "share/terminfo/n/nsterm-s-acs", + "share/terminfo/n/ntconsole", + "share/terminfo/n/ntconsole-100", + "share/terminfo/n/ntconsole-100-nti", + "share/terminfo/n/ntconsole-25", + "share/terminfo/n/ntconsole-25-nti", + "share/terminfo/n/ntconsole-25-w", + "share/terminfo/n/ntconsole-25-w-vt", + "share/terminfo/n/ntconsole-35", + "share/terminfo/n/ntconsole-35-nti", + "share/terminfo/n/ntconsole-35-w", + "share/terminfo/n/ntconsole-50", + "share/terminfo/n/ntconsole-50-nti", + "share/terminfo/n/ntconsole-50-w", + "share/terminfo/n/ntconsole-60", + "share/terminfo/n/ntconsole-60-nti", + "share/terminfo/n/ntconsole-60-w", + "share/terminfo/n/ntconsole-w", + "share/terminfo/n/ntconsole-w-vt", + "share/terminfo/n/nwe501", + "share/terminfo/n/nwe501-a", + "share/terminfo/n/nwe501-o", + "share/terminfo/n/nwp-511", + "share/terminfo/n/nwp-517", + "share/terminfo/n/nwp-517-w", + "share/terminfo/n/nwp251-a", + "share/terminfo/n/nwp251-o", + "share/terminfo/n/nwp511", + "share/terminfo/n/nwp512", + "share/terminfo/n/nwp512-a", + "share/terminfo/n/nwp512-o", + "share/terminfo/n/nwp513", + "share/terminfo/n/nwp513-a", + "share/terminfo/n/nwp513-o", + "share/terminfo/n/nwp514", + "share/terminfo/n/nwp514-a", + "share/terminfo/n/nwp514-o", + "share/terminfo/n/nwp517", + "share/terminfo/n/nwp517-w", + "share/terminfo/n/nwp518", + "share/terminfo/n/nwp518-a", + "share/terminfo/n/nwp518-o", + "share/terminfo/n/nxterm", + "share/terminfo/o/o31", + "share/terminfo/o/o4112-nd", + "share/terminfo/o/o85h", + "share/terminfo/o/oabm85h", + "share/terminfo/o/oblit", + "share/terminfo/o/oc100", + "share/terminfo/o/oconcept", + "share/terminfo/o/ofcons", + "share/terminfo/o/ojerq", + "share/terminfo/o/old-st", + "share/terminfo/o/oldibmpc3", + "share/terminfo/o/oldpc3", + "share/terminfo/o/oldsun", + "share/terminfo/o/oldxterm+sm+1006", + "share/terminfo/o/omron", + "share/terminfo/o/opennt", + "share/terminfo/o/opennt-100", + "share/terminfo/o/opennt-100-nti", + "share/terminfo/o/opennt-25", + "share/terminfo/o/opennt-25-nti", + "share/terminfo/o/opennt-25-w", + "share/terminfo/o/opennt-25-w-vt", + "share/terminfo/o/opennt-35", + "share/terminfo/o/opennt-35-nti", + "share/terminfo/o/opennt-35-w", + "share/terminfo/o/opennt-50", + "share/terminfo/o/opennt-50-nti", + "share/terminfo/o/opennt-50-w", + "share/terminfo/o/opennt-60", + "share/terminfo/o/opennt-60-nti", + "share/terminfo/o/opennt-60-w", + "share/terminfo/o/opennt-nti", + "share/terminfo/o/opennt-w", + "share/terminfo/o/opennt-w-vt", + "share/terminfo/o/opus3n1+", + "share/terminfo/o/origibmpc3", + "share/terminfo/o/origpc3", + "share/terminfo/o/os9LII", + "share/terminfo/o/osborne", + "share/terminfo/o/osborne-w", + "share/terminfo/o/osborne1", + "share/terminfo/o/osborne1-w", + "share/terminfo/o/osexec", + "share/terminfo/o/otek4112", + "share/terminfo/o/otek4113", + "share/terminfo/o/otek4114", + "share/terminfo/o/otek4115", + "share/terminfo/o/owl", + "share/terminfo/p/p12", + "share/terminfo/p/p12-m", + "share/terminfo/p/p12-m-w", + "share/terminfo/p/p12-w", + "share/terminfo/p/p14", + "share/terminfo/p/p14-m", + "share/terminfo/p/p14-m-w", + "share/terminfo/p/p14-w", + "share/terminfo/p/p19", + "share/terminfo/p/p4", + "share/terminfo/p/p5", + "share/terminfo/p/p7", + "share/terminfo/p/p8", + "share/terminfo/p/p8-w", + "share/terminfo/p/p8gl", + "share/terminfo/p/p9", + "share/terminfo/p/p9-8", + "share/terminfo/p/p9-8-w", + "share/terminfo/p/p9-w", + "share/terminfo/p/pc-coherent", + "share/terminfo/p/pc-minix", + "share/terminfo/p/pc-venix", + "share/terminfo/p/pc3", + "share/terminfo/p/pc3-bold", + "share/terminfo/p/pc3r", + "share/terminfo/p/pc3r-m", + "share/terminfo/p/pc6300plus", + "share/terminfo/p/pc7300", + "share/terminfo/p/pcansi", + "share/terminfo/p/pcansi-25", + "share/terminfo/p/pcansi-25-m", + "share/terminfo/p/pcansi-33", + "share/terminfo/p/pcansi-33-m", + "share/terminfo/p/pcansi-43", + "share/terminfo/p/pcansi-43-m", + "share/terminfo/p/pcansi-m", + "share/terminfo/p/pcansi-mono", + "share/terminfo/p/pcansi25", + "share/terminfo/p/pcansi25m", + "share/terminfo/p/pcansi33", + "share/terminfo/p/pcansi33m", + "share/terminfo/p/pcansi43", + "share/terminfo/p/pccon", + "share/terminfo/p/pccon+base", + "share/terminfo/p/pccon+colors", + "share/terminfo/p/pccon+keys", + "share/terminfo/p/pccon+sgr+acs", + "share/terminfo/p/pccon+sgr+acs0", + "share/terminfo/p/pccon-m", + "share/terminfo/p/pccon0", + "share/terminfo/p/pccon0-m", + "share/terminfo/p/pccons", + "share/terminfo/p/pcconsole", + "share/terminfo/p/pcix", + "share/terminfo/p/pckermit", + "share/terminfo/p/pckermit12", + "share/terminfo/p/pckermit120", + "share/terminfo/p/pcmw", + "share/terminfo/p/pcplot", + "share/terminfo/p/pcvt25", + "share/terminfo/p/pcvt25-color", + "share/terminfo/p/pcvt25w", + "share/terminfo/p/pcvt28", + "share/terminfo/p/pcvt28w", + "share/terminfo/p/pcvt35", + "share/terminfo/p/pcvt35w", + "share/terminfo/p/pcvt40", + "share/terminfo/p/pcvt40w", + "share/terminfo/p/pcvt43", + "share/terminfo/p/pcvt43w", + "share/terminfo/p/pcvt50", + "share/terminfo/p/pcvt50w", + "share/terminfo/p/pcvtXX", + "share/terminfo/p/pcz19", + "share/terminfo/p/pe1100", + "share/terminfo/p/pe1200", + "share/terminfo/p/pe1251", + "share/terminfo/p/pe550", + "share/terminfo/p/pe6100", + "share/terminfo/p/pe6300", + "share/terminfo/p/pe6312", + "share/terminfo/p/pe7000c", + "share/terminfo/p/pe7000m", + "share/terminfo/p/pilot", + "share/terminfo/p/pmcons", + "share/terminfo/p/pmconsole", + "share/terminfo/p/printer", + "share/terminfo/p/prism12", + "share/terminfo/p/prism12-m", + "share/terminfo/p/prism12-m-w", + "share/terminfo/p/prism12-w", + "share/terminfo/p/prism14", + "share/terminfo/p/prism14-m", + "share/terminfo/p/prism14-m-w", + "share/terminfo/p/prism14-w", + "share/terminfo/p/prism2", + "share/terminfo/p/prism4", + "share/terminfo/p/prism5", + "share/terminfo/p/prism7", + "share/terminfo/p/prism8", + "share/terminfo/p/prism8-w", + "share/terminfo/p/prism8gl", + "share/terminfo/p/prism9", + "share/terminfo/p/prism9-8", + "share/terminfo/p/prism9-8-w", + "share/terminfo/p/prism9-w", + "share/terminfo/p/pro350", + "share/terminfo/p/ps300", + "share/terminfo/p/psterm", + "share/terminfo/p/psterm-80x24", + "share/terminfo/p/psterm-90x28", + "share/terminfo/p/psterm-96x48", + "share/terminfo/p/psterm-basic", + "share/terminfo/p/psterm-fast", + "share/terminfo/p/psx_ansi", + "share/terminfo/p/pt100", + "share/terminfo/p/pt100w", + "share/terminfo/p/pt200", + "share/terminfo/p/pt200w", + "share/terminfo/p/pt210", + "share/terminfo/p/pt250", + "share/terminfo/p/pt250w", + "share/terminfo/p/pt505", + "share/terminfo/p/pt505-22", + "share/terminfo/p/pt505-24", + "share/terminfo/p/pty", + "share/terminfo/p/putty", + "share/terminfo/p/putty+cursor", + "share/terminfo/p/putty+fnkeys", + "share/terminfo/p/putty+fnkeys+esc", + "share/terminfo/p/putty+fnkeys+linux", + "share/terminfo/p/putty+fnkeys+sco", + "share/terminfo/p/putty+fnkeys+vt100", + "share/terminfo/p/putty+fnkeys+vt400", + "share/terminfo/p/putty+fnkeys+xterm", + "share/terminfo/p/putty+keypad", + "share/terminfo/p/putty+screen", + "share/terminfo/p/putty-256color", + "share/terminfo/p/putty-m1", + "share/terminfo/p/putty-m1b", + "share/terminfo/p/putty-m2", + "share/terminfo/p/putty-noapp", + "share/terminfo/p/putty-sco", + "share/terminfo/p/putty-screen", + "share/terminfo/p/putty-vt100", + "share/terminfo/q/qansi", + "share/terminfo/q/qansi-g", + "share/terminfo/q/qansi-m", + "share/terminfo/q/qansi-t", + "share/terminfo/q/qansi-w", + "share/terminfo/q/qdcons", + "share/terminfo/q/qdss", + "share/terminfo/q/qnx", + "share/terminfo/q/qnx4", + "share/terminfo/q/qnxm", + "share/terminfo/q/qnxt", + "share/terminfo/q/qnxt2", + "share/terminfo/q/qnxt4", + "share/terminfo/q/qnxtmono", + "share/terminfo/q/qnxw", + "share/terminfo/q/qume", + "share/terminfo/q/qume5", + "share/terminfo/q/qvt101", + "share/terminfo/q/qvt101+", + "share/terminfo/q/qvt101p", + "share/terminfo/q/qvt102", + "share/terminfo/q/qvt103", + "share/terminfo/q/qvt103-w", + "share/terminfo/q/qvt108", + "share/terminfo/q/qvt119", + "share/terminfo/q/qvt119+", + "share/terminfo/q/qvt119+-25", + "share/terminfo/q/qvt119+-25-w", + "share/terminfo/q/qvt119+-w", + "share/terminfo/q/qvt119-25-w", + "share/terminfo/q/qvt119-w", + "share/terminfo/q/qvt119p", + "share/terminfo/q/qvt119p-25", + "share/terminfo/q/qvt119p-25-w", + "share/terminfo/q/qvt119p-w", + "share/terminfo/q/qvt203", + "share/terminfo/q/qvt203+", + "share/terminfo/q/qvt203-25", + "share/terminfo/q/qvt203-25-w", + "share/terminfo/q/qvt203-w", + "share/terminfo/q/qvt203-w-am", + "share/terminfo/r/rbcomm", + "share/terminfo/r/rbcomm-nam", + "share/terminfo/r/rbcomm-w", + "share/terminfo/r/rca", + "share/terminfo/r/rcons", + "share/terminfo/r/rcons-color", + "share/terminfo/r/rebus3180", + "share/terminfo/r/regent", + "share/terminfo/r/regent100", + "share/terminfo/r/regent20", + "share/terminfo/r/regent200", + "share/terminfo/r/regent25", + "share/terminfo/r/regent40", + "share/terminfo/r/regent40+", + "share/terminfo/r/regent60", + "share/terminfo/r/report+da2", + "share/terminfo/r/report+version", + "share/terminfo/r/rio", + "share/terminfo/r/rio-direct", + "share/terminfo/r/rt6221", + "share/terminfo/r/rt6221-w", + "share/terminfo/r/rtpc", + "share/terminfo/r/rxvt", + "share/terminfo/r/rxvt+pcfkeys", + "share/terminfo/r/rxvt-16color", + "share/terminfo/r/rxvt-256color", + "share/terminfo/r/rxvt-88color", + "share/terminfo/r/rxvt-basic", + "share/terminfo/r/rxvt-color", + "share/terminfo/r/rxvt-cygwin", + "share/terminfo/r/rxvt-cygwin-native", + "share/terminfo/r/rxvt-xpm", + "share/terminfo/s/s4", + "share/terminfo/s/sb1", + "share/terminfo/s/sb2", + "share/terminfo/s/sb3", + "share/terminfo/s/sbi", + "share/terminfo/s/sbobcat", + "share/terminfo/s/sc410", + "share/terminfo/s/sc415", + "share/terminfo/s/scanset", + "share/terminfo/s/scoansi", + "share/terminfo/s/scoansi-new", + "share/terminfo/s/scoansi-old", + "share/terminfo/s/screen", + "share/terminfo/s/screen+fkeys", + "share/terminfo/s/screen+italics", + "share/terminfo/s/screen-16color", + "share/terminfo/s/screen-16color-bce", + "share/terminfo/s/screen-16color-bce-s", + "share/terminfo/s/screen-16color-s", + "share/terminfo/s/screen-256color", + "share/terminfo/s/screen-256color-bce", + "share/terminfo/s/screen-256color-bce-s", + "share/terminfo/s/screen-256color-s", + "share/terminfo/s/screen-base", + "share/terminfo/s/screen-bce", + "share/terminfo/s/screen-bce.Eterm", + "share/terminfo/s/screen-bce.gnome", + "share/terminfo/s/screen-bce.konsole", + "share/terminfo/s/screen-bce.linux", + "share/terminfo/s/screen-bce.mrxvt", + "share/terminfo/s/screen-bce.rxvt", + "share/terminfo/s/screen-bce.xterm-new", + "share/terminfo/s/screen-s", + "share/terminfo/s/screen-w", + "share/terminfo/s/screen.Eterm", + "share/terminfo/s/screen.gnome", + "share/terminfo/s/screen.konsole", + "share/terminfo/s/screen.konsole-256color", + "share/terminfo/s/screen.linux", + "share/terminfo/s/screen.linux-m1", + "share/terminfo/s/screen.linux-m1b", + "share/terminfo/s/screen.linux-m2", + "share/terminfo/s/screen.linux-s", + "share/terminfo/s/screen.minitel1", + "share/terminfo/s/screen.minitel1-nb", + "share/terminfo/s/screen.minitel12-80", + "share/terminfo/s/screen.minitel1b", + "share/terminfo/s/screen.minitel1b-80", + "share/terminfo/s/screen.minitel1b-nb", + "share/terminfo/s/screen.minitel2-80", + "share/terminfo/s/screen.mlterm", + "share/terminfo/s/screen.mlterm-256color", + "share/terminfo/s/screen.mrxvt", + "share/terminfo/s/screen.putty", + "share/terminfo/s/screen.putty-256color", + "share/terminfo/s/screen.putty-m1", + "share/terminfo/s/screen.putty-m1b", + "share/terminfo/s/screen.putty-m2", + "share/terminfo/s/screen.rxvt", + "share/terminfo/s/screen.teraterm", + "share/terminfo/s/screen.vte", + "share/terminfo/s/screen.vte-256color", + "share/terminfo/s/screen.xterm-256color", + "share/terminfo/s/screen.xterm-new", + "share/terminfo/s/screen.xterm-r6", + "share/terminfo/s/screen.xterm-xfree86", + "share/terminfo/s/screen2", + "share/terminfo/s/screen3", + "share/terminfo/s/screen4", + "share/terminfo/s/screen5", + "share/terminfo/s/screwpoint", + "share/terminfo/s/scrhp", + "share/terminfo/s/scrt", + "share/terminfo/s/securecrt", + "share/terminfo/s/sibo", + "share/terminfo/s/simpleterm", + "share/terminfo/s/simterm", + "share/terminfo/s/soroc", + "share/terminfo/s/soroc120", + "share/terminfo/s/soroc140", + "share/terminfo/s/spinwriter", + "share/terminfo/s/st", + "share/terminfo/s/st-0.6", + "share/terminfo/s/st-0.7", + "share/terminfo/s/st-0.8", + "share/terminfo/s/st-16color", + "share/terminfo/s/st-256color", + "share/terminfo/s/st-direct", + "share/terminfo/s/st52", + "share/terminfo/s/st52-color", + "share/terminfo/s/st52-m", + "share/terminfo/s/st52-old", + "share/terminfo/s/stterm", + "share/terminfo/s/stterm-16color", + "share/terminfo/s/stterm-256color", + "share/terminfo/s/stv52", + "share/terminfo/s/stv52pc", + "share/terminfo/s/sun", + "share/terminfo/s/sun+sl", + "share/terminfo/s/sun-1", + "share/terminfo/s/sun-12", + "share/terminfo/s/sun-17", + "share/terminfo/s/sun-24", + "share/terminfo/s/sun-34", + "share/terminfo/s/sun-48", + "share/terminfo/s/sun-c", + "share/terminfo/s/sun-cgsix", + "share/terminfo/s/sun-cmd", + "share/terminfo/s/sun-color", + "share/terminfo/s/sun-e", + "share/terminfo/s/sun-e-s", + "share/terminfo/s/sun-il", + "share/terminfo/s/sun-nic", + "share/terminfo/s/sun-s", + "share/terminfo/s/sun-s-e", + "share/terminfo/s/sun-ss5", + "share/terminfo/s/sun-type4", + "share/terminfo/s/sun1", + "share/terminfo/s/sun2", + "share/terminfo/s/sune", + "share/terminfo/s/superbee", + "share/terminfo/s/superbee-xsb", + "share/terminfo/s/superbeeic", + "share/terminfo/s/superbrain", + "share/terminfo/s/sv80", + "share/terminfo/s/swtp", + "share/terminfo/s/synertek", + "share/terminfo/s/synertek380", + "share/terminfo/s/system1", + "share/terminfo/t/t10", + "share/terminfo/t/t1061", + "share/terminfo/t/t1061f", + "share/terminfo/t/t16", + "share/terminfo/t/t3700", + "share/terminfo/t/t3800", + "share/terminfo/t/t653x", + "share/terminfo/t/tab", + "share/terminfo/t/tab132", + "share/terminfo/t/tab132-15", + "share/terminfo/t/tab132-rv", + "share/terminfo/t/tab132-w", + "share/terminfo/t/tab132-w-rv", + "share/terminfo/t/tandem6510", + "share/terminfo/t/tandem653", + "share/terminfo/t/tek", + "share/terminfo/t/tek4012", + "share/terminfo/t/tek4013", + "share/terminfo/t/tek4014", + "share/terminfo/t/tek4014-sm", + "share/terminfo/t/tek4015", + "share/terminfo/t/tek4015-sm", + "share/terminfo/t/tek4023", + "share/terminfo/t/tek4024", + "share/terminfo/t/tek4025", + "share/terminfo/t/tek4025-17", + "share/terminfo/t/tek4025-17-ws", + "share/terminfo/t/tek4025-cr", + "share/terminfo/t/tek4025-ex", + "share/terminfo/t/tek4025a", + "share/terminfo/t/tek4025ex", + "share/terminfo/t/tek4027", + "share/terminfo/t/tek4027-ex", + "share/terminfo/t/tek4105", + "share/terminfo/t/tek4105-30", + "share/terminfo/t/tek4105a", + "share/terminfo/t/tek4106brl", + "share/terminfo/t/tek4107", + "share/terminfo/t/tek4107brl", + "share/terminfo/t/tek4109", + "share/terminfo/t/tek4109brl", + "share/terminfo/t/tek4112", + "share/terminfo/t/tek4112-5", + "share/terminfo/t/tek4112-nd", + "share/terminfo/t/tek4113", + "share/terminfo/t/tek4113-34", + "share/terminfo/t/tek4113-nd", + "share/terminfo/t/tek4114", + "share/terminfo/t/tek4115", + "share/terminfo/t/tek4125", + "share/terminfo/t/tek4205", + "share/terminfo/t/tek4207", + "share/terminfo/t/tek4207-s", + "share/terminfo/t/tek4404", + "share/terminfo/t/teken", + "share/terminfo/t/teken-16color", + "share/terminfo/t/teken-2018", + "share/terminfo/t/teken-2022", + "share/terminfo/t/teken-sc", + "share/terminfo/t/teken-sc+fkeys", + "share/terminfo/t/teken-vt", + "share/terminfo/t/teken-vt+fkeys", + "share/terminfo/t/teleray", + "share/terminfo/t/teletec", + "share/terminfo/t/teraterm", + "share/terminfo/t/teraterm-256color", + "share/terminfo/t/teraterm2.3", + "share/terminfo/t/teraterm4.59", + "share/terminfo/t/teraterm4.97", + "share/terminfo/t/terminator", + "share/terminfo/t/terminet", + "share/terminfo/t/terminet1200", + "share/terminfo/t/terminet300", + "share/terminfo/t/terminology", + "share/terminfo/t/terminology-0.6.1", + "share/terminfo/t/terminology-1.0.0", + "share/terminfo/t/terminology-1.8.1", + "share/terminfo/t/termite", + "share/terminfo/t/tgtelnet", + "share/terminfo/t/ti700", + "share/terminfo/t/ti703", + "share/terminfo/t/ti703-w", + "share/terminfo/t/ti707", + "share/terminfo/t/ti707-w", + "share/terminfo/t/ti733", + "share/terminfo/t/ti735", + "share/terminfo/t/ti745", + "share/terminfo/t/ti800", + "share/terminfo/t/ti916", + "share/terminfo/t/ti916-132", + "share/terminfo/t/ti916-220-7", + "share/terminfo/t/ti916-220-8", + "share/terminfo/t/ti916-8", + "share/terminfo/t/ti916-8-132", + "share/terminfo/t/ti924", + "share/terminfo/t/ti924-8", + "share/terminfo/t/ti924-8w", + "share/terminfo/t/ti924w", + "share/terminfo/t/ti926", + "share/terminfo/t/ti926-8", + "share/terminfo/t/ti928", + "share/terminfo/t/ti928-8", + "share/terminfo/t/ti931", + "share/terminfo/t/ti_ansi", + "share/terminfo/t/tkterm", + "share/terminfo/t/tmux", + "share/terminfo/t/tmux-256color", + "share/terminfo/t/tmux-direct", + "share/terminfo/t/tn1200", + "share/terminfo/t/tn300", + "share/terminfo/t/trs16", + "share/terminfo/t/trs2", + "share/terminfo/t/trs80II", + "share/terminfo/t/trsII", + "share/terminfo/t/ts-1", + "share/terminfo/t/ts-1p", + "share/terminfo/t/ts1", + "share/terminfo/t/ts100", + "share/terminfo/t/ts100-ctxt", + "share/terminfo/t/ts100-sp", + "share/terminfo/t/ts1p", + "share/terminfo/t/tt", + "share/terminfo/t/tt52", + "share/terminfo/t/tty33", + "share/terminfo/t/tty35", + "share/terminfo/t/tty37", + "share/terminfo/t/tty40", + "share/terminfo/t/tty43", + "share/terminfo/t/tty4420", + "share/terminfo/t/tty4424", + "share/terminfo/t/tty4424-1", + "share/terminfo/t/tty4424m", + "share/terminfo/t/tty4426", + "share/terminfo/t/tty5410", + "share/terminfo/t/tty5410-w", + "share/terminfo/t/tty5410v1", + "share/terminfo/t/tty5410v1-w", + "share/terminfo/t/tty5420", + "share/terminfo/t/tty5420+nl", + "share/terminfo/t/tty5420-nl", + "share/terminfo/t/tty5420-rv", + "share/terminfo/t/tty5420-rv-nl", + "share/terminfo/t/tty5420-w", + "share/terminfo/t/tty5420-w-nl", + "share/terminfo/t/tty5420-w-rv", + "share/terminfo/t/tty5420-w-rv-n", + "share/terminfo/t/tty5425", + "share/terminfo/t/tty5425-nl", + "share/terminfo/t/tty5425-w", + "share/terminfo/t/tty5620", + "share/terminfo/t/tty5620-1", + "share/terminfo/t/tty5620-24", + "share/terminfo/t/tty5620-34", + "share/terminfo/t/tty5620-s", + "share/terminfo/t/ttydmd", + "share/terminfo/t/tvi803", + "share/terminfo/t/tvi9065", + "share/terminfo/t/tvi910", + "share/terminfo/t/tvi910+", + "share/terminfo/t/tvi912", + "share/terminfo/t/tvi912b", + "share/terminfo/t/tvi912b+2p", + "share/terminfo/t/tvi912b+dim", + "share/terminfo/t/tvi912b+mc", + "share/terminfo/t/tvi912b+printer", + "share/terminfo/t/tvi912b+vb", + "share/terminfo/t/tvi912b-2p", + "share/terminfo/t/tvi912b-2p-mc", + "share/terminfo/t/tvi912b-2p-p", + "share/terminfo/t/tvi912b-2p-unk", + "share/terminfo/t/tvi912b-mc", + "share/terminfo/t/tvi912b-mc-2p", + "share/terminfo/t/tvi912b-mc-vb", + "share/terminfo/t/tvi912b-p", + "share/terminfo/t/tvi912b-p-2p", + "share/terminfo/t/tvi912b-p-vb", + "share/terminfo/t/tvi912b-unk", + "share/terminfo/t/tvi912b-unk-2p", + "share/terminfo/t/tvi912b-unk-vb", + "share/terminfo/t/tvi912b-vb", + "share/terminfo/t/tvi912b-vb-mc", + "share/terminfo/t/tvi912b-vb-p", + "share/terminfo/t/tvi912b-vb-unk", + "share/terminfo/t/tvi912c", + "share/terminfo/t/tvi912c-2p", + "share/terminfo/t/tvi912c-2p-mc", + "share/terminfo/t/tvi912c-2p-p", + "share/terminfo/t/tvi912c-2p-unk", + "share/terminfo/t/tvi912c-mc", + "share/terminfo/t/tvi912c-mc-2p", + "share/terminfo/t/tvi912c-mc-vb", + "share/terminfo/t/tvi912c-p", + "share/terminfo/t/tvi912c-p-2p", + "share/terminfo/t/tvi912c-p-vb", + "share/terminfo/t/tvi912c-unk", + "share/terminfo/t/tvi912c-unk-2p", + "share/terminfo/t/tvi912c-unk-vb", + "share/terminfo/t/tvi912c-vb", + "share/terminfo/t/tvi912c-vb-mc", + "share/terminfo/t/tvi912c-vb-p", + "share/terminfo/t/tvi912c-vb-unk", + "share/terminfo/t/tvi912cc", + "share/terminfo/t/tvi914", + "share/terminfo/t/tvi920", + "share/terminfo/t/tvi920b", + "share/terminfo/t/tvi920b+fn", + "share/terminfo/t/tvi920b-2p", + "share/terminfo/t/tvi920b-2p-mc", + "share/terminfo/t/tvi920b-2p-p", + "share/terminfo/t/tvi920b-2p-unk", + "share/terminfo/t/tvi920b-mc", + "share/terminfo/t/tvi920b-mc-2p", + "share/terminfo/t/tvi920b-mc-vb", + "share/terminfo/t/tvi920b-p", + "share/terminfo/t/tvi920b-p-2p", + "share/terminfo/t/tvi920b-p-vb", + "share/terminfo/t/tvi920b-unk", + "share/terminfo/t/tvi920b-unk-2p", + "share/terminfo/t/tvi920b-unk-vb", + "share/terminfo/t/tvi920b-vb", + "share/terminfo/t/tvi920b-vb-mc", + "share/terminfo/t/tvi920b-vb-p", + "share/terminfo/t/tvi920b-vb-unk", + "share/terminfo/t/tvi920c", + "share/terminfo/t/tvi920c-2p", + "share/terminfo/t/tvi920c-2p-mc", + "share/terminfo/t/tvi920c-2p-p", + "share/terminfo/t/tvi920c-2p-unk", + "share/terminfo/t/tvi920c-mc", + "share/terminfo/t/tvi920c-mc-2p", + "share/terminfo/t/tvi920c-mc-vb", + "share/terminfo/t/tvi920c-p", + "share/terminfo/t/tvi920c-p-2p", + "share/terminfo/t/tvi920c-p-vb", + "share/terminfo/t/tvi920c-unk", + "share/terminfo/t/tvi920c-unk-2p", + "share/terminfo/t/tvi920c-unk-vb", + "share/terminfo/t/tvi920c-vb", + "share/terminfo/t/tvi920c-vb-mc", + "share/terminfo/t/tvi920c-vb-p", + "share/terminfo/t/tvi920c-vb-unk", + "share/terminfo/t/tvi921", + "share/terminfo/t/tvi924", + "share/terminfo/t/tvi925", + "share/terminfo/t/tvi925-hi", + "share/terminfo/t/tvi92B", + "share/terminfo/t/tvi92D", + "share/terminfo/t/tvi950", + "share/terminfo/t/tvi950-2p", + "share/terminfo/t/tvi950-4p", + "share/terminfo/t/tvi950-rv", + "share/terminfo/t/tvi950-rv-2p", + "share/terminfo/t/tvi950-rv-4p", + "share/terminfo/t/tvi955", + "share/terminfo/t/tvi955-hb", + "share/terminfo/t/tvi955-w", + "share/terminfo/t/tvi970", + "share/terminfo/t/tvi970-2p", + "share/terminfo/t/tvi970-vb", + "share/terminfo/t/tvipt", + "share/terminfo/t/tw100", + "share/terminfo/t/tw52", + "share/terminfo/t/tw52-color", + "share/terminfo/t/tw52-m", + "share/terminfo/t/tws-generic", + "share/terminfo/t/tws2102-sna", + "share/terminfo/t/tws2103", + "share/terminfo/t/tws2103-sna", + "share/terminfo/u/ultima2", + "share/terminfo/u/ultimaII", + "share/terminfo/u/uniterm", + "share/terminfo/u/uniterm49", + "share/terminfo/u/unixpc", + "share/terminfo/u/unknown", + "share/terminfo/u/uts30", + "share/terminfo/u/uwin", + "share/terminfo/v/v200-nam", + "share/terminfo/v/v320n", + "share/terminfo/v/v3220", + "share/terminfo/v/v5410", + "share/terminfo/v/vanilla", + "share/terminfo/v/vapple", + "share/terminfo/v/vc103", + "share/terminfo/v/vc203", + "share/terminfo/v/vc303", + "share/terminfo/v/vc303a", + "share/terminfo/v/vc403a", + "share/terminfo/v/vc404", + "share/terminfo/v/vc404-s", + "share/terminfo/v/vc414", + "share/terminfo/v/vc414h", + "share/terminfo/v/vc415", + "share/terminfo/v/venix", + "share/terminfo/v/versaterm", + "share/terminfo/v/vi200", + "share/terminfo/v/vi200-f", + "share/terminfo/v/vi200-rv", + "share/terminfo/v/vi300", + "share/terminfo/v/vi300-old", + "share/terminfo/v/vi50", + "share/terminfo/v/vi500", + "share/terminfo/v/vi50adm", + "share/terminfo/v/vi55", + "share/terminfo/v/vi550", + "share/terminfo/v/vi603", + "share/terminfo/v/viewdata", + "share/terminfo/v/viewdata-o", + "share/terminfo/v/viewdata-rv", + "share/terminfo/v/viewpoint", + "share/terminfo/v/viewpoint3a+", + "share/terminfo/v/viewpoint60", + "share/terminfo/v/viewpoint90", + "share/terminfo/v/vip", + "share/terminfo/v/vip-H", + "share/terminfo/v/vip-Hw", + "share/terminfo/v/vip-w", + "share/terminfo/v/vip7800-H", + "share/terminfo/v/vip7800-Hw", + "share/terminfo/v/vip7800-w", + "share/terminfo/v/visa50", + "share/terminfo/v/visual603", + "share/terminfo/v/vitty", + "share/terminfo/v/vk100", + "share/terminfo/v/vp3a+", + "share/terminfo/v/vp60", + "share/terminfo/v/vp90", + "share/terminfo/v/vremote", + "share/terminfo/v/vs100", + "share/terminfo/v/vs100-x10", + "share/terminfo/v/vsc", + "share/terminfo/v/vscode", + "share/terminfo/v/vscode-direct", + "share/terminfo/v/vt-61", + "share/terminfo/v/vt-utf8", + "share/terminfo/v/vt100", + "share/terminfo/v/vt100+", + "share/terminfo/v/vt100+4bsd", + "share/terminfo/v/vt100+enq", + "share/terminfo/v/vt100+fnkeys", + "share/terminfo/v/vt100+keypad", + "share/terminfo/v/vt100+noapp", + "share/terminfo/v/vt100+noapp+pc", + "share/terminfo/v/vt100+pfkeys", + "share/terminfo/v/vt100-am", + "share/terminfo/v/vt100-bm", + "share/terminfo/v/vt100-bm-o", + "share/terminfo/v/vt100-bot-s", + "share/terminfo/v/vt100-nam", + "share/terminfo/v/vt100-nam-w", + "share/terminfo/v/vt100-nav", + "share/terminfo/v/vt100-nav-w", + "share/terminfo/v/vt100-putty", + "share/terminfo/v/vt100-s", + "share/terminfo/v/vt100-s-bot", + "share/terminfo/v/vt100-s-top", + "share/terminfo/v/vt100-top-s", + "share/terminfo/v/vt100-vb", + "share/terminfo/v/vt100-w", + "share/terminfo/v/vt100-w-am", + "share/terminfo/v/vt100-w-nam", + "share/terminfo/v/vt100-w-nav", + "share/terminfo/v/vt100nam", + "share/terminfo/v/vt102", + "share/terminfo/v/vt102+enq", + "share/terminfo/v/vt102-nsgr", + "share/terminfo/v/vt102-w", + "share/terminfo/v/vt125", + "share/terminfo/v/vt131", + "share/terminfo/v/vt132", + "share/terminfo/v/vt200", + "share/terminfo/v/vt200-8", + "share/terminfo/v/vt200-8bit", + "share/terminfo/v/vt200-js", + "share/terminfo/v/vt200-old", + "share/terminfo/v/vt200-w", + "share/terminfo/v/vt220", + "share/terminfo/v/vt220+cvis", + "share/terminfo/v/vt220+cvis8", + "share/terminfo/v/vt220+keypad", + "share/terminfo/v/vt220+pcedit", + "share/terminfo/v/vt220+vtedit", + "share/terminfo/v/vt220-8", + "share/terminfo/v/vt220-8bit", + "share/terminfo/v/vt220-base", + "share/terminfo/v/vt220-js", + "share/terminfo/v/vt220-nam", + "share/terminfo/v/vt220-old", + "share/terminfo/v/vt220-w", + "share/terminfo/v/vt220d", + "share/terminfo/v/vt300", + "share/terminfo/v/vt300-nam", + "share/terminfo/v/vt300-w", + "share/terminfo/v/vt300-w-nam", + "share/terminfo/v/vt320", + "share/terminfo/v/vt320-k3", + "share/terminfo/v/vt320-k311", + "share/terminfo/v/vt320-nam", + "share/terminfo/v/vt320-w", + "share/terminfo/v/vt320-w-nam", + "share/terminfo/v/vt320nam", + "share/terminfo/v/vt330", + "share/terminfo/v/vt340", + "share/terminfo/v/vt400", + "share/terminfo/v/vt400-24", + "share/terminfo/v/vt420", + "share/terminfo/v/vt420+lrmm", + "share/terminfo/v/vt420f", + "share/terminfo/v/vt420pc", + "share/terminfo/v/vt420pcdos", + "share/terminfo/v/vt50", + "share/terminfo/v/vt50h", + "share/terminfo/v/vt510", + "share/terminfo/v/vt510pc", + "share/terminfo/v/vt510pcdos", + "share/terminfo/v/vt52", + "share/terminfo/v/vt52+arrows", + "share/terminfo/v/vt52+keypad", + "share/terminfo/v/vt52-basic", + "share/terminfo/v/vt520", + "share/terminfo/v/vt520ansi", + "share/terminfo/v/vt525", + "share/terminfo/v/vt61", + "share/terminfo/v/vt61.5", + "share/terminfo/v/vte", + "share/terminfo/v/vte+pcfkeys", + "share/terminfo/v/vte-2007", + "share/terminfo/v/vte-2008", + "share/terminfo/v/vte-2012", + "share/terminfo/v/vte-2014", + "share/terminfo/v/vte-2017", + "share/terminfo/v/vte-2018", + "share/terminfo/v/vte-256color", + "share/terminfo/v/vte-direct", + "share/terminfo/v/vtnt", + "share/terminfo/v/vv100", + "share/terminfo/v/vwmterm", + "share/terminfo/w/wezterm", + "share/terminfo/w/winconsole", + "share/terminfo/w/wren", + "share/terminfo/w/wrenw", + "share/terminfo/w/wsiris", + "share/terminfo/w/wsvt25", + "share/terminfo/w/wsvt25m", + "share/terminfo/w/wy-75ap", + "share/terminfo/w/wy-99fgt", + "share/terminfo/w/wy-99fgta", + "share/terminfo/w/wy100", + "share/terminfo/w/wy100q", + "share/terminfo/w/wy120", + "share/terminfo/w/wy120-25", + "share/terminfo/w/wy120-25-w", + "share/terminfo/w/wy120-vb", + "share/terminfo/w/wy120-w", + "share/terminfo/w/wy120-w-vb", + "share/terminfo/w/wy120-wvb", + "share/terminfo/w/wy150", + "share/terminfo/w/wy150-25", + "share/terminfo/w/wy150-25-w", + "share/terminfo/w/wy150-vb", + "share/terminfo/w/wy150-w", + "share/terminfo/w/wy150-w-vb", + "share/terminfo/w/wy160", + "share/terminfo/w/wy160-25", + "share/terminfo/w/wy160-25-w", + "share/terminfo/w/wy160-42", + "share/terminfo/w/wy160-42-w", + "share/terminfo/w/wy160-43", + "share/terminfo/w/wy160-43-w", + "share/terminfo/w/wy160-tek", + "share/terminfo/w/wy160-vb", + "share/terminfo/w/wy160-w", + "share/terminfo/w/wy160-w-vb", + "share/terminfo/w/wy160-wvb", + "share/terminfo/w/wy185", + "share/terminfo/w/wy185-24", + "share/terminfo/w/wy185-vb", + "share/terminfo/w/wy185-w", + "share/terminfo/w/wy185-wvb", + "share/terminfo/w/wy30", + "share/terminfo/w/wy30-mc", + "share/terminfo/w/wy30-vb", + "share/terminfo/w/wy325", + "share/terminfo/w/wy325-25", + "share/terminfo/w/wy325-25w", + "share/terminfo/w/wy325-42", + "share/terminfo/w/wy325-42w", + "share/terminfo/w/wy325-42w-vb", + "share/terminfo/w/wy325-42wvb", + "share/terminfo/w/wy325-43", + "share/terminfo/w/wy325-43w", + "share/terminfo/w/wy325-43w-vb", + "share/terminfo/w/wy325-43wvb", + "share/terminfo/w/wy325-80", + "share/terminfo/w/wy325-vb", + "share/terminfo/w/wy325-w", + "share/terminfo/w/wy325-w-vb", + "share/terminfo/w/wy325-wvb", + "share/terminfo/w/wy325w-24", + "share/terminfo/w/wy350", + "share/terminfo/w/wy350-vb", + "share/terminfo/w/wy350-w", + "share/terminfo/w/wy350-wvb", + "share/terminfo/w/wy370", + "share/terminfo/w/wy370-101k", + "share/terminfo/w/wy370-105k", + "share/terminfo/w/wy370-EPC", + "share/terminfo/w/wy370-nk", + "share/terminfo/w/wy370-rv", + "share/terminfo/w/wy370-tek", + "share/terminfo/w/wy370-vb", + "share/terminfo/w/wy370-w", + "share/terminfo/w/wy370-wvb", + "share/terminfo/w/wy50", + "share/terminfo/w/wy50-mc", + "share/terminfo/w/wy50-vb", + "share/terminfo/w/wy50-w", + "share/terminfo/w/wy50-wvb", + "share/terminfo/w/wy520", + "share/terminfo/w/wy520-24", + "share/terminfo/w/wy520-36", + "share/terminfo/w/wy520-36pc", + "share/terminfo/w/wy520-36w", + "share/terminfo/w/wy520-36wpc", + "share/terminfo/w/wy520-48", + "share/terminfo/w/wy520-48pc", + "share/terminfo/w/wy520-48w", + "share/terminfo/w/wy520-48wpc", + "share/terminfo/w/wy520-epc", + "share/terminfo/w/wy520-epc-24", + "share/terminfo/w/wy520-epc-vb", + "share/terminfo/w/wy520-epc-w", + "share/terminfo/w/wy520-epc-wvb", + "share/terminfo/w/wy520-vb", + "share/terminfo/w/wy520-w", + "share/terminfo/w/wy520-wvb", + "share/terminfo/w/wy60", + "share/terminfo/w/wy60-25", + "share/terminfo/w/wy60-25-w", + "share/terminfo/w/wy60-316X", + "share/terminfo/w/wy60-42", + "share/terminfo/w/wy60-42-w", + "share/terminfo/w/wy60-43", + "share/terminfo/w/wy60-43-w", + "share/terminfo/w/wy60-AT", + "share/terminfo/w/wy60-PC", + "share/terminfo/w/wy60-vb", + "share/terminfo/w/wy60-w", + "share/terminfo/w/wy60-w-vb", + "share/terminfo/w/wy60-wvb", + "share/terminfo/w/wy75", + "share/terminfo/w/wy75-mc", + "share/terminfo/w/wy75-vb", + "share/terminfo/w/wy75-w", + "share/terminfo/w/wy75-wvb", + "share/terminfo/w/wy75ap", + "share/terminfo/w/wy85", + "share/terminfo/w/wy85-8bit", + "share/terminfo/w/wy85-vb", + "share/terminfo/w/wy85-w", + "share/terminfo/w/wy85-wvb", + "share/terminfo/w/wy99-ansi", + "share/terminfo/w/wy99a-ansi", + "share/terminfo/w/wy99f", + "share/terminfo/w/wy99fa", + "share/terminfo/w/wy99fgt", + "share/terminfo/w/wy99fgta", + "share/terminfo/w/wy99gt", + "share/terminfo/w/wy99gt-25", + "share/terminfo/w/wy99gt-25-w", + "share/terminfo/w/wy99gt-tek", + "share/terminfo/w/wy99gt-vb", + "share/terminfo/w/wy99gt-w", + "share/terminfo/w/wy99gt-w-vb", + "share/terminfo/w/wy99gt-wvb", + "share/terminfo/w/wyse+sl", + "share/terminfo/w/wyse-325", + "share/terminfo/w/wyse-75ap", + "share/terminfo/w/wyse-vp", + "share/terminfo/w/wyse120", + "share/terminfo/w/wyse120-25", + "share/terminfo/w/wyse120-25-w", + "share/terminfo/w/wyse120-vb", + "share/terminfo/w/wyse120-w", + "share/terminfo/w/wyse120-wvb", + "share/terminfo/w/wyse150", + "share/terminfo/w/wyse150-25", + "share/terminfo/w/wyse150-25-w", + "share/terminfo/w/wyse150-vb", + "share/terminfo/w/wyse150-w", + "share/terminfo/w/wyse150-w-vb", + "share/terminfo/w/wyse160", + "share/terminfo/w/wyse160-25", + "share/terminfo/w/wyse160-25-w", + "share/terminfo/w/wyse160-42", + "share/terminfo/w/wyse160-42-w", + "share/terminfo/w/wyse160-43", + "share/terminfo/w/wyse160-43-w", + "share/terminfo/w/wyse160-vb", + "share/terminfo/w/wyse160-w", + "share/terminfo/w/wyse160-wvb", + "share/terminfo/w/wyse185", + "share/terminfo/w/wyse185-24", + "share/terminfo/w/wyse185-vb", + "share/terminfo/w/wyse185-w", + "share/terminfo/w/wyse185-wvb", + "share/terminfo/w/wyse30", + "share/terminfo/w/wyse30-mc", + "share/terminfo/w/wyse30-vb", + "share/terminfo/w/wyse325", + "share/terminfo/w/wyse325-25", + "share/terminfo/w/wyse325-25w", + "share/terminfo/w/wyse325-42", + "share/terminfo/w/wyse325-42w", + "share/terminfo/w/wyse325-43", + "share/terminfo/w/wyse325-43w", + "share/terminfo/w/wyse325-vb", + "share/terminfo/w/wyse325-w", + "share/terminfo/w/wyse325-wvb", + "share/terminfo/w/wyse350", + "share/terminfo/w/wyse350-vb", + "share/terminfo/w/wyse350-w", + "share/terminfo/w/wyse350-wvb", + "share/terminfo/w/wyse370", + "share/terminfo/w/wyse50", + "share/terminfo/w/wyse50-mc", + "share/terminfo/w/wyse50-vb", + "share/terminfo/w/wyse50-w", + "share/terminfo/w/wyse50-wvb", + "share/terminfo/w/wyse520", + "share/terminfo/w/wyse520-24", + "share/terminfo/w/wyse520-36", + "share/terminfo/w/wyse520-36pc", + "share/terminfo/w/wyse520-36w", + "share/terminfo/w/wyse520-36wpc", + "share/terminfo/w/wyse520-48", + "share/terminfo/w/wyse520-48pc", + "share/terminfo/w/wyse520-48w", + "share/terminfo/w/wyse520-48wpc", + "share/terminfo/w/wyse520-epc", + "share/terminfo/w/wyse520-epc-w", + "share/terminfo/w/wyse520-p-wvb", + "share/terminfo/w/wyse520-pc-24", + "share/terminfo/w/wyse520-pc-vb", + "share/terminfo/w/wyse520-vb", + "share/terminfo/w/wyse520-w", + "share/terminfo/w/wyse520-wvb", + "share/terminfo/w/wyse60", + "share/terminfo/w/wyse60-25", + "share/terminfo/w/wyse60-25-w", + "share/terminfo/w/wyse60-316X", + "share/terminfo/w/wyse60-42", + "share/terminfo/w/wyse60-42-w", + "share/terminfo/w/wyse60-43", + "share/terminfo/w/wyse60-43-w", + "share/terminfo/w/wyse60-AT", + "share/terminfo/w/wyse60-PC", + "share/terminfo/w/wyse60-vb", + "share/terminfo/w/wyse60-w", + "share/terminfo/w/wyse60-wvb", + "share/terminfo/w/wyse75", + "share/terminfo/w/wyse75-mc", + "share/terminfo/w/wyse75-vb", + "share/terminfo/w/wyse75-w", + "share/terminfo/w/wyse75-wvb", + "share/terminfo/w/wyse75ap", + "share/terminfo/w/wyse85", + "share/terminfo/w/wyse85-8bit", + "share/terminfo/w/wyse85-vb", + "share/terminfo/w/wyse85-w", + "share/terminfo/w/wyse85-wvb", + "share/terminfo/w/wyse99gt", + "share/terminfo/w/wyse99gt-25", + "share/terminfo/w/wyse99gt-25-w", + "share/terminfo/w/wyse99gt-vb", + "share/terminfo/w/wyse99gt-w", + "share/terminfo/w/wyse99gt-wvb", + "share/terminfo/x/x10term", + "share/terminfo/x/x10term+sl", + "share/terminfo/x/x1700", + "share/terminfo/x/x1700-lm", + "share/terminfo/x/x1720", + "share/terminfo/x/x1750", + "share/terminfo/x/x68k", + "share/terminfo/x/x68k-ite", + "share/terminfo/x/x820", + "share/terminfo/x/xdku", + "share/terminfo/x/xenix", + "share/terminfo/x/xerox", + "share/terminfo/x/xerox-lm", + "share/terminfo/x/xerox1720", + "share/terminfo/x/xerox820", + "share/terminfo/x/xfce", + "share/terminfo/x/xgterm", + "share/terminfo/x/xiterm", + "share/terminfo/x/xl83", + "share/terminfo/x/xnuppc", + "share/terminfo/x/xnuppc+100x37", + "share/terminfo/x/xnuppc+112x37", + "share/terminfo/x/xnuppc+128x40", + "share/terminfo/x/xnuppc+128x48", + "share/terminfo/x/xnuppc+144x48", + "share/terminfo/x/xnuppc+160x64", + "share/terminfo/x/xnuppc+200x64", + "share/terminfo/x/xnuppc+200x75", + "share/terminfo/x/xnuppc+256x96", + "share/terminfo/x/xnuppc+80x25", + "share/terminfo/x/xnuppc+80x30", + "share/terminfo/x/xnuppc+90x30", + "share/terminfo/x/xnuppc+b", + "share/terminfo/x/xnuppc+basic", + "share/terminfo/x/xnuppc+c", + "share/terminfo/x/xnuppc+f", + "share/terminfo/x/xnuppc+f2", + "share/terminfo/x/xnuppc-100x37", + "share/terminfo/x/xnuppc-100x37-m", + "share/terminfo/x/xnuppc-112x37", + "share/terminfo/x/xnuppc-112x37-m", + "share/terminfo/x/xnuppc-128x40", + "share/terminfo/x/xnuppc-128x40-m", + "share/terminfo/x/xnuppc-128x48", + "share/terminfo/x/xnuppc-128x48-m", + "share/terminfo/x/xnuppc-144x48", + "share/terminfo/x/xnuppc-144x48-m", + "share/terminfo/x/xnuppc-160x64", + "share/terminfo/x/xnuppc-160x64-m", + "share/terminfo/x/xnuppc-200x64", + "share/terminfo/x/xnuppc-200x64-m", + "share/terminfo/x/xnuppc-200x75", + "share/terminfo/x/xnuppc-200x75-m", + "share/terminfo/x/xnuppc-256x96", + "share/terminfo/x/xnuppc-256x96-m", + "share/terminfo/x/xnuppc-80x25", + "share/terminfo/x/xnuppc-80x25-m", + "share/terminfo/x/xnuppc-80x30", + "share/terminfo/x/xnuppc-80x30-m", + "share/terminfo/x/xnuppc-90x30", + "share/terminfo/x/xnuppc-90x30-m", + "share/terminfo/x/xnuppc-b", + "share/terminfo/x/xnuppc-f", + "share/terminfo/x/xnuppc-f2", + "share/terminfo/x/xnuppc-m", + "share/terminfo/x/xnuppc-m-b", + "share/terminfo/x/xnuppc-m-f", + "share/terminfo/x/xnuppc-m-f2", + "share/terminfo/x/xtalk", + "share/terminfo/x/xterm", + "share/terminfo/x/xterm+256color", + "share/terminfo/x/xterm+256color2", + "share/terminfo/x/xterm+256setaf", + "share/terminfo/x/xterm+88color", + "share/terminfo/x/xterm+88color2", + "share/terminfo/x/xterm+acs", + "share/terminfo/x/xterm+alt+title", + "share/terminfo/x/xterm+alt1049", + "share/terminfo/x/xterm+alt47", + "share/terminfo/x/xterm+app", + "share/terminfo/x/xterm+app+pc", + "share/terminfo/x/xterm+decedit", + "share/terminfo/x/xterm+direct", + "share/terminfo/x/xterm+direct16", + "share/terminfo/x/xterm+direct2", + "share/terminfo/x/xterm+direct256", + "share/terminfo/x/xterm+edit", + "share/terminfo/x/xterm+focus", + "share/terminfo/x/xterm+indirect", + "share/terminfo/x/xterm+kbs", + "share/terminfo/x/xterm+keypad", + "share/terminfo/x/xterm+meta", + "share/terminfo/x/xterm+noalt", + "share/terminfo/x/xterm+noapp", + "share/terminfo/x/xterm+nofkeys", + "share/terminfo/x/xterm+nopcfkeys", + "share/terminfo/x/xterm+osc104", + "share/terminfo/x/xterm+pc+edit", + "share/terminfo/x/xterm+pcc0", + "share/terminfo/x/xterm+pcc1", + "share/terminfo/x/xterm+pcc2", + "share/terminfo/x/xterm+pcc3", + "share/terminfo/x/xterm+pce2", + "share/terminfo/x/xterm+pcf0", + "share/terminfo/x/xterm+pcf2", + "share/terminfo/x/xterm+pcfkeys", + "share/terminfo/x/xterm+r6f2", + "share/terminfo/x/xterm+sl", + "share/terminfo/x/xterm+sl-alt", + "share/terminfo/x/xterm+sl-twm", + "share/terminfo/x/xterm+sm+1002", + "share/terminfo/x/xterm+sm+1003", + "share/terminfo/x/xterm+sm+1005", + "share/terminfo/x/xterm+sm+1006", + "share/terminfo/x/xterm+titlestack", + "share/terminfo/x/xterm+tmux", + "share/terminfo/x/xterm+tmux2", + "share/terminfo/x/xterm+vt+edit", + "share/terminfo/x/xterm+x10mouse", + "share/terminfo/x/xterm+x11hilite", + "share/terminfo/x/xterm+x11mouse", + "share/terminfo/x/xterm-1002", + "share/terminfo/x/xterm-1003", + "share/terminfo/x/xterm-1005", + "share/terminfo/x/xterm-1006", + "share/terminfo/x/xterm-16color", + "share/terminfo/x/xterm-24", + "share/terminfo/x/xterm-256color", + "share/terminfo/x/xterm-88color", + "share/terminfo/x/xterm-8bit", + "share/terminfo/x/xterm-basic", + "share/terminfo/x/xterm-bold", + "share/terminfo/x/xterm-color", + "share/terminfo/x/xterm-direct", + "share/terminfo/x/xterm-direct16", + "share/terminfo/x/xterm-direct2", + "share/terminfo/x/xterm-direct256", + "share/terminfo/x/xterm-hp", + "share/terminfo/x/xterm-mono", + "share/terminfo/x/xterm-new", + "share/terminfo/x/xterm-nic", + "share/terminfo/x/xterm-noapp", + "share/terminfo/x/xterm-old", + "share/terminfo/x/xterm-p370", + "share/terminfo/x/xterm-p371", + "share/terminfo/x/xterm-pcolor", + "share/terminfo/x/xterm-r5", + "share/terminfo/x/xterm-r6", + "share/terminfo/x/xterm-sco", + "share/terminfo/x/xterm-sun", + "share/terminfo/x/xterm-utf8", + "share/terminfo/x/xterm-vt220", + "share/terminfo/x/xterm-vt52", + "share/terminfo/x/xterm-x10mouse", + "share/terminfo/x/xterm-x11hilite", + "share/terminfo/x/xterm-x11mouse", + "share/terminfo/x/xterm-xf86-v32", + "share/terminfo/x/xterm-xf86-v33", + "share/terminfo/x/xterm-xf86-v333", + "share/terminfo/x/xterm-xf86-v40", + "share/terminfo/x/xterm-xf86-v43", + "share/terminfo/x/xterm-xf86-v44", + "share/terminfo/x/xterm-xfree86", + "share/terminfo/x/xterm-xi", + "share/terminfo/x/xterm.js", + "share/terminfo/x/xterm1", + "share/terminfo/x/xtermc", + "share/terminfo/x/xtermm", + "share/terminfo/x/xterms", + "share/terminfo/x/xterms-sun", + "share/terminfo/x/xwsh", + "share/terminfo/z/z-100", + "share/terminfo/z/z-100bw", + "share/terminfo/z/z100", + "share/terminfo/z/z100bw", + "share/terminfo/z/z110", + "share/terminfo/z/z110bw", + "share/terminfo/z/z19", + "share/terminfo/z/z29", + "share/terminfo/z/z29a", + "share/terminfo/z/z29a-kc-bc", + "share/terminfo/z/z29a-kc-uc", + "share/terminfo/z/z29a-nkc-bc", + "share/terminfo/z/z29a-nkc-uc", + "share/terminfo/z/z29b", + "share/terminfo/z/z30", + "share/terminfo/z/z340", + "share/terminfo/z/z340-nam", + "share/terminfo/z/z39-a", + "share/terminfo/z/z39a", + "share/terminfo/z/z50", + "share/terminfo/z/z8001", + "share/terminfo/z/zen30", + "share/terminfo/z/zen50", + "share/terminfo/z/zen8001", + "share/terminfo/z/zenith", + "share/terminfo/z/zenith29", + "share/terminfo/z/zenith39-a", + "share/terminfo/z/zenith39-ansi", + "share/terminfo/z/zt-1", + "share/terminfo/z/ztx", + "share/terminfo/z/ztx-1-a", + "share/terminfo/z/ztx11" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/ncursesw6-config", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "65cad0eaf259a5b4f2906b1aace936470930d74a4b8fc55bdc4d80e9ed936248", + "size_in_bytes": 10336, + "sha256_in_prefix": "0679693b9bc93cbd9ca47feab271aee945f7740cafcd6ba7933c03bef4e0a024" + }, + { + "_path": "lib/libtinfow.a", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "cf1f61282f568f1f0979e32d93bf0b559f94cc2381752e11a695fea4caad734f", + "size_in_bytes": 506336, + "sha256_in_prefix": "3d3fc57bf444ab390edbaffeaaac9c3d6e1b75207477c7b369fd379ec54a04ba" + }, + { + "_path": "lib/libtinfow.so.6.5", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "02173b4f9ecf6a207ca426241e4ab030685cf971ecb519117bd0247301eb9477", + "size_in_bytes": 299896, + "sha256_in_prefix": "c982bd1222f6f6ca41d503c8b04431b19b0e42a4a0cdf7fa79db7aeddcc74234" + }, + { + "_path": "lib/pkgconfig/formw.pc", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "4cd066d294c0a851c28cf636621d988f6889f6090df58bac41302a5b66e9acb4", + "size_in_bytes": 1836, + "sha256_in_prefix": "a2e7d8cd6df8c14fb0fabde991a71b3428e5382b89398b11d65733b1edb8210d" + }, + { + "_path": "lib/pkgconfig/menuw.pc", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "d98c544879599ceddffdf65cf9e52fc1a1ee3aceff8bd8d1da138a472385d452", + "size_in_bytes": 1836, + "sha256_in_prefix": "98eb6c128c1208894859e91766fde1db926fb4d625b9ef0008bec3579a7a5a77" + }, + { + "_path": "lib/pkgconfig/ncurses++w.pc", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "8625de5e920f82ad2c9e9a4b9bb9c8657b0f28dc2193e4cee7c34627cc0807b0", + "size_in_bytes": 1868, + "sha256_in_prefix": "e22cee4320b535a47abd6e3d78c9b4afdda774a61876d1139733270179f7cf56" + }, + { + "_path": "lib/pkgconfig/ncursesw.pc", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "cf04f31adb67a326c170e432e797469ad7297e7055736b85c0b0eca912fd88e1", + "size_in_bytes": 1836, + "sha256_in_prefix": "0c878140008d8462264d153bb6939935f518977eeaab60a651925565a9321ed7" + }, + { + "_path": "lib/pkgconfig/panelw.pc", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "6d68787753462d8b4872c0a92cd818e3a105845cb0aa334929a5c9a45a880bc9", + "size_in_bytes": 1838, + "sha256_in_prefix": "906e30a1636ee8d13d85301b712d20454e3e98246b8d2aff0d4fcfbeaa172849" + }, + { + "_path": "lib/pkgconfig/tinfow.pc", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "55a630a7e36e7ea397c80dcc00433c5cae6fd99cdc1ded131e71804c70c5cb87", + "size_in_bytes": 1842, + "sha256_in_prefix": "b2153e530914e47c9d570508729fe14ab73afd962d89460c2ca0a59ef6c9ccea" + }, + { + "_path": "share/terminfo/a/abm85", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "85d3396bce95a5c1939eb4ce8b396376ed10f188fb771d2fb46c5ce513946a5c", + "size_in_bytes": 735, + "sha256_in_prefix": "c9aed55d30fb97248fe55d61aa7dabd146539525c6793be129ea1e1c8f63a52b" + }, + { + "_path": "share/terminfo/a/abm85e", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "2660ecd68c3f01abda5f01f4a3b5816f83338adb74a6f179accecc60fb629c5e", + "size_in_bytes": 775, + "sha256_in_prefix": "a848f9b3584154053794949a7b5b26d90f78b653f17631e2c5cc60b9a052f5a3" + }, + { + "_path": "share/terminfo/a/abm85h", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "2aad378b377b2333be1224ec45ec359de4e1764452252e4a4bd84d26207177f6", + "size_in_bytes": 811, + "sha256_in_prefix": "326594005c83a444b0453cb259abeb24bbf5e2bfc3e3cedfa4ef32759fb82cfe" + }, + { + "_path": "share/terminfo/a/abm85h-old", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "f32a59d7bf5550ada132d00381c627b780d2b7d4bb6eae48384d972f0b514d34", + "size_in_bytes": 802, + "sha256_in_prefix": "d39a2a514ee754b5803fc7ead36008607e7848777bb0a9e0758f66ea6a98abd7" + }, + { + "_path": "share/terminfo/a/adm36", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "b1e20d6678e11cb10b5bbc1d9466a60607e92b15b8cd187d6abfb89c033eef23", + "size_in_bytes": 1411, + "sha256_in_prefix": "b26ebe37faff52c4839338715358c640ae54e221af3ada76f7ace24a2b3c9aff" + }, + { + "_path": "share/terminfo/a/altos2", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "ccd872517353eaae433443329f6d022e1a22b5998c80204c6e62f3cff9954ee7", + "size_in_bytes": 1108, + "sha256_in_prefix": "f21c574a316d387c6d4d94d84426f4f1fcd15c60bf8f47e91179273f3fe04546" + }, + { + "_path": "share/terminfo/a/altos3", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "70ec314ad1e98a07df7390f878cf1c43cace899d37b9ebc908f6200cd0933acb", + "size_in_bytes": 1142, + "sha256_in_prefix": "92f899d0d51b51d231a34a2a19ebeb7c031f960dedf029d83df8edf5b01377a1" + }, + { + "_path": "share/terminfo/a/ampex210", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "1a5bd08ac022ba9317d13bfbc6da78b6c77a2dd3b4b87e3e581f752dc0c65702", + "size_in_bytes": 822, + "sha256_in_prefix": "020bb8c7b4937e4045219febdb72e5fab7002cfab4f9fea9334e81c52d82eed5" + }, + { + "_path": "share/terminfo/c/cit101e", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "7b36eaa2b4118ccb9960dc2a25a22d13f606ab6ad4d175e6f03d41c229980793", + "size_in_bytes": 853, + "sha256_in_prefix": "a20ddb942bdc0d0e3ea88d6d5f3920292aad0bcbdf28397d3eb9e7f9c41f86b4" + }, + { + "_path": "share/terminfo/c/cit101e-132", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "0706a02c26d7af40d6dbbf38376874724e01b287e6d7557f09cd94b41e606dec", + "size_in_bytes": 861, + "sha256_in_prefix": "3e233162bbcb4f1106b4a26ecac13ce97292fbe809b432cfc4809540f0bb7b15" + }, + { + "_path": "share/terminfo/c/cit101e-n", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "7f826e0b687baf90f7f775a6db06d9b7d4c97932908e162a6a8fe64286c391d6", + "size_in_bytes": 853, + "sha256_in_prefix": "80c23d1ffdb3b2e73c2144951de1d671786565a199009d7ec72d05666f9b2f2e" + }, + { + "_path": "share/terminfo/c/cit101e-n132", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "1d444d54f1367e57bf3dfd8d2dc6a6c4a5eecaae75e5ccc38df4b11a90838cc0", + "size_in_bytes": 869, + "sha256_in_prefix": "b3fa027359f8e84021908fcedac6a0079b70446b432dc31f03695b479b40a312" + }, + { + "_path": "share/terminfo/c/crt", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "cfe5b089ef15d69d740edaaac05bdfce0ec699772a7d94c1c3cc3da8eb29c637", + "size_in_bytes": 1825, + "sha256_in_prefix": "710e5376a48d5bfc65e2d09ba0c1fad29d7fd1ced9cf2a8d8f5ab8d74045821c" + }, + { + "_path": "share/terminfo/d/ddr", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "ea7d31cc6da95d9314cd56d142ee5adf797bb54ff19e8564bfa3dd73c66ec3f7", + "size_in_bytes": 989, + "sha256_in_prefix": "033a6b73acea4353a3521e433998814dda369d4fd9007ce948ff0a2d44accacb" + }, + { + "_path": "share/terminfo/d/dec-vt220", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "141e244d465e2e7eebdbbad40d09be2aef61e3d712d5da400bffd88cbca2ca85", + "size_in_bytes": 1660, + "sha256_in_prefix": "edefec004a50ad4ca014ffac17233dfbfa40aba896a3d480736e3365cc2fe5c3" + }, + { + "_path": "share/terminfo/e/emu-220", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "6baff30be497af3d271732233d0d16ed92a96822a16e9c1384868771a18d11f7", + "size_in_bytes": 1543, + "sha256_in_prefix": "c493ed0687a862f62d9cff05924bbb625d7f1e68b539a5d78a0723864e013e2b" + }, + { + "_path": "share/terminfo/g/go140", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "f5daf2a23b131cbfb580685769ddaa12fa490969410a3f891c53943b21d501cc", + "size_in_bytes": 868, + "sha256_in_prefix": "fe7e7756fab16e21c0415c9b63606d7364b49874fa4c81acdce34ec0a2214f12" + }, + { + "_path": "share/terminfo/g/go140w", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "a87cee30b0b17d7444fee3c311b13dbb7eacbe6a958ddec66d1a9aa5aa48b7a2", + "size_in_bytes": 888, + "sha256_in_prefix": "f8a914c468d0c384a7d1ec98cab225f02139341fc0828bea18a075a92e5e86e3" + }, + { + "_path": "share/terminfo/g/go225", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "89792665142688ed44f67b848be3ef8462c329a69efa909d83df67b4ec5f04fc", + "size_in_bytes": 950, + "sha256_in_prefix": "c810667d74b9ad89aaf242dde17cdb411797df26b235655ba5a836267da50eb0" + }, + { + "_path": "share/terminfo/h/hazel", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "85364cb6bf7534a5bac6b5f32cf6147af723fc6f7aa9e700a77225eda1f15cd2", + "size_in_bytes": 1474, + "sha256_in_prefix": "44d483827c7c9ab4ba973275929bbfff6b085665b8f2c5885ad07c2c1ed2d701" + }, + { + "_path": "share/terminfo/h/hp2392", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "036893fe58f01c2cedb49df880b3a8c08ac77548416c68e502c4dc82619baf8c", + "size_in_bytes": 799, + "sha256_in_prefix": "3f0746c23b45ba36292e2f8474ee850bf80064559229438237719d2a4f7e5698" + }, + { + "_path": "share/terminfo/h/hp2641a", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "b288d65e6116c23cb2f340387b2a9c555922dd6ae7a0fb6b1aa87f57ebcc89af", + "size_in_bytes": 738, + "sha256_in_prefix": "e967ef24f2d002fc448e1be4aa201991943983261e75ec475c60f27b46bf60e3" + }, + { + "_path": "share/terminfo/h/hp300h", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "ed7a2bc5d8cc7faba939ceb876a2fa354803a34c2598e0609e115e063f462b29", + "size_in_bytes": 778, + "sha256_in_prefix": "3ab6c468705c563c8c40ee2a88334a74531bd45370bd496669d68391a9abe751" + }, + { + "_path": "share/terminfo/h/hp700-wy", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "d36d5e3a7033ddb8d0301bca65951964f1b24ce920eb005b0d434ec85e36820a", + "size_in_bytes": 877, + "sha256_in_prefix": "18f2f4872f091fac3baf93ad57d54293f7e2d72c8bbfd7738b69ec26596ee4cd" + }, + { + "_path": "share/terminfo/h/hp9845", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "3c475bb68a24e126c73a5635aaebf06dd22afb2592690734e1c9f24d702dd05c", + "size_in_bytes": 1210, + "sha256_in_prefix": "4c1591bf02296a2d4f11b5a44818555835a137138b7897d38ca1655f6bf4ddb4" + }, + { + "_path": "share/terminfo/h/hp98550", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "d1bb242c385489650f4896587f69b1c865b6b2aac0b03ebbbc2e7fb4257b6780", + "size_in_bytes": 930, + "sha256_in_prefix": "60861dbd3dc5555f6df76aa88677b26de50e4048e78ca38a8bd0a02a1e03d03a" + }, + { + "_path": "share/terminfo/h/hpex", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "fab7a311304d503edf812077c23138dd9038a9eabd619dad005be11360058f48", + "size_in_bytes": 764, + "sha256_in_prefix": "01c3bc3d8105df3737c51217d01ccd60e61b2091e123ebb94df9533715856d6d" + }, + { + "_path": "share/terminfo/h/hpsub", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "125a4ebc9e6a887ad1ce08316694eb88dd8f0867419368e753961b8045d57b26", + "size_in_bytes": 732, + "sha256_in_prefix": "be7f46d39ff517cdb8b9d9942446dacb0dd56ff1e0d962758fb5600ea377e3aa" + }, + { + "_path": "share/terminfo/i/ims-ansi", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "7e9b0809095ca4b0635497d147286bc03115824f8d34a76ac869b75b87e175ff", + "size_in_bytes": 772, + "sha256_in_prefix": "3fc37d37342e925570b850249926c17f8f4ab2404d12c9b0f99cab320c2d8f8b" + }, + { + "_path": "share/terminfo/k/kt7", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "7f53428ab0cd351ce80dd43e13b45cdc826aa8aaffa5e6a712687989524cc0ef", + "size_in_bytes": 824, + "sha256_in_prefix": "8001f874c866672d7a55c883a69d68e435851f58370f60b4dbd183d064c74eaf" + }, + { + "_path": "share/terminfo/m/mai", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "e6ccb4f04464a6903ce1022f86c35e6cffcd7f39b6ad86c8f57d565a84de958a", + "size_in_bytes": 857, + "sha256_in_prefix": "719b28a5767261bb19773979f8f5c24ffd8cf9ff41b3228048ee9dea19bb24aa" + }, + { + "_path": "share/terminfo/m/mt4520-rv", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "cf44673b63669498ecfed9ced50b1e70fd01e62b03bbfd40c1fcb2e6e754f665", + "size_in_bytes": 1076, + "sha256_in_prefix": "4ed4baf301e683326b2517467b7cd1fec321f5aa9f59b23bf669848ca6f65405" + }, + { + "_path": "share/terminfo/n/ncsa", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "5ec20f98f3a74259fcb8181994e7581955cece9b0646b8aea7a8c7417979737f", + "size_in_bytes": 2126, + "sha256_in_prefix": "504df1058270c421948de492e6a16f27687de86fca6b3600095546b11ef94840" + }, + { + "_path": "share/terminfo/n/ncsa-m", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "328482ce2aca0221ced88a0cce59e4fdcfa940ec63406d7e3e395dc0ddd9c294", + "size_in_bytes": 1944, + "sha256_in_prefix": "a82c430e75495046060b41ad192d4c15370005813568586fc323336f815c68ca" + }, + { + "_path": "share/terminfo/n/ncsa-m-ns", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "fa53d306856e90cec19460d7c1581b9ef50852baf580bd811fa3265405e9fa0b", + "size_in_bytes": 1938, + "sha256_in_prefix": "7a8c80248615ddb9d82204ef01911ee80bea78808da92f8ebd1d4dd2df01879c" + }, + { + "_path": "share/terminfo/n/ncsa-ns", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "98efd1ae6dfff93e491f7431096c7006534c177f4f4f3206fdff95ca0efdebe9", + "size_in_bytes": 2132, + "sha256_in_prefix": "4ecde8d77b978540684883b78917ad1d194712a0b0d5f1ee2fc2d96a56ab154f" + }, + { + "_path": "share/terminfo/n/ncsa-vt220", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "8ea6c463876c5d80456709ea433c7da460b80a7739b272ae3642c8568590677a", + "size_in_bytes": 2150, + "sha256_in_prefix": "53c63c6d54f00c79d22cf00761b16f5e6e4c974f899ce2c9151096f45696474a" + }, + { + "_path": "share/terminfo/n/netbsd6", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "699caf22bc3afe9c563505cf69be46920d170de0e2ca8f2af65ed6e164185235", + "size_in_bytes": 1846, + "sha256_in_prefix": "adfe6d88e5169286a217b9edbaefcaf34cc35ee573e39ad3738be75148b6bf39" + }, + { + "_path": "share/terminfo/n/news-29", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "9986acb13ff22393b8eb70f84158353588b217de3b1b7c11f3d0039463b46a85", + "size_in_bytes": 1448, + "sha256_in_prefix": "2e390cb95ba5ca3d7d1df58437240034fe6f77fd6b304eb93ef800c9b86c3489" + }, + { + "_path": "share/terminfo/n/news-29-euc", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "016f7cac652495bbc5960e270ef7530ed92babf2bf62c771a9c951f5ff83e02d", + "size_in_bytes": 1460, + "sha256_in_prefix": "8350d30201829c8dc55c28b1c12bad74029a800def8b2f2cfe7e9faf811def94" + }, + { + "_path": "share/terminfo/n/news-29-sjis", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "d7275bd6b3e38cb4af6b0f266a78aa26ad4a3cd5845c898c5f150979a469d233", + "size_in_bytes": 1462, + "sha256_in_prefix": "5f323f3cf40ac3a53a6700bcc881851d1f03003f5815d785db07b076240318b6" + }, + { + "_path": "share/terminfo/n/news-33", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "764ef49cdfcd77b6a838cd724b9724b26d57c1d9b01fd31d08e6cc46d093edb8", + "size_in_bytes": 1440, + "sha256_in_prefix": "7ce579e02e3481a4365ae6fe98fa2cbf0d0aba6c126391db501fc3b37e7d0777" + }, + { + "_path": "share/terminfo/n/news-33-euc", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "2b15a119ff2daf513728304b09ef77bf79bab3000c31d0eaf5ff4545d5d41303", + "size_in_bytes": 1452, + "sha256_in_prefix": "6a6292d2f2ac9055789dbc1facbaa0ebd21fc48697cacd8e52664c97696effc2" + }, + { + "_path": "share/terminfo/n/news-33-sjis", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "bb7d4e7098300e091741b14b78f30eeffd0b729ef681b1207ebff8ba9b59742b", + "size_in_bytes": 1454, + "sha256_in_prefix": "556efb46d2fbd7a45722d32d06ff082cd356e39f308ed75cedbcc73ef7078efb" + }, + { + "_path": "share/terminfo/n/news-42", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "a3c6dd48c688ee398d501184910d9278a786c0f229916649942c65c37126d19d", + "size_in_bytes": 1440, + "sha256_in_prefix": "e39dac245402c654f92f04283d7320b9f942ce32d1b1c3eb39ddd587d0185dec" + }, + { + "_path": "share/terminfo/n/news-42-euc", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "8325a8279e27b884b8cfc9380e889d8b33b04492c4b6b27b9087ca2a8b46eccb", + "size_in_bytes": 1452, + "sha256_in_prefix": "f6c37f43d0b95a62a73d94ccbde13756f4e39d08237f920b6645a92a72242412" + }, + { + "_path": "share/terminfo/n/news-42-sjis", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "e16b5f89163ad2f1e3dc81eaf0567625e9d0e3fe150a93a0fc27cb6112572573", + "size_in_bytes": 1454, + "sha256_in_prefix": "47ba7ef442fbc2e6d02a6a50a5adfb33c906b281888f0acd07c6afee89c60cd8" + }, + { + "_path": "share/terminfo/n/news-old-unk", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "63cd8bca9e89470e9d9a7e52756e9e428a90e1f0b80ce9f50ccf6daedff2fb05", + "size_in_bytes": 1392, + "sha256_in_prefix": "16b4f300992f2cb7da01633cb95dffe6a085933a7f0d8b6715afb1d2f7530812" + }, + { + "_path": "share/terminfo/n/news-unk", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "8c924a48284a288992714d43d46316c96243c4772c4802521878ba635b479109", + "size_in_bytes": 1444, + "sha256_in_prefix": "cfa6cbf22db6d745a8304e9e7a02f2b930ece2165b15e9283e3ad25d8a164bff" + }, + { + "_path": "share/terminfo/n/news28", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "c344c4dc77db985e4e49c30ed5b872fee62a77e0c118a77aa886f697c303a9c0", + "size_in_bytes": 1424, + "sha256_in_prefix": "7c9719692208c30806452fb34ed37240590b3710c9e1964f1d60544c6b9f2e6f" + }, + { + "_path": "share/terminfo/n/news29", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "3dd9bac60016970f8d3e9f3cad8fe1b619943747eea52458543fd6f8de124387", + "size_in_bytes": 1432, + "sha256_in_prefix": "daee27af402cef4240d1ff760f244d925f0e6ab437acc39b9a67fa56fd3ec972" + }, + { + "_path": "share/terminfo/n/nwp512", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "dd40dc367489bcd7917507190a9bf046a51967a25938076c55cecc944b05a19b", + "size_in_bytes": 1496, + "sha256_in_prefix": "aad325a6d1b7d9449f1bf1b81b927a5590e9b160fa4838a8fd3b9138943ea9d4" + }, + { + "_path": "share/terminfo/n/nwp512-a", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "88d0d12356917ac65c396fb215f0b066725d92b67758049257ebb056b63cc10d", + "size_in_bytes": 1437, + "sha256_in_prefix": "5671c5c8781b27caa1b24bd86e144fa1f2c5338e536bce59b4b8aefddf56c3da" + }, + { + "_path": "share/terminfo/n/nwp513", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "e7cdf55079b6ba68b1569f568704ad9dcdfad5d5df31187d3f80d0556df36894", + "size_in_bytes": 1508, + "sha256_in_prefix": "94d77f9a2a28b8ffa8027d2e00e61e726265dcc4dc1dd2be508ddcdb783d81c1" + }, + { + "_path": "share/terminfo/n/nwp513-a", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "f894d0be8fa48959fb276337d9eafba27d2b4cc225e36e07a92d764b72df3c23", + "size_in_bytes": 1488, + "sha256_in_prefix": "e824930d5cc7e1d709596f25d3139da50c60b2356cfed193d37125d5a977264a" + }, + { + "_path": "share/terminfo/n/nwp517", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "49ac5e15ed2e57e0c3ce3a8973801dca40804ddb65ad5853485fed82234b4bc3", + "size_in_bytes": 1892, + "sha256_in_prefix": "106eb54033686457408862762fbbbd13777ab73dc773dcb2b0e8cd48e671c6d4" + }, + { + "_path": "share/terminfo/n/nwp517-w", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "10927058f54248125cb8e16b3fbc070f7e8df26e2057537a4df68a6c6e94ef60", + "size_in_bytes": 1924, + "sha256_in_prefix": "f4d24c1474af1c11252a1b58c38771a34d76a3ad55c6623bdd8022d6479e4692" + }, + { + "_path": "share/terminfo/o/opus3n1+", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "549ed7213e3aa957f8e567d038f0b7f0c989a3ed0ce73520abeab97d215faf6f", + "size_in_bytes": 1572, + "sha256_in_prefix": "1ba0226e12362ffc421966dc409bf1bb8f35f7c0bf4a63188a85e0f7f505f050" + }, + { + "_path": "share/terminfo/o/otek4115", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "426459e84a5e2a24b27e18f4e09956817aef84cf85a91504f5194e86e71c3de3", + "size_in_bytes": 944, + "sha256_in_prefix": "ac15cbb4dbf25a37c791c6ef5d008beab6a311c276f2e89d4f24733a0980f1b3" + }, + { + "_path": "share/terminfo/p/pcmw", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "c83cf4065bc807e4891e62ae5664f975e4ae5e79a34b1654139e10b558c9a782", + "size_in_bytes": 900, + "sha256_in_prefix": "2863aa89d8c27f3f471fb941d947f02e678401a6e512c090dd0eb3c630126744" + }, + { + "_path": "share/terminfo/p/pcvt25", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "6d0f90d83d151a48f7f0017310228c22a11afc67c0684773740604a182b79e48", + "size_in_bytes": 1521, + "sha256_in_prefix": "611587bb940252bba92e63ec8407036aa2ec1bfa7acf4115da9e1fb468c36ac4" + }, + { + "_path": "share/terminfo/p/pcvt25-color", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "a2f092cd40c8d5d121952faca875b2c6d8cf3e1c76f0b8e36efd935b18e3ad7e", + "size_in_bytes": 1793, + "sha256_in_prefix": "0bbb7adb951e286498c3d5e78374900606a037107648ec3977604a68f3acd646" + }, + { + "_path": "share/terminfo/p/pcvt25w", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "d8b34e5c2e9d64af94e102a8ded193a452dea24f1d6bfb53cfba416ecb4d5721", + "size_in_bytes": 1535, + "sha256_in_prefix": "da8b65c808e536aabc43c55797ed2e125caa1282913207dee86a8aed011391fe" + }, + { + "_path": "share/terminfo/p/pcvt28", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "fb785a0ba815929f51addf31617327fe51544029b1f5cd832db50bdace08a2d8", + "size_in_bytes": 1521, + "sha256_in_prefix": "3a9a8d0bf01633e0f3572d05080935997b5c07ccea85dc8c7f1585568380c419" + }, + { + "_path": "share/terminfo/p/pcvt28w", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "5734af9f9e83e1995fc54529a327961ca95faefe449fe109bcd0c3b3b069eb31", + "size_in_bytes": 1535, + "sha256_in_prefix": "5a65db6a9916f169a1eaa6bb98b458b803dc5464742eccae6ffbe3908bfc76d6" + }, + { + "_path": "share/terminfo/p/pcvt35", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "4d2d1b60dab115d6f3f0bdb72e7475f6c1b5ca696c254f2b26f309201f1578f2", + "size_in_bytes": 1521, + "sha256_in_prefix": "b922d9117a3dd66010d004ed3094e57110818f27b6f05a66abb235a64ae01a9c" + }, + { + "_path": "share/terminfo/p/pcvt35w", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "d900776b1a27fff4b4947fb6e5b3677a1a15ed323630f125c33ff899c39faa22", + "size_in_bytes": 1535, + "sha256_in_prefix": "fc9b10f99534e2bf9cd3e50c7242fd734429cd163a8410e987bffd5024446a16" + }, + { + "_path": "share/terminfo/p/pcvt40", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "fb41921e791b12cd4cc8ae1fbb425628e344a1ba477789ca3eee0278bfd29dd8", + "size_in_bytes": 1521, + "sha256_in_prefix": "33cd43afb81028ef97b246e5a346507af503b7d0ea759393120a8f8c7a8ea129" + }, + { + "_path": "share/terminfo/p/pcvt40w", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "3396c76cca83a7d384807bef075c3c1ce9e0b909939911a8ba80f8a78c01ef2d", + "size_in_bytes": 1535, + "sha256_in_prefix": "f2a6afe959238feda9942aaa7f7143ead63cca0774615ead3b5d7d6a04abdda3" + }, + { + "_path": "share/terminfo/p/pcvt43", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "36b71383fb5811e69c7f10e307bcf73347ecefed4d60cc9e721c121c5a06d56f", + "size_in_bytes": 1521, + "sha256_in_prefix": "0f24c769c35c6ac93750ad291b3608918401aa6ea78fc572ac7005d9fad3b7bf" + }, + { + "_path": "share/terminfo/p/pcvt43w", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "d4d43732374ab7ef4e4b9258adc201af61266bd2d7234877696205cf73acd251", + "size_in_bytes": 1535, + "sha256_in_prefix": "5bbf779974568bb985fc12c8ac45f922586c72648c6992b022c7fd4fdd139ae7" + }, + { + "_path": "share/terminfo/p/pcvt50", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "8d7f1600f34d32fd8284f57066936f6d471d9ea5a09c9b7b19e448d4f166eeba", + "size_in_bytes": 1521, + "sha256_in_prefix": "3e78ae066c2b928ede6682a5d0dcec30b7545f6893a60ab2d7e3d63a1e77c37f" + }, + { + "_path": "share/terminfo/p/pcvt50w", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "dedecc0b5b7584b007b34624fa67d8a97b533301d3b3830bf739c2ca71a441e5", + "size_in_bytes": 1535, + "sha256_in_prefix": "2d627e120ddf4b878e74336d4ec8b98b4e9d0bb2a9d3c0dc671cc7bd34ef8f70" + }, + { + "_path": "share/terminfo/p/pcvtXX", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "e696e759afaff61fa2a4623d541f70d0fd6aefd0b774eab0c0411b0964a3a84c", + "size_in_bytes": 1504, + "sha256_in_prefix": "22ec04dfdc8c430a0050123d598d79ade26b7f701c6f34add2a2fa56589f9bd6" + }, + { + "_path": "share/terminfo/t/ti916", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "520f552a52f031c887c1c8eb21aa93bc9ef7aba96d8ecdcdc64464745073acd3", + "size_in_bytes": 1716, + "sha256_in_prefix": "4552e443e3b41a02e49dcc3d621336d91fe482a6a92b9c8989fe0b9d5ec5797f" + }, + { + "_path": "share/terminfo/t/ti916-132", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "3f85e3ab8d950dae50c0d265fa49f4b68ac2ce6eda9998ac5e956884ff2b893d", + "size_in_bytes": 1696, + "sha256_in_prefix": "b4e2b5476e1a663cb1ee717aed25477867534d0b38447a567929bad0797714db" + }, + { + "_path": "share/terminfo/t/ti916-8", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "8a7af18033ba671fd65f79cd6627b1855885c9985914246b23354f9eafd9727d", + "size_in_bytes": 1696, + "sha256_in_prefix": "d19e8468bd36ff23841db7f7c1995059a5c5f0ac780f505c8df01951b4ee3c7f" + }, + { + "_path": "share/terminfo/t/ti916-8-132", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "a659228ff8eb468ce2a2deb4b85a1fbdcc51ebfeecbc27a1f5c55a84e877d456", + "size_in_bytes": 1682, + "sha256_in_prefix": "8ab14569263b412686b0db1dc45b447e5aae04d49a1cddfb3c25a7c5d0772c73" + }, + { + "_path": "share/terminfo/t/tvi9065", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "c08de5a3610d1b114269fc999cfb1cc6fcdcb8230128276aed2951ad2d42c05c", + "size_in_bytes": 2040, + "sha256_in_prefix": "8dd55aa30e26724f56a53b0b63e684703770250259d7cdfa86f5c858b0ece3f2" + }, + { + "_path": "share/terminfo/t/tvi910", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "f13d5b80aa295f02c0fa6716059134c68e9c211fa6850709b8a431a314be3e60", + "size_in_bytes": 795, + "sha256_in_prefix": "6a8fea01236c0a385ec455aff6ca61c0a1825dc6bb0a5d358cc7c6de44517576" + }, + { + "_path": "share/terminfo/t/tvi910+", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "218e5de6c2426c33f5a79248d958ba0a8ab39c0a5f0e52677ea59500f6970bc4", + "size_in_bytes": 817, + "sha256_in_prefix": "6fc1ae1c2535be0fc0e11128c6a7b9d9e68b09ee7aed9c3f5150522f2d6d2425" + }, + { + "_path": "share/terminfo/t/tvi912", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "7d49df0b9265bd495d84aea92ec9dd1fd5aba1a316b429755b9ff51fbbc5829a", + "size_in_bytes": 816, + "sha256_in_prefix": "d36848fe841afd5234614da4385b95ece52954f96c81b96af6946d9feb3c5d7a" + }, + { + "_path": "share/terminfo/t/tvi912b", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "84187c890987461bd7694aac4856032c21927f15f1a84a972f590832b88d0cd3", + "size_in_bytes": 1223, + "sha256_in_prefix": "4ad0b6e5c307b86b136858cec08c60175cea0a0689670fd159870615fae64268" + }, + { + "_path": "share/terminfo/t/tvi912b-2p", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "136294eeecf470d83769fe2fb951676e93ed07f9b131990e4ac4ab72cee17691", + "size_in_bytes": 1304, + "sha256_in_prefix": "659111284b01acd3e6208a3381c6ecc2beec7d60bf40922e5f84a4b44433847d" + }, + { + "_path": "share/terminfo/t/tvi912b-2p-mc", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "202a7a71b84f3b29069a939fc2ef134d4eb06eaeeae6dc924949360da532ceaa", + "size_in_bytes": 1423, + "sha256_in_prefix": "a1f8570e7d3ae7e07829736730a5ca619dfcb53f80902168f0bc098386845ea7" + }, + { + "_path": "share/terminfo/t/tvi912b-2p-p", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "66b5b47886bade642cc7e459505c2ebe7b448253b5f3912e7786acf842e93f9f", + "size_in_bytes": 1307, + "sha256_in_prefix": "d50ba2d42820d6a864d48c429cef78c1eed5cc65f9fc4ab1e1440c8042b8cc78" + }, + { + "_path": "share/terminfo/t/tvi912b-2p-unk", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "851d7d7e9bbc4ef86069a7bffcfa95300292c5f16e0ccca1214939a690aa3fd9", + "size_in_bytes": 1300, + "sha256_in_prefix": "f684d9e3ef8ee1ee1b5cc1c5a2762b8210e777df5e079d3af0e158cc7d80d051" + }, + { + "_path": "share/terminfo/t/tvi912b-mc", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "c9e97a5945168351b41ddde3c908d6612d8b4e132d84ebe90b2301069d6ecd2a", + "size_in_bytes": 1312, + "sha256_in_prefix": "fbdffa452747bad96d657750a85acfc757b1583065818380e470dc7131d12df3" + }, + { + "_path": "share/terminfo/t/tvi912b-p", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "26e1df1eb94fd2f6624f945dafbf873e924706e2117c1488743485f2c4825394", + "size_in_bytes": 1198, + "sha256_in_prefix": "d1b01c6ee928bbcd5a0150dc3dac32fe121b49c5a5b4eece46da80ca0b2e7a89" + }, + { + "_path": "share/terminfo/t/tvi912b-unk", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "7550f7eff1126dfa9f0bbd01cd671a947c6f1bfbe72406e2eba235710e196825", + "size_in_bytes": 1187, + "sha256_in_prefix": "33d4c65dafbfbdb25a79574e161390185831cf40a4b9be68ec9ed5cb6ff49c25" + }, + { + "_path": "share/terminfo/t/tvi912b-vb", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "4728c4c21e95c999050814b1a04d7d231c0eada5e2831a64c6977234a571dc0f", + "size_in_bytes": 1329, + "sha256_in_prefix": "824001204975971273c8e70bdbdcd3f38256ac8a7a2bfd2956e1bde99e00a3b6" + }, + { + "_path": "share/terminfo/t/tvi912b-vb-mc", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "3c9f2d83f4bb2f66805e6dbef01c1a004b5a3f41aca573670a3d3b19af659120", + "size_in_bytes": 1446, + "sha256_in_prefix": "0f9b74583a2525f502d37fcd3edfda5713dc8c678cdc8afd55bd88301828bab4" + }, + { + "_path": "share/terminfo/t/tvi912b-vb-p", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "9eaade0bf3844a8660b3cc4422eeaa8428f7218b6a9a1016d495caaf899229e3", + "size_in_bytes": 1330, + "sha256_in_prefix": "06f6b77fafe760b199e9d3fcef4811ab23ab203c62a4805c7621b538287b1673" + }, + { + "_path": "share/terminfo/t/tvi912b-vb-unk", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "8ca721d2d34fd86d76f72a1b26f8c0b03c0592963eb14fe4a3957d9fb8a18287", + "size_in_bytes": 1323, + "sha256_in_prefix": "669040f7c993be757c8a2f22fea3dd4110f177dd6c2e675c86143b46e7f50979" + }, + { + "_path": "share/terminfo/t/tvi912cc", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "5f417a976c430c939d1f2eda6531ee2a9e3d4d9f144d95130a4486d3464287bd", + "size_in_bytes": 1158, + "sha256_in_prefix": "f7f0fce98e3ef0ff9306c5f7830dae0bdf1b883e1fe07610f21b5cb7ea7a7165" + }, + { + "_path": "share/terminfo/t/tvi920b", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "44bf5d566fb458ee2c4f3de98464fe2a1a88c9508c2d836c17014069c511b462", + "size_in_bytes": 1311, + "sha256_in_prefix": "0c2c538f7f70b9efa43f8d77e0cd782e55583291e3d3bb26e7af83c95778a2d9" + }, + { + "_path": "share/terminfo/t/tvi920b-2p", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "825a7e856c7bf8bfe9e691641a9cfc810e0c39b0dfe1a89908bece33b878a6ba", + "size_in_bytes": 1392, + "sha256_in_prefix": "42debbde82ef9e606c7c39fe8f1906db8865b28c81b99385f9aea70c244db25d" + }, + { + "_path": "share/terminfo/t/tvi920b-2p-mc", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "3882128b734291506002d8ed5f05d0753f3774e2000349e1f3bc605c41b92320", + "size_in_bytes": 1511, + "sha256_in_prefix": "a3eb5235d53de64bc41b6040cbdbe94cb7640fadfb8aa689cf7b4adeae299490" + }, + { + "_path": "share/terminfo/t/tvi920b-2p-p", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "556741aceff77c064b6cb448b1b1f6c87e98c5835bacfa174a01d3efb6c58259", + "size_in_bytes": 1395, + "sha256_in_prefix": "671b60240711149fbc72f3ebf01fd995a4a5ac7c4b3f6eab5e7cbf751c6ed827" + }, + { + "_path": "share/terminfo/t/tvi920b-2p-unk", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "df69428616fc165b46fa93303657f827675eb9eeefa4ac5f80b74194d04bea8b", + "size_in_bytes": 1388, + "sha256_in_prefix": "79900318bc9e0684923fc17a3c17c263c06c701cfe22acbb861e310427d7650d" + }, + { + "_path": "share/terminfo/t/tvi920b-mc", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "169b2b7c7d60e694b3888928c485d673e1fb5c5e5aa97eca52c30d5aa6ece6ad", + "size_in_bytes": 1400, + "sha256_in_prefix": "160147ad38bbd1e06956581401f4141396d52a7f85123561d7a14e16c4eb8244" + }, + { + "_path": "share/terminfo/t/tvi920b-p", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "36ec3e6f63bf5443d65f095a78be9d452ffa161ad7dfd9aa375148c544a5ef5c", + "size_in_bytes": 1286, + "sha256_in_prefix": "cf26e560d2d5990ef857f6127c2104d04a8213c2f7e559c7449ddd1740f474f8" + }, + { + "_path": "share/terminfo/t/tvi920b-unk", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "a4fef780e962b146e0ac18d0e186f2feb99d051d448b4da380f876c9ca4503ec", + "size_in_bytes": 1275, + "sha256_in_prefix": "b6a743a65fdd1a2dbccfaf497c69cd612a2292a1b073b783a2f9295fbb38f64d" + }, + { + "_path": "share/terminfo/t/tvi920b-vb", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "775bdf55686307a62f75df0927b2a4749cabd5802984c0648a9961c1b7caa5be", + "size_in_bytes": 1417, + "sha256_in_prefix": "c03f10dacf75619a1adf88a860fb6d6c3917ab769803adafd09ba440883acee5" + }, + { + "_path": "share/terminfo/t/tvi920b-vb-mc", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "f02576f76309b64f256b5defae9ed44646c29ae00b789ed99e4c007df87969f6", + "size_in_bytes": 1534, + "sha256_in_prefix": "92969518ef46d0c95613b4bb52feb9f9ebc2c178bdaed8e3b49f0c1c1bacb97d" + }, + { + "_path": "share/terminfo/t/tvi920b-vb-p", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "ecdeecd567fcefcd77d51309fd5a0697ddc98efe569ada676a09ddb07b5e69f7", + "size_in_bytes": 1418, + "sha256_in_prefix": "0013d5547a6c5e869159efe4d3fa94183a77ea0677426d0b5fb027623c071e76" + }, + { + "_path": "share/terminfo/t/tvi920b-vb-unk", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "60b6ce374ec8dddb3a6fccb96ff37f7d914c222f88fd7b9cda96d77288bd5203", + "size_in_bytes": 1411, + "sha256_in_prefix": "bfd1ee8a5afcd59f1b6abaa8fc2cc78c9741af40af0ed0af62d98f4cab2f8bd1" + }, + { + "_path": "share/terminfo/t/tvi921", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "a8d1176ead6257d2e12f087d92f32dcd384419afeb59702026d99785f666b65a", + "size_in_bytes": 892, + "sha256_in_prefix": "140426736edb76802c11edb7365efec639a0f84abe6f8c2c2a68d0fe4a22f07f" + }, + { + "_path": "share/terminfo/t/tvi924", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "8aced180a17ab133fb7dead8d0119f7a0c35beba844ca6da967ca9c3ca6112b7", + "size_in_bytes": 1138, + "sha256_in_prefix": "98222759d6cfac19901e4811e2a3c76eab232b1beb586e12965cd3c45bd64645" + }, + { + "_path": "share/terminfo/t/tvi92B", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "e0a5321fd258d3fad31ffcda5225345ff58df522ec5cb37e1883bcdcb9c7e1bc", + "size_in_bytes": 880, + "sha256_in_prefix": "99e664bb89ebed74ab2855c2e6801fb6c825ecacc1ebdc12936ba38127a406f4" + }, + { + "_path": "share/terminfo/t/tvi92D", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "c6a5da69dc8b6358a5de6345819deffe70ab02cd3bbf9c7f993ce0f0263c403a", + "size_in_bytes": 868, + "sha256_in_prefix": "ad70dd5a899e29f22246ced6d2244b28129442f4623acd7b3905ce0f76c5b3d9" + }, + { + "_path": "share/terminfo/t/tvipt", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "8557fc1c770214988131bce6f19932399dc5d7fbebe993b826267540583c2510", + "size_in_bytes": 717, + "sha256_in_prefix": "8d0d938003cf30520004b007d0a0070d9a7404a4bb7cd5ec660cd47c2f4dc0b6" + }, + { + "_path": "share/terminfo/u/uniterm", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "0bd8986f4740ddec4349771665dec9d9d20753424a80cb2e176d9c3e4a1782f6", + "size_in_bytes": 1682, + "sha256_in_prefix": "5b380ead4de988fd112c2acd156f9e88e72c8eb50aebc432aa704891baba9bbf" + }, + { + "_path": "share/terminfo/u/uts30", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "e947b890e8d6272bd22c3e7c18e47fc049bddec21aad8bfb5b06de03ee74676d", + "size_in_bytes": 1026, + "sha256_in_prefix": "1bf8e3df669c6744959640bf1fd87061ab4a2fa1df50ac4ccd6bcdb71c406644" + }, + { + "_path": "share/terminfo/v/versaterm", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "a1d7dfd3bfce484edcb12a7d7ea32a77b61f7bc3963546ef6bd1937853faf027", + "size_in_bytes": 928, + "sha256_in_prefix": "3d90967878fe88c3a45d7c36711e066c6aa270cabc146f240b7a835a0193ba62" + }, + { + "_path": "share/terminfo/v/vt200-js", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "dfa033773a4d51039f7d1066954bd789e86edc4c97037a8d97f59fdf3ba824b8", + "size_in_bytes": 918, + "sha256_in_prefix": "93622715bb54022016885c2d2a81287bcc39d313198fef7ded7970085b36cb49" + }, + { + "_path": "share/terminfo/v/vt220", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "070ed3b33d36a5a53f94fb4dc8ea49bdbabb42d530f16c37f74358e755e4b230", + "size_in_bytes": 1642, + "sha256_in_prefix": "c00ea0bf0c0387f5c686e64808c7ee04d8ff422e9b1cf7682860710d1afe3188" + }, + { + "_path": "share/terminfo/v/vt220-8bit", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "3e96a2a83e425b629555bde78618822d85305bb7a42e7926b07b7d549cf65444", + "size_in_bytes": 1516, + "sha256_in_prefix": "218e1ac54b2ba1306064eed04bb8f751a0574c263b9177acb7f04b92c00f8fe9" + }, + { + "_path": "share/terminfo/v/vt220-base", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "a48d9e927c6ca48c62a8583ee704bdf666ed3c2e28f7fb1d8a8cc9a65a9265a8", + "size_in_bytes": 1640, + "sha256_in_prefix": "0fc46da8f06924cc5b2975a0314d08a930a51a121f66eb101fc223dc05a83f08" + }, + { + "_path": "share/terminfo/v/vt220-nam", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "bf455ce7aa4db817928a00f85c009334def17a8e5885c97dd4df00912eb0c0f8", + "size_in_bytes": 1708, + "sha256_in_prefix": "b80a7187eb29f7f2855a6a5d37dc94a667a9eb65cbb3762252475514a5e25047" + }, + { + "_path": "share/terminfo/v/vt220-old", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "34f230e95aa6558baaca9abe4fd33156ab3ea4f5ee974386bd3806b651e3474d", + "size_in_bytes": 1977, + "sha256_in_prefix": "90c08eb7bfd965fdf5fff957bf612139355573b67352bd22e35f99f8e0910830" + }, + { + "_path": "share/terminfo/v/vt220-w", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "c080763ac6e41929392d4c3ffc9f8c70796439a5edb7a422eacb46fc6c7d324e", + "size_in_bytes": 1666, + "sha256_in_prefix": "9e02f7741f09f623598436f2a83ed15b4a65b875a4d7e005422df142fc62e2f1" + }, + { + "_path": "share/terminfo/v/vt220d", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "813888d34f13696ce5de63f35c0ecc207e2dd22b8c0470e7300f59fc2dcece2a", + "size_in_bytes": 2039, + "sha256_in_prefix": "c14959be0175bae22e2cb8c38721fe6dfe8bf0b5e7f3818640e9998417b2e613" + }, + { + "_path": "share/terminfo/v/vt320", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "1adf4adbebe70cc57d5757fc24f20abb20cb92818d01288672dc0b97fc9bf610", + "size_in_bytes": 1790, + "sha256_in_prefix": "2b38cc0ce8570e22b797660efb00812755730dc2101172d69d41164f0091e219" + }, + { + "_path": "share/terminfo/v/vt320-k311", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "2db4f0db1d948c90d8b5d5be40f67883dcdc117b494426139364d454debd67c8", + "size_in_bytes": 1199, + "sha256_in_prefix": "ddc636e34816a3283c2dcedb672e863425e51b3f2c1f59905fbea59ae998f6ef" + }, + { + "_path": "share/terminfo/v/vt320-nam", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "34157d91f9c7b988d93acd0ec4955ffa81b4b6190122ca52bcb2a136105ce4af", + "size_in_bytes": 1828, + "sha256_in_prefix": "7fb69f99b96e827f30d43b967b0b9b04c95ca209ec54b4e8c4804084f83c03a4" + }, + { + "_path": "share/terminfo/v/vt320-w", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "8b03058270b1532495e294697268097cb5350ca711a8d04f572e747265247d7f", + "size_in_bytes": 1800, + "sha256_in_prefix": "670ea15ebd3df184b1cf61ae1da13932b8bd965e8de8e2c3964d5d457c6cc027" + }, + { + "_path": "share/terminfo/v/vt320-w-nam", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "af183e2c04cb1706dfcf74640f7be4825d2ae673e28d3dfa0655a942ad6c2c0b", + "size_in_bytes": 1818, + "sha256_in_prefix": "177306ac453e7b33952aebc567f2b0f34440473eab3cc1d11e160ae61b088486" + }, + { + "_path": "share/terminfo/v/vt320nam", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "68c5afc6d302be845cb86bfbf3ba4fe9292aa84f8cb67d52565202295dd1514b", + "size_in_bytes": 1702, + "sha256_in_prefix": "99dc18a94be119f99fb29768ca1f1fac5b035902d868a9809d714cc9ad20a4b3" + }, + { + "_path": "share/terminfo/v/vt340", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "6a2b91a4dce06c92a4e0ab8234d580b05548f85565ae2152d9fec8f4ff628099", + "size_in_bytes": 1306, + "sha256_in_prefix": "119ecc53f25bcabd8712f5fa06b60844178b43beca6fe20cd9fc2342a1a8fd88" + }, + { + "_path": "share/terminfo/v/vt400", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "54c7c8acb03efa6a99663f062129e7a1125168adc340f4fa23d69ffb633b5823", + "size_in_bytes": 1316, + "sha256_in_prefix": "7d21d0b6cdd350f94514759e48cb293a2588d51a83fae1c1b098ccfff4b70912" + }, + { + "_path": "share/terminfo/v/vt420", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "403387ee6db01dd068db6e3d514cc969b2697267525289b9b2a9f71c0eddb31a", + "size_in_bytes": 2191, + "sha256_in_prefix": "faea6e8afc567b4979862488fcd74c5108a1fd49a88cc8961950bc42e95a50a8" + }, + { + "_path": "share/terminfo/v/vt420f", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "85dd53296d79eb3d8ea7cff6f11a586f57dea0f42ba488796edf49627fc37744", + "size_in_bytes": 2322, + "sha256_in_prefix": "dc68cd38ec5b41949dc1b54ff88d72f767243e4283e3910c9e9bbc46f1c5c4e3" + }, + { + "_path": "share/terminfo/v/vt420pc", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "f9990886b880818d320c85d9b0b616c6713479fb079ae554c4ecde9919d2bccd", + "size_in_bytes": 2640, + "sha256_in_prefix": "4dcc99a24796bcd285d7554429f8ab25b2088e601f5bbd0464175ec404562cfe" + }, + { + "_path": "share/terminfo/v/vt420pcdos", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "f300a389ee10e9e4af815e3dceb91d98a5085aabcfdef89ac5f28dc1b5b936eb", + "size_in_bytes": 2621, + "sha256_in_prefix": "0f73c2563f2116be887ef859f6a5288978f0858801529edb36f82719f2458181" + }, + { + "_path": "share/terminfo/v/vt510", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "32c33a03808fcf0239af88e9b722f529fb5b0628d1ff7841511daf1f27ea7d8d", + "size_in_bytes": 2191, + "sha256_in_prefix": "dd063ddd5ca49bbd534ddd02116b90f9bc4f0030a605db7470fc8b7754dfd496" + }, + { + "_path": "share/terminfo/v/vt510pc", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "869852eec6515f66b5274a6ee86f6d331231815340ff9ee3c753fd518200cf98", + "size_in_bytes": 2640, + "sha256_in_prefix": "04f317d8dbd39d17e20fde616cebf5e6f4f4e04a3b980003be3a526453b5848f" + }, + { + "_path": "share/terminfo/v/vt510pcdos", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "bf6e9cb40dea33a0702af0c50fd30f5bb7db3f8973a91e6449a67049706d5676", + "size_in_bytes": 2619, + "sha256_in_prefix": "392411f57fb46e68d4558c5c56457e6be1d2e522b58907ddca0cf12db8e78586" + }, + { + "_path": "share/terminfo/v/vt520", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "020e2f03dc2e1d4975f2eae6eb96f8983f7a01e0e55c0df2f2e42f59b9274c1f", + "size_in_bytes": 2225, + "sha256_in_prefix": "23bd7030d3cfe2cab8b99587cf7efce0968144f2b01b86a3e85916b207a99a6d" + }, + { + "_path": "share/terminfo/v/vt520ansi", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "96e23ca10bed5398d47e1985f2e0e34d4bdfcfeaafc0f44251dc14308de618bb", + "size_in_bytes": 2406, + "sha256_in_prefix": "e525477e85bafaef2c04d93ac4a6579cd41238b1b2d72b83ba9d2a9daec15c60" + }, + { + "_path": "share/terminfo/v/vt525", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "8bb4d5c7917cfe0e4f8f477cb6d1f55f0f15bb978f86bab9781ef6be17c26fe8", + "size_in_bytes": 2225, + "sha256_in_prefix": "a9103e183fb7eea15739292d8af3dae218de4cda1539150f97866013dd2c2e9c" + }, + { + "_path": "share/terminfo/w/wsvt25", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "9c6bde26c64bb14fef42d2fd5734f3040a52dfafcf607880de0afad44fe8d6e9", + "size_in_bytes": 1846, + "sha256_in_prefix": "13ce4c5fda817711cb1d10e8a26837ef576cbb027906acb7d1d5d6fe01d646ae" + }, + { + "_path": "share/terminfo/w/wsvt25m", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "3fb64163c000d649616c9646dff902e9e648cd152b006a18bb449f5cd1389497", + "size_in_bytes": 1856, + "sha256_in_prefix": "37fb1fc92d65ebfb5cdc5908498f900b44d727337a7d241062b45c3e46a3c39d" + }, + { + "_path": "share/terminfo/x/x68k", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "e62b8fe270f4185d3b27de34c67f7aeea61c70cb5c011445f81420bf503db505", + "size_in_bytes": 1641, + "sha256_in_prefix": "f9780bd8f8eead7a917ddeea19a3355f20cfb7aa26a0c37f68e25131f6612f91" + }, + { + "_path": "share/terminfo/z/z29a", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "9ced61ac45050e36317828a48f3d3ac84468dd9c2c05b308584f9c4bb7f9ea68", + "size_in_bytes": 1664, + "sha256_in_prefix": "bc30642cb68bcf014b6d611d87ad353796580d363d43d6096ed77fc86a783c49" + }, + { + "_path": "share/terminfo/z/z29a-kc-uc", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "911dff0d5f20ff3c2ee7ca7036c3ee9ca77ab4952c94e312c1687400cd959fca", + "size_in_bytes": 1683, + "sha256_in_prefix": "60372c3be42f17f4de7e085d730b7789bf26726b1810772b7e8e54fc35edc1a8" + }, + { + "_path": "share/terminfo/z/z29a-nkc-bc", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "549eeed181972e2721f9f7cec2dcc9040de20aac101e03f71987b789a2955a57", + "size_in_bytes": 1686, + "sha256_in_prefix": "02a68317075b2c2b19d04f0131e95e7d304067db4f5cba1a81ad8f16c57bd756" + }, + { + "_path": "share/terminfo/z/z29a-nkc-uc", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "13a6f8d5eb1be5394271a44acc875efa4814b8c85c187b4475bfb10ab7af925e", + "size_in_bytes": 1692, + "sha256_in_prefix": "0b4c91ec853012bd42e4cfc23373cb276a0f89e5c29933bf2da867cd1ae7b384" + }, + { + "_path": "share/terminfo/z/z340", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "5eb3509fc9c2635ed7968dfce812af1a2e1eab5aa57c318aed03efe0e0d07e32", + "size_in_bytes": 1802, + "sha256_in_prefix": "ca89b7f3bde87baa388a602afc9076fda2b3d9246c68fbd0da4a41239841b8b3" + }, + { + "_path": "share/terminfo/z/z340-nam", + "prefix_placeholder": "/croot/ncurses_1753947418352/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "4f08aaa501e61e1f6f0b065eeae5fcca22bd69fd3931b4181a62759c591047df", + "size_in_bytes": 1830, + "sha256_in_prefix": "7e42e7a48a6e1536c91b9116d5ffbc174db31d29d970449e03bbe48a7738594b" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/ncurses-6.5-h7934f7d_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/nlohmann_json-3.11.2-h6a678d5_0.json b/miniconda3/conda-meta/nlohmann_json-3.11.2-h6a678d5_0.json new file mode 100644 index 0000000000000000000000000000000000000000..745043ab6cbc2c500fdb9cff25b740dde0558c27 --- /dev/null +++ b/miniconda3/conda-meta/nlohmann_json-3.11.2-h6a678d5_0.json @@ -0,0 +1,92 @@ +{ + "name": "nlohmann_json", + "version": "3.11.2", + "build": "h6a678d5_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "nlohmann_json-3.11.2-h6a678d5_0.conda", + "md5": "36890f7abd98066b607211b1773e6343", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/nlohmann_json-3.11.2-h6a678d5_0.conda", + "sha256": "fd26e0dadf88a0de5851d059eddc2079defdda748a74b32a36393dfe25a8a48a", + "arch": "x86_64", + "platform": "linux", + "depends": [], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1680082329000, + "size": 127326, + "requested_spec": "pkgs/main/linux-64::nlohmann_json==3.11.2=h6a678d5_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/nlohmann_json-3.11.2-h6a678d5_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/nlohmann_json-3.11.2-h6a678d5_0", + "files": [ + "include/nlohmann/adl_serializer.hpp", + "include/nlohmann/byte_container_with_subtype.hpp", + "include/nlohmann/detail/abi_macros.hpp", + "include/nlohmann/detail/conversions/from_json.hpp", + "include/nlohmann/detail/conversions/to_chars.hpp", + "include/nlohmann/detail/conversions/to_json.hpp", + "include/nlohmann/detail/exceptions.hpp", + "include/nlohmann/detail/hash.hpp", + "include/nlohmann/detail/input/binary_reader.hpp", + "include/nlohmann/detail/input/input_adapters.hpp", + "include/nlohmann/detail/input/json_sax.hpp", + "include/nlohmann/detail/input/lexer.hpp", + "include/nlohmann/detail/input/parser.hpp", + "include/nlohmann/detail/input/position_t.hpp", + "include/nlohmann/detail/iterators/internal_iterator.hpp", + "include/nlohmann/detail/iterators/iter_impl.hpp", + "include/nlohmann/detail/iterators/iteration_proxy.hpp", + "include/nlohmann/detail/iterators/iterator_traits.hpp", + "include/nlohmann/detail/iterators/json_reverse_iterator.hpp", + "include/nlohmann/detail/iterators/primitive_iterator.hpp", + "include/nlohmann/detail/json_pointer.hpp", + "include/nlohmann/detail/json_ref.hpp", + "include/nlohmann/detail/macro_scope.hpp", + "include/nlohmann/detail/macro_unscope.hpp", + "include/nlohmann/detail/meta/call_std/begin.hpp", + "include/nlohmann/detail/meta/call_std/end.hpp", + "include/nlohmann/detail/meta/cpp_future.hpp", + "include/nlohmann/detail/meta/detected.hpp", + "include/nlohmann/detail/meta/identity_tag.hpp", + "include/nlohmann/detail/meta/is_sax.hpp", + "include/nlohmann/detail/meta/std_fs.hpp", + "include/nlohmann/detail/meta/type_traits.hpp", + "include/nlohmann/detail/meta/void_t.hpp", + "include/nlohmann/detail/output/binary_writer.hpp", + "include/nlohmann/detail/output/output_adapters.hpp", + "include/nlohmann/detail/output/serializer.hpp", + "include/nlohmann/detail/string_concat.hpp", + "include/nlohmann/detail/string_escape.hpp", + "include/nlohmann/detail/value_t.hpp", + "include/nlohmann/json.hpp", + "include/nlohmann/json_fwd.hpp", + "include/nlohmann/ordered_map.hpp", + "include/nlohmann/thirdparty/hedley/hedley.hpp", + "include/nlohmann/thirdparty/hedley/hedley_undef.hpp", + "include/test_data.hpp", + "share/cmake/nlohmann_json/nlohmann_jsonConfig.cmake", + "share/cmake/nlohmann_json/nlohmann_jsonConfigVersion.cmake", + "share/cmake/nlohmann_json/nlohmann_jsonTargets.cmake", + "share/pkgconfig/nlohmann_json.pc" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "share/pkgconfig/nlohmann_json.pc", + "prefix_placeholder": "/croot/nlohmann_json_1680082006773/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pla", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "8d2423852a2747cee076112bf2a0549b21c94d6ecb0f3e7cb8b58e8d86b6c606", + "size_in_bytes": 343, + "sha256_in_prefix": "d28a20943b26a6b82b5e34abb8166195eec763f3b7cd2680854723b5c11edb81" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/nlohmann_json-3.11.2-h6a678d5_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/openssl-3.5.5-h1b28b03_0.json b/miniconda3/conda-meta/openssl-3.5.5-h1b28b03_0.json new file mode 100644 index 0000000000000000000000000000000000000000..e6190e4873e6501290691e06beae07e5fbedf516 --- /dev/null +++ b/miniconda3/conda-meta/openssl-3.5.5-h1b28b03_0.json @@ -0,0 +1,254 @@ +{ + "name": "openssl", + "version": "3.5.5", + "build": "h1b28b03_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "openssl-3.5.5-h1b28b03_0.conda", + "md5": "96c41caadc229cc56c4fbcb26bb5b8cd", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/openssl-3.5.5-h1b28b03_0.conda", + "sha256": "0dcbe182b4b5270e2c5b35ec90418ae7e2de7a925f8617fdc939dee732a21b8b", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "ca-certificates", + "libgcc >=14" + ], + "constrains": [], + "license": "Apache-2.0", + "license_family": "Apache", + "timestamp": 1772119658000, + "size": 5818141, + "requested_spec": "pkgs/main/linux-64::openssl==3.5.5=h1b28b03_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/openssl-3.5.5-h1b28b03_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/openssl-3.5.5-h1b28b03_0", + "files": [ + "bin/c_rehash", + "bin/openssl", + "include/openssl/aes.h", + "include/openssl/asn1.h", + "include/openssl/asn1err.h", + "include/openssl/asn1t.h", + "include/openssl/async.h", + "include/openssl/asyncerr.h", + "include/openssl/bio.h", + "include/openssl/bioerr.h", + "include/openssl/blowfish.h", + "include/openssl/bn.h", + "include/openssl/bnerr.h", + "include/openssl/buffer.h", + "include/openssl/buffererr.h", + "include/openssl/byteorder.h", + "include/openssl/camellia.h", + "include/openssl/cast.h", + "include/openssl/cmac.h", + "include/openssl/cmp.h", + "include/openssl/cmp_util.h", + "include/openssl/cmperr.h", + "include/openssl/cms.h", + "include/openssl/cmserr.h", + "include/openssl/comp.h", + "include/openssl/comperr.h", + "include/openssl/conf.h", + "include/openssl/conf_api.h", + "include/openssl/conferr.h", + "include/openssl/configuration.h", + "include/openssl/conftypes.h", + "include/openssl/core.h", + "include/openssl/core_dispatch.h", + "include/openssl/core_names.h", + "include/openssl/core_object.h", + "include/openssl/crmf.h", + "include/openssl/crmferr.h", + "include/openssl/crypto.h", + "include/openssl/cryptoerr.h", + "include/openssl/cryptoerr_legacy.h", + "include/openssl/ct.h", + "include/openssl/cterr.h", + "include/openssl/decoder.h", + "include/openssl/decodererr.h", + "include/openssl/des.h", + "include/openssl/dh.h", + "include/openssl/dherr.h", + "include/openssl/dsa.h", + "include/openssl/dsaerr.h", + "include/openssl/dtls1.h", + "include/openssl/e_os2.h", + "include/openssl/e_ostime.h", + "include/openssl/ebcdic.h", + "include/openssl/ec.h", + "include/openssl/ecdh.h", + "include/openssl/ecdsa.h", + "include/openssl/ecerr.h", + "include/openssl/encoder.h", + "include/openssl/encodererr.h", + "include/openssl/engine.h", + "include/openssl/engineerr.h", + "include/openssl/err.h", + "include/openssl/ess.h", + "include/openssl/esserr.h", + "include/openssl/evp.h", + "include/openssl/evperr.h", + "include/openssl/fips_names.h", + "include/openssl/fipskey.h", + "include/openssl/hmac.h", + "include/openssl/hpke.h", + "include/openssl/http.h", + "include/openssl/httperr.h", + "include/openssl/idea.h", + "include/openssl/indicator.h", + "include/openssl/kdf.h", + "include/openssl/kdferr.h", + "include/openssl/lhash.h", + "include/openssl/macros.h", + "include/openssl/md2.h", + "include/openssl/md4.h", + "include/openssl/md5.h", + "include/openssl/mdc2.h", + "include/openssl/ml_kem.h", + "include/openssl/modes.h", + "include/openssl/obj_mac.h", + "include/openssl/objects.h", + "include/openssl/objectserr.h", + "include/openssl/ocsp.h", + "include/openssl/ocsperr.h", + "include/openssl/opensslconf.h", + "include/openssl/opensslv.h", + "include/openssl/ossl_typ.h", + "include/openssl/param_build.h", + "include/openssl/params.h", + "include/openssl/pem.h", + "include/openssl/pem2.h", + "include/openssl/pemerr.h", + "include/openssl/pkcs12.h", + "include/openssl/pkcs12err.h", + "include/openssl/pkcs7.h", + "include/openssl/pkcs7err.h", + "include/openssl/prov_ssl.h", + "include/openssl/proverr.h", + "include/openssl/provider.h", + "include/openssl/quic.h", + "include/openssl/rand.h", + "include/openssl/randerr.h", + "include/openssl/rc2.h", + "include/openssl/rc4.h", + "include/openssl/rc5.h", + "include/openssl/ripemd.h", + "include/openssl/rsa.h", + "include/openssl/rsaerr.h", + "include/openssl/safestack.h", + "include/openssl/seed.h", + "include/openssl/self_test.h", + "include/openssl/sha.h", + "include/openssl/srp.h", + "include/openssl/srtp.h", + "include/openssl/ssl.h", + "include/openssl/ssl2.h", + "include/openssl/ssl3.h", + "include/openssl/sslerr.h", + "include/openssl/sslerr_legacy.h", + "include/openssl/stack.h", + "include/openssl/store.h", + "include/openssl/storeerr.h", + "include/openssl/symhacks.h", + "include/openssl/thread.h", + "include/openssl/tls1.h", + "include/openssl/trace.h", + "include/openssl/ts.h", + "include/openssl/tserr.h", + "include/openssl/txt_db.h", + "include/openssl/types.h", + "include/openssl/ui.h", + "include/openssl/uierr.h", + "include/openssl/whrlpool.h", + "include/openssl/x509.h", + "include/openssl/x509_acert.h", + "include/openssl/x509_vfy.h", + "include/openssl/x509err.h", + "include/openssl/x509v3.h", + "include/openssl/x509v3err.h", + "lib/cmake/OpenSSL/OpenSSLConfig.cmake", + "lib/cmake/OpenSSL/OpenSSLConfigVersion.cmake", + "lib/libcrypto.a", + "lib/libcrypto.so", + "lib/libcrypto.so.3", + "lib/libssl.a", + "lib/libssl.so", + "lib/libssl.so.3", + "lib/pkgconfig/libcrypto.pc", + "lib/pkgconfig/libssl.pc", + "lib/pkgconfig/openssl.pc", + "ssl/ct_log_list.cnf", + "ssl/ct_log_list.cnf.dist", + "ssl/misc/CA.pl", + "ssl/misc/tsget", + "ssl/misc/tsget.pl", + "ssl/openssl.cnf", + "ssl/openssl.cnf.dist" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/c_rehash", + "prefix_placeholder": "/home/task_177211824080552/croot/openssl_1772119137308/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pla", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "cbc376e133bcf3c00f41995b10efe86ca3db02300daa9f8aa3e191ab38d093ae", + "size_in_bytes": 7244, + "sha256_in_prefix": "5e7893b4665f5033a3c93fed996544c037ff3bc58aa59cb65eb11135ef90ca53" + }, + { + "_path": "lib/libcrypto.a", + "prefix_placeholder": "/home/task_177211824080552/croot/openssl_1772119137308/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pla", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "62c6b5421d0641309c19af4a41b093e166357f95d9851ec7850b350194ab6e74", + "size_in_bytes": 14315674, + "sha256_in_prefix": "51811a6704fe3a53da9b80cf05dbb6b8d93d185a0db8dd77e6ff8794dcbc8d21" + }, + { + "_path": "lib/libcrypto.so.3", + "prefix_placeholder": "/home/task_177211824080552/croot/openssl_1772119137308/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pla", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "2de5559a6c904e20e3bb99a83ca0640e0e241577a8a807263276be6970db256f", + "size_in_bytes": 7093048, + "sha256_in_prefix": "19bfaba46bb3b41ee2ae124cca66e0e8f80ddcbfdec00532d02b81e23adaac8a" + }, + { + "_path": "lib/pkgconfig/libcrypto.pc", + "prefix_placeholder": "/home/task_177211824080552/croot/openssl_1772119137308/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pla", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "549790cb57af9cdf401fe50f7e21244c205e0ee6bf2159299076628ecd797d7c", + "size_in_bytes": 567, + "sha256_in_prefix": "64a91cba8d0f87b1f6d54a85f127697d27eca8047d049d91ba31a79f32800587" + }, + { + "_path": "lib/pkgconfig/libssl.pc", + "prefix_placeholder": "/home/task_177211824080552/croot/openssl_1772119137308/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pla", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "a3dface6062a0c4521135d3ca97b93af1c3636363efbefc382278fc2235086df", + "size_in_bytes": 515, + "sha256_in_prefix": "3d615e8cddbffe1c45bc9a105777a8806ea5b2cf2ad47c8eb0cd2c8cb229dbe4" + }, + { + "_path": "lib/pkgconfig/openssl.pc", + "prefix_placeholder": "/home/task_177211824080552/croot/openssl_1772119137308/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pla", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "6212404fd050a3a823a0c99735e31cbe28cb5d642b61d0e4dfb000b0150bff03", + "size_in_bytes": 469, + "sha256_in_prefix": "fb3b7a488b84309dfa9414b278b115785340456a1ba2e1dc42bd788f9fc3570e" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/openssl-3.5.5-h1b28b03_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/packaging-25.0-py313h06a4308_1.json b/miniconda3/conda-meta/packaging-25.0-py313h06a4308_1.json new file mode 100644 index 0000000000000000000000000000000000000000..fa280ff75fc128aa5f98e0e27ccfc15d05529700 --- /dev/null +++ b/miniconda3/conda-meta/packaging-25.0-py313h06a4308_1.json @@ -0,0 +1,78 @@ +{ + "name": "packaging", + "version": "25.0", + "build": "py313h06a4308_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "packaging-25.0-py313h06a4308_1.conda", + "md5": "816867d682a95116d8c08e63d2e65ad2", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/packaging-25.0-py313h06a4308_1.conda", + "sha256": "d938ecadac1b6468759961d423052784528d5ac5edc001fdcc6486724e8deeaa", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "Apache-2.0 or BSD-2-Clause", + "license_family": "Apache", + "timestamp": 1761049096000, + "size": 194549, + "requested_spec": "pkgs/main/linux-64::packaging==25.0=py313h06a4308_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/packaging-25.0-py313h06a4308_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/packaging-25.0-py313h06a4308_1", + "files": [ + "lib/python3.13/site-packages/packaging-25.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/packaging-25.0.dist-info/METADATA", + "lib/python3.13/site-packages/packaging-25.0.dist-info/RECORD", + "lib/python3.13/site-packages/packaging-25.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/packaging-25.0.dist-info/WHEEL", + "lib/python3.13/site-packages/packaging-25.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/packaging-25.0.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/packaging-25.0.dist-info/licenses/LICENSE.APACHE", + "lib/python3.13/site-packages/packaging-25.0.dist-info/licenses/LICENSE.BSD", + "lib/python3.13/site-packages/packaging/__init__.py", + "lib/python3.13/site-packages/packaging/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/packaging/__pycache__/_elffile.cpython-313.pyc", + "lib/python3.13/site-packages/packaging/__pycache__/_manylinux.cpython-313.pyc", + "lib/python3.13/site-packages/packaging/__pycache__/_musllinux.cpython-313.pyc", + "lib/python3.13/site-packages/packaging/__pycache__/_parser.cpython-313.pyc", + "lib/python3.13/site-packages/packaging/__pycache__/_structures.cpython-313.pyc", + "lib/python3.13/site-packages/packaging/__pycache__/_tokenizer.cpython-313.pyc", + "lib/python3.13/site-packages/packaging/__pycache__/markers.cpython-313.pyc", + "lib/python3.13/site-packages/packaging/__pycache__/metadata.cpython-313.pyc", + "lib/python3.13/site-packages/packaging/__pycache__/requirements.cpython-313.pyc", + "lib/python3.13/site-packages/packaging/__pycache__/specifiers.cpython-313.pyc", + "lib/python3.13/site-packages/packaging/__pycache__/tags.cpython-313.pyc", + "lib/python3.13/site-packages/packaging/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/site-packages/packaging/__pycache__/version.cpython-313.pyc", + "lib/python3.13/site-packages/packaging/_elffile.py", + "lib/python3.13/site-packages/packaging/_manylinux.py", + "lib/python3.13/site-packages/packaging/_musllinux.py", + "lib/python3.13/site-packages/packaging/_parser.py", + "lib/python3.13/site-packages/packaging/_structures.py", + "lib/python3.13/site-packages/packaging/_tokenizer.py", + "lib/python3.13/site-packages/packaging/licenses/__init__.py", + "lib/python3.13/site-packages/packaging/licenses/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/packaging/licenses/__pycache__/_spdx.cpython-313.pyc", + "lib/python3.13/site-packages/packaging/licenses/_spdx.py", + "lib/python3.13/site-packages/packaging/markers.py", + "lib/python3.13/site-packages/packaging/metadata.py", + "lib/python3.13/site-packages/packaging/py.typed", + "lib/python3.13/site-packages/packaging/requirements.py", + "lib/python3.13/site-packages/packaging/specifiers.py", + "lib/python3.13/site-packages/packaging/tags.py", + "lib/python3.13/site-packages/packaging/utils.py", + "lib/python3.13/site-packages/packaging/version.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/packaging-25.0-py313h06a4308_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/pcre2-10.46-hf426167_0.json b/miniconda3/conda-meta/pcre2-10.46-hf426167_0.json new file mode 100644 index 0000000000000000000000000000000000000000..e5929ffd46b8cdf39f91b77b1960b2d77dba9354 --- /dev/null +++ b/miniconda3/conda-meta/pcre2-10.46-hf426167_0.json @@ -0,0 +1,323 @@ +{ + "name": "pcre2", + "version": "10.46", + "build": "hf426167_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "pcre2-10.46-hf426167_0.conda", + "md5": "49c2031dcebd085e49c3aff84479e314", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/pcre2-10.46-hf426167_0.conda", + "sha256": "c817569288774a61a8081a9e3aa13de5b24f2fd7c971618c7593c4f1764ad0f8", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "bzip2 >=1.0.8,<2.0a0", + "libgcc-ng >=11.2.0", + "zlib >=1.2.13,<2.0a0" + ], + "constrains": [], + "license": "BSD-3-Clause WITH PCRE2-exception", + "license_family": "BSD", + "timestamp": 1759825800000, + "size": 1289658, + "requested_spec": "pkgs/main/linux-64::pcre2==10.46=hf426167_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pcre2-10.46-hf426167_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pcre2-10.46-hf426167_0", + "files": [ + "bin/pcre2-config", + "bin/pcre2grep", + "bin/pcre2test", + "include/pcre2.h", + "include/pcre2posix.h", + "lib/cmake/pcre2/pcre2-config-version.cmake", + "lib/cmake/pcre2/pcre2-config.cmake", + "lib/libpcre2-16.a", + "lib/libpcre2-16.so", + "lib/libpcre2-16.so.0", + "lib/libpcre2-16.so.0.14.0", + "lib/libpcre2-32.a", + "lib/libpcre2-32.so", + "lib/libpcre2-32.so.0", + "lib/libpcre2-32.so.0.14.0", + "lib/libpcre2-8.a", + "lib/libpcre2-8.so", + "lib/libpcre2-8.so.0", + "lib/libpcre2-8.so.0.14.0", + "lib/libpcre2-posix.a", + "lib/libpcre2-posix.so", + "lib/libpcre2-posix.so.3", + "lib/libpcre2-posix.so.3.0.6", + "lib/pkgconfig/libpcre2-16.pc", + "lib/pkgconfig/libpcre2-32.pc", + "lib/pkgconfig/libpcre2-8.pc", + "lib/pkgconfig/libpcre2-posix.pc", + "share/doc/pcre2/AUTHORS.md", + "share/doc/pcre2/COPYING", + "share/doc/pcre2/ChangeLog", + "share/doc/pcre2/LICENCE.md", + "share/doc/pcre2/NEWS", + "share/doc/pcre2/README", + "share/doc/pcre2/SECURITY.md", + "share/doc/pcre2/html/NON-AUTOTOOLS-BUILD.txt", + "share/doc/pcre2/html/README.txt", + "share/doc/pcre2/html/index.html", + "share/doc/pcre2/html/pcre2-config.html", + "share/doc/pcre2/html/pcre2.html", + "share/doc/pcre2/html/pcre2_callout_enumerate.html", + "share/doc/pcre2/html/pcre2_code_copy.html", + "share/doc/pcre2/html/pcre2_code_copy_with_tables.html", + "share/doc/pcre2/html/pcre2_code_free.html", + "share/doc/pcre2/html/pcre2_compile.html", + "share/doc/pcre2/html/pcre2_compile_context_copy.html", + "share/doc/pcre2/html/pcre2_compile_context_create.html", + "share/doc/pcre2/html/pcre2_compile_context_free.html", + "share/doc/pcre2/html/pcre2_config.html", + "share/doc/pcre2/html/pcre2_convert_context_copy.html", + "share/doc/pcre2/html/pcre2_convert_context_create.html", + "share/doc/pcre2/html/pcre2_convert_context_free.html", + "share/doc/pcre2/html/pcre2_converted_pattern_free.html", + "share/doc/pcre2/html/pcre2_dfa_match.html", + "share/doc/pcre2/html/pcre2_general_context_copy.html", + "share/doc/pcre2/html/pcre2_general_context_create.html", + "share/doc/pcre2/html/pcre2_general_context_free.html", + "share/doc/pcre2/html/pcre2_get_error_message.html", + "share/doc/pcre2/html/pcre2_get_mark.html", + "share/doc/pcre2/html/pcre2_get_match_data_heapframes_size.html", + "share/doc/pcre2/html/pcre2_get_match_data_size.html", + "share/doc/pcre2/html/pcre2_get_ovector_count.html", + "share/doc/pcre2/html/pcre2_get_ovector_pointer.html", + "share/doc/pcre2/html/pcre2_get_startchar.html", + "share/doc/pcre2/html/pcre2_jit_compile.html", + "share/doc/pcre2/html/pcre2_jit_free_unused_memory.html", + "share/doc/pcre2/html/pcre2_jit_match.html", + "share/doc/pcre2/html/pcre2_jit_stack_assign.html", + "share/doc/pcre2/html/pcre2_jit_stack_create.html", + "share/doc/pcre2/html/pcre2_jit_stack_free.html", + "share/doc/pcre2/html/pcre2_maketables.html", + "share/doc/pcre2/html/pcre2_maketables_free.html", + "share/doc/pcre2/html/pcre2_match.html", + "share/doc/pcre2/html/pcre2_match_context_copy.html", + "share/doc/pcre2/html/pcre2_match_context_create.html", + "share/doc/pcre2/html/pcre2_match_context_free.html", + "share/doc/pcre2/html/pcre2_match_data_create.html", + "share/doc/pcre2/html/pcre2_match_data_create_from_pattern.html", + "share/doc/pcre2/html/pcre2_match_data_free.html", + "share/doc/pcre2/html/pcre2_pattern_convert.html", + "share/doc/pcre2/html/pcre2_pattern_info.html", + "share/doc/pcre2/html/pcre2_serialize_decode.html", + "share/doc/pcre2/html/pcre2_serialize_encode.html", + "share/doc/pcre2/html/pcre2_serialize_free.html", + "share/doc/pcre2/html/pcre2_serialize_get_number_of_codes.html", + "share/doc/pcre2/html/pcre2_set_bsr.html", + "share/doc/pcre2/html/pcre2_set_callout.html", + "share/doc/pcre2/html/pcre2_set_character_tables.html", + "share/doc/pcre2/html/pcre2_set_compile_extra_options.html", + "share/doc/pcre2/html/pcre2_set_compile_recursion_guard.html", + "share/doc/pcre2/html/pcre2_set_depth_limit.html", + "share/doc/pcre2/html/pcre2_set_glob_escape.html", + "share/doc/pcre2/html/pcre2_set_glob_separator.html", + "share/doc/pcre2/html/pcre2_set_heap_limit.html", + "share/doc/pcre2/html/pcre2_set_match_limit.html", + "share/doc/pcre2/html/pcre2_set_max_pattern_compiled_length.html", + "share/doc/pcre2/html/pcre2_set_max_pattern_length.html", + "share/doc/pcre2/html/pcre2_set_max_varlookbehind.html", + "share/doc/pcre2/html/pcre2_set_newline.html", + "share/doc/pcre2/html/pcre2_set_offset_limit.html", + "share/doc/pcre2/html/pcre2_set_optimize.html", + "share/doc/pcre2/html/pcre2_set_parens_nest_limit.html", + "share/doc/pcre2/html/pcre2_set_recursion_limit.html", + "share/doc/pcre2/html/pcre2_set_recursion_memory_management.html", + "share/doc/pcre2/html/pcre2_set_substitute_callout.html", + "share/doc/pcre2/html/pcre2_set_substitute_case_callout.html", + "share/doc/pcre2/html/pcre2_substitute.html", + "share/doc/pcre2/html/pcre2_substring_copy_byname.html", + "share/doc/pcre2/html/pcre2_substring_copy_bynumber.html", + "share/doc/pcre2/html/pcre2_substring_free.html", + "share/doc/pcre2/html/pcre2_substring_get_byname.html", + "share/doc/pcre2/html/pcre2_substring_get_bynumber.html", + "share/doc/pcre2/html/pcre2_substring_length_byname.html", + "share/doc/pcre2/html/pcre2_substring_length_bynumber.html", + "share/doc/pcre2/html/pcre2_substring_list_free.html", + "share/doc/pcre2/html/pcre2_substring_list_get.html", + "share/doc/pcre2/html/pcre2_substring_nametable_scan.html", + "share/doc/pcre2/html/pcre2_substring_number_from_name.html", + "share/doc/pcre2/html/pcre2api.html", + "share/doc/pcre2/html/pcre2build.html", + "share/doc/pcre2/html/pcre2callout.html", + "share/doc/pcre2/html/pcre2compat.html", + "share/doc/pcre2/html/pcre2convert.html", + "share/doc/pcre2/html/pcre2demo.html", + "share/doc/pcre2/html/pcre2grep.html", + "share/doc/pcre2/html/pcre2jit.html", + "share/doc/pcre2/html/pcre2limits.html", + "share/doc/pcre2/html/pcre2matching.html", + "share/doc/pcre2/html/pcre2partial.html", + "share/doc/pcre2/html/pcre2pattern.html", + "share/doc/pcre2/html/pcre2perform.html", + "share/doc/pcre2/html/pcre2posix.html", + "share/doc/pcre2/html/pcre2sample.html", + "share/doc/pcre2/html/pcre2serialize.html", + "share/doc/pcre2/html/pcre2syntax.html", + "share/doc/pcre2/html/pcre2test.html", + "share/doc/pcre2/html/pcre2unicode.html", + "share/doc/pcre2/pcre2-config.txt", + "share/doc/pcre2/pcre2.txt", + "share/doc/pcre2/pcre2grep.txt", + "share/doc/pcre2/pcre2test.txt", + "share/man/man1/pcre2-config.1", + "share/man/man1/pcre2grep.1", + "share/man/man1/pcre2test.1", + "share/man/man3/pcre2.3", + "share/man/man3/pcre2_callout_enumerate.3", + "share/man/man3/pcre2_code_copy.3", + "share/man/man3/pcre2_code_copy_with_tables.3", + "share/man/man3/pcre2_code_free.3", + "share/man/man3/pcre2_compile.3", + "share/man/man3/pcre2_compile_context_copy.3", + "share/man/man3/pcre2_compile_context_create.3", + "share/man/man3/pcre2_compile_context_free.3", + "share/man/man3/pcre2_config.3", + "share/man/man3/pcre2_convert_context_copy.3", + "share/man/man3/pcre2_convert_context_create.3", + "share/man/man3/pcre2_convert_context_free.3", + "share/man/man3/pcre2_converted_pattern_free.3", + "share/man/man3/pcre2_dfa_match.3", + "share/man/man3/pcre2_general_context_copy.3", + "share/man/man3/pcre2_general_context_create.3", + "share/man/man3/pcre2_general_context_free.3", + "share/man/man3/pcre2_get_error_message.3", + "share/man/man3/pcre2_get_mark.3", + "share/man/man3/pcre2_get_match_data_heapframes_size.3", + "share/man/man3/pcre2_get_match_data_size.3", + "share/man/man3/pcre2_get_ovector_count.3", + "share/man/man3/pcre2_get_ovector_pointer.3", + "share/man/man3/pcre2_get_startchar.3", + "share/man/man3/pcre2_jit_compile.3", + "share/man/man3/pcre2_jit_free_unused_memory.3", + "share/man/man3/pcre2_jit_match.3", + "share/man/man3/pcre2_jit_stack_assign.3", + "share/man/man3/pcre2_jit_stack_create.3", + "share/man/man3/pcre2_jit_stack_free.3", + "share/man/man3/pcre2_maketables.3", + "share/man/man3/pcre2_maketables_free.3", + "share/man/man3/pcre2_match.3", + "share/man/man3/pcre2_match_context_copy.3", + "share/man/man3/pcre2_match_context_create.3", + "share/man/man3/pcre2_match_context_free.3", + "share/man/man3/pcre2_match_data_create.3", + "share/man/man3/pcre2_match_data_create_from_pattern.3", + "share/man/man3/pcre2_match_data_free.3", + "share/man/man3/pcre2_pattern_convert.3", + "share/man/man3/pcre2_pattern_info.3", + "share/man/man3/pcre2_serialize_decode.3", + "share/man/man3/pcre2_serialize_encode.3", + "share/man/man3/pcre2_serialize_free.3", + "share/man/man3/pcre2_serialize_get_number_of_codes.3", + "share/man/man3/pcre2_set_bsr.3", + "share/man/man3/pcre2_set_callout.3", + "share/man/man3/pcre2_set_character_tables.3", + "share/man/man3/pcre2_set_compile_extra_options.3", + "share/man/man3/pcre2_set_compile_recursion_guard.3", + "share/man/man3/pcre2_set_depth_limit.3", + "share/man/man3/pcre2_set_glob_escape.3", + "share/man/man3/pcre2_set_glob_separator.3", + "share/man/man3/pcre2_set_heap_limit.3", + "share/man/man3/pcre2_set_match_limit.3", + "share/man/man3/pcre2_set_max_pattern_compiled_length.3", + "share/man/man3/pcre2_set_max_pattern_length.3", + "share/man/man3/pcre2_set_max_varlookbehind.3", + "share/man/man3/pcre2_set_newline.3", + "share/man/man3/pcre2_set_offset_limit.3", + "share/man/man3/pcre2_set_optimize.3", + "share/man/man3/pcre2_set_parens_nest_limit.3", + "share/man/man3/pcre2_set_recursion_limit.3", + "share/man/man3/pcre2_set_recursion_memory_management.3", + "share/man/man3/pcre2_set_substitute_callout.3", + "share/man/man3/pcre2_set_substitute_case_callout.3", + "share/man/man3/pcre2_substitute.3", + "share/man/man3/pcre2_substring_copy_byname.3", + "share/man/man3/pcre2_substring_copy_bynumber.3", + "share/man/man3/pcre2_substring_free.3", + "share/man/man3/pcre2_substring_get_byname.3", + "share/man/man3/pcre2_substring_get_bynumber.3", + "share/man/man3/pcre2_substring_length_byname.3", + "share/man/man3/pcre2_substring_length_bynumber.3", + "share/man/man3/pcre2_substring_list_free.3", + "share/man/man3/pcre2_substring_list_get.3", + "share/man/man3/pcre2_substring_nametable_scan.3", + "share/man/man3/pcre2_substring_number_from_name.3", + "share/man/man3/pcre2api.3", + "share/man/man3/pcre2build.3", + "share/man/man3/pcre2callout.3", + "share/man/man3/pcre2compat.3", + "share/man/man3/pcre2convert.3", + "share/man/man3/pcre2demo.3", + "share/man/man3/pcre2jit.3", + "share/man/man3/pcre2limits.3", + "share/man/man3/pcre2matching.3", + "share/man/man3/pcre2partial.3", + "share/man/man3/pcre2pattern.3", + "share/man/man3/pcre2perform.3", + "share/man/man3/pcre2posix.3", + "share/man/man3/pcre2sample.3", + "share/man/man3/pcre2serialize.3", + "share/man/man3/pcre2syntax.3", + "share/man/man3/pcre2unicode.3" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/pcre2-config", + "prefix_placeholder": "/home/task_175982568355287/conda-bld/pcre2_1759825755025/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "4bb61487490da46260333524e79186e3c228488e80b5561134106086735eef88", + "size_in_bytes": 2443, + "sha256_in_prefix": "12e4376416a1cfc8f5f5d606cda75c1c06e083e4096084d5dcaf9169b7389946" + }, + { + "_path": "lib/pkgconfig/libpcre2-16.pc", + "prefix_placeholder": "/home/task_175982568355287/conda-bld/pcre2_1759825755025/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "5ed585da7239e2798252d3116a95f516a0c0ff100645337b3aa5bf1a63efeb59", + "size_in_bytes": 589, + "sha256_in_prefix": "8251482d3d64762c023560b0722e7f62b5a5ca764eb90852f19aaac0d4e84b2c" + }, + { + "_path": "lib/pkgconfig/libpcre2-32.pc", + "prefix_placeholder": "/home/task_175982568355287/conda-bld/pcre2_1759825755025/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "593099d8b9660003e6073ee7d3c29b298668d61212a9fe6db129e5c488041e0c", + "size_in_bytes": 589, + "sha256_in_prefix": "1b3d6880fd2fba65dbbb68a027589248760c7d54a67910dc0ccc56ecdb4591d1" + }, + { + "_path": "lib/pkgconfig/libpcre2-8.pc", + "prefix_placeholder": "/home/task_175982568355287/conda-bld/pcre2_1759825755025/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "126d90faaae748fe1b1d4bceac931c29480404470c74355ded9087804c559ccd", + "size_in_bytes": 586, + "sha256_in_prefix": "ca80d1e3a79a704d51074305d1df2bb618098b68ec92d5e1733ccabc07cb844f" + }, + { + "_path": "lib/pkgconfig/libpcre2-posix.pc", + "prefix_placeholder": "/home/task_175982568355287/conda-bld/pcre2_1759825755025/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "5458eb357a4fb7448fca8377190f08b1be862a45a9cf42c1870ca000e81afe10", + "size_in_bytes": 574, + "sha256_in_prefix": "1fcad73488b24a9120a20407015a494b1b95cbcf78b1ab5d222858176e1e3367" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pcre2-10.46-hf426167_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/pip-26.0.1-pyhc872135_0.json b/miniconda3/conda-meta/pip-26.0.1-pyhc872135_0.json new file mode 100644 index 0000000000000000000000000000000000000000..b51c717ec255ab539f89c9c088abbeeccde481da --- /dev/null +++ b/miniconda3/conda-meta/pip-26.0.1-pyhc872135_0.json @@ -0,0 +1,2528 @@ +{ + "name": "pip", + "version": "26.0.1", + "build": "pyhc872135_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/noarch", + "subdir": "noarch", + "fn": "pip-26.0.1-pyhc872135_0.conda", + "md5": "5835195770c796fcd0a15547e58b90f9", + "url": "https://repo.anaconda.com/pkgs/main/noarch/pip-26.0.1-pyhc872135_0.conda", + "sha256": "cf0b9f989e132d46e3053095c6badf255a91de068e291e723be11da454c8d39f", + "depends": [ + "python >=3.9,<3.15.0a0", + "setuptools", + "wheel" + ], + "constrains": [], + "noarch": "python", + "license": "MIT", + "license_family": "MIT", + "package_type": "noarch_python", + "timestamp": 1770711094000, + "size": 1181205, + "requested_spec": "pkgs/main/noarch::pip==26.0.1=pyhc872135_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pip-26.0.1-pyhc872135_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pip-26.0.1-pyhc872135_0", + "files": [ + "lib/python3.13/site-packages/pip-26.0.1.dist-info/INSTALLER", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/METADATA", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/RECORD", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/REQUESTED", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/WHEEL", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/direct_url.json", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/entry_points.txt", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/AUTHORS.txt", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/LICENSE.txt", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/certifi/LICENSE", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/dependency_groups/LICENSE.txt", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distro/LICENSE", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/msgpack/COPYING", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pygments/LICENSE", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/requests/LICENSE", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/rich/LICENSE", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli/LICENSE", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/truststore/LICENSE", + "lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt", + "lib/python3.13/site-packages/pip/__init__.py", + "lib/python3.13/site-packages/pip/__main__.py", + "lib/python3.13/site-packages/pip/__pip-runner__.py", + "lib/python3.13/site-packages/pip/_internal/__init__.py", + "lib/python3.13/site-packages/pip/_internal/build_env.py", + "lib/python3.13/site-packages/pip/_internal/cache.py", + "lib/python3.13/site-packages/pip/_internal/cli/__init__.py", + "lib/python3.13/site-packages/pip/_internal/cli/autocompletion.py", + "lib/python3.13/site-packages/pip/_internal/cli/base_command.py", + "lib/python3.13/site-packages/pip/_internal/cli/cmdoptions.py", + "lib/python3.13/site-packages/pip/_internal/cli/command_context.py", + "lib/python3.13/site-packages/pip/_internal/cli/index_command.py", + "lib/python3.13/site-packages/pip/_internal/cli/main.py", + "lib/python3.13/site-packages/pip/_internal/cli/main_parser.py", + "lib/python3.13/site-packages/pip/_internal/cli/parser.py", + "lib/python3.13/site-packages/pip/_internal/cli/progress_bars.py", + "lib/python3.13/site-packages/pip/_internal/cli/req_command.py", + "lib/python3.13/site-packages/pip/_internal/cli/spinners.py", + "lib/python3.13/site-packages/pip/_internal/cli/status_codes.py", + "lib/python3.13/site-packages/pip/_internal/commands/__init__.py", + "lib/python3.13/site-packages/pip/_internal/commands/cache.py", + "lib/python3.13/site-packages/pip/_internal/commands/check.py", + "lib/python3.13/site-packages/pip/_internal/commands/completion.py", + "lib/python3.13/site-packages/pip/_internal/commands/configuration.py", + "lib/python3.13/site-packages/pip/_internal/commands/debug.py", + "lib/python3.13/site-packages/pip/_internal/commands/download.py", + "lib/python3.13/site-packages/pip/_internal/commands/freeze.py", + "lib/python3.13/site-packages/pip/_internal/commands/hash.py", + "lib/python3.13/site-packages/pip/_internal/commands/help.py", + "lib/python3.13/site-packages/pip/_internal/commands/index.py", + "lib/python3.13/site-packages/pip/_internal/commands/inspect.py", + "lib/python3.13/site-packages/pip/_internal/commands/install.py", + "lib/python3.13/site-packages/pip/_internal/commands/list.py", + "lib/python3.13/site-packages/pip/_internal/commands/lock.py", + "lib/python3.13/site-packages/pip/_internal/commands/search.py", + "lib/python3.13/site-packages/pip/_internal/commands/show.py", + "lib/python3.13/site-packages/pip/_internal/commands/uninstall.py", + "lib/python3.13/site-packages/pip/_internal/commands/wheel.py", + "lib/python3.13/site-packages/pip/_internal/configuration.py", + "lib/python3.13/site-packages/pip/_internal/distributions/__init__.py", + "lib/python3.13/site-packages/pip/_internal/distributions/base.py", + "lib/python3.13/site-packages/pip/_internal/distributions/installed.py", + "lib/python3.13/site-packages/pip/_internal/distributions/sdist.py", + "lib/python3.13/site-packages/pip/_internal/distributions/wheel.py", + "lib/python3.13/site-packages/pip/_internal/exceptions.py", + "lib/python3.13/site-packages/pip/_internal/index/__init__.py", + "lib/python3.13/site-packages/pip/_internal/index/collector.py", + "lib/python3.13/site-packages/pip/_internal/index/package_finder.py", + "lib/python3.13/site-packages/pip/_internal/index/sources.py", + "lib/python3.13/site-packages/pip/_internal/locations/__init__.py", + "lib/python3.13/site-packages/pip/_internal/locations/_distutils.py", + "lib/python3.13/site-packages/pip/_internal/locations/_sysconfig.py", + "lib/python3.13/site-packages/pip/_internal/locations/base.py", + "lib/python3.13/site-packages/pip/_internal/main.py", + "lib/python3.13/site-packages/pip/_internal/metadata/__init__.py", + "lib/python3.13/site-packages/pip/_internal/metadata/_json.py", + "lib/python3.13/site-packages/pip/_internal/metadata/base.py", + "lib/python3.13/site-packages/pip/_internal/metadata/importlib/__init__.py", + "lib/python3.13/site-packages/pip/_internal/metadata/importlib/_compat.py", + "lib/python3.13/site-packages/pip/_internal/metadata/importlib/_dists.py", + "lib/python3.13/site-packages/pip/_internal/metadata/importlib/_envs.py", + "lib/python3.13/site-packages/pip/_internal/metadata/pkg_resources.py", + "lib/python3.13/site-packages/pip/_internal/models/__init__.py", + "lib/python3.13/site-packages/pip/_internal/models/candidate.py", + "lib/python3.13/site-packages/pip/_internal/models/direct_url.py", + "lib/python3.13/site-packages/pip/_internal/models/format_control.py", + "lib/python3.13/site-packages/pip/_internal/models/index.py", + "lib/python3.13/site-packages/pip/_internal/models/installation_report.py", + "lib/python3.13/site-packages/pip/_internal/models/link.py", + "lib/python3.13/site-packages/pip/_internal/models/release_control.py", + "lib/python3.13/site-packages/pip/_internal/models/scheme.py", + "lib/python3.13/site-packages/pip/_internal/models/search_scope.py", + "lib/python3.13/site-packages/pip/_internal/models/selection_prefs.py", + "lib/python3.13/site-packages/pip/_internal/models/target_python.py", + "lib/python3.13/site-packages/pip/_internal/models/wheel.py", + "lib/python3.13/site-packages/pip/_internal/network/__init__.py", + "lib/python3.13/site-packages/pip/_internal/network/auth.py", + "lib/python3.13/site-packages/pip/_internal/network/cache.py", + "lib/python3.13/site-packages/pip/_internal/network/download.py", + "lib/python3.13/site-packages/pip/_internal/network/lazy_wheel.py", + "lib/python3.13/site-packages/pip/_internal/network/session.py", + "lib/python3.13/site-packages/pip/_internal/network/utils.py", + "lib/python3.13/site-packages/pip/_internal/network/xmlrpc.py", + "lib/python3.13/site-packages/pip/_internal/operations/__init__.py", + "lib/python3.13/site-packages/pip/_internal/operations/build/__init__.py", + "lib/python3.13/site-packages/pip/_internal/operations/build/build_tracker.py", + "lib/python3.13/site-packages/pip/_internal/operations/build/metadata.py", + "lib/python3.13/site-packages/pip/_internal/operations/build/metadata_editable.py", + "lib/python3.13/site-packages/pip/_internal/operations/build/wheel.py", + "lib/python3.13/site-packages/pip/_internal/operations/build/wheel_editable.py", + "lib/python3.13/site-packages/pip/_internal/operations/check.py", + "lib/python3.13/site-packages/pip/_internal/operations/freeze.py", + "lib/python3.13/site-packages/pip/_internal/operations/install/__init__.py", + "lib/python3.13/site-packages/pip/_internal/operations/install/wheel.py", + "lib/python3.13/site-packages/pip/_internal/operations/prepare.py", + "lib/python3.13/site-packages/pip/_internal/pyproject.py", + "lib/python3.13/site-packages/pip/_internal/req/__init__.py", + "lib/python3.13/site-packages/pip/_internal/req/constructors.py", + "lib/python3.13/site-packages/pip/_internal/req/pep723.py", + "lib/python3.13/site-packages/pip/_internal/req/req_dependency_group.py", + "lib/python3.13/site-packages/pip/_internal/req/req_file.py", + "lib/python3.13/site-packages/pip/_internal/req/req_install.py", + "lib/python3.13/site-packages/pip/_internal/req/req_set.py", + "lib/python3.13/site-packages/pip/_internal/req/req_uninstall.py", + "lib/python3.13/site-packages/pip/_internal/resolution/__init__.py", + "lib/python3.13/site-packages/pip/_internal/resolution/base.py", + "lib/python3.13/site-packages/pip/_internal/resolution/legacy/__init__.py", + "lib/python3.13/site-packages/pip/_internal/resolution/legacy/resolver.py", + "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/__init__.py", + "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/base.py", + "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/candidates.py", + "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/factory.py", + "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py", + "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/provider.py", + "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/reporter.py", + "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/requirements.py", + "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/resolver.py", + "lib/python3.13/site-packages/pip/_internal/self_outdated_check.py", + "lib/python3.13/site-packages/pip/_internal/utils/__init__.py", + "lib/python3.13/site-packages/pip/_internal/utils/_jaraco_text.py", + "lib/python3.13/site-packages/pip/_internal/utils/_log.py", + "lib/python3.13/site-packages/pip/_internal/utils/appdirs.py", + "lib/python3.13/site-packages/pip/_internal/utils/compat.py", + "lib/python3.13/site-packages/pip/_internal/utils/compatibility_tags.py", + "lib/python3.13/site-packages/pip/_internal/utils/datetime.py", + "lib/python3.13/site-packages/pip/_internal/utils/deprecation.py", + "lib/python3.13/site-packages/pip/_internal/utils/direct_url_helpers.py", + "lib/python3.13/site-packages/pip/_internal/utils/egg_link.py", + "lib/python3.13/site-packages/pip/_internal/utils/entrypoints.py", + "lib/python3.13/site-packages/pip/_internal/utils/filesystem.py", + "lib/python3.13/site-packages/pip/_internal/utils/filetypes.py", + "lib/python3.13/site-packages/pip/_internal/utils/glibc.py", + "lib/python3.13/site-packages/pip/_internal/utils/hashes.py", + "lib/python3.13/site-packages/pip/_internal/utils/logging.py", + "lib/python3.13/site-packages/pip/_internal/utils/misc.py", + "lib/python3.13/site-packages/pip/_internal/utils/packaging.py", + "lib/python3.13/site-packages/pip/_internal/utils/pylock.py", + "lib/python3.13/site-packages/pip/_internal/utils/retry.py", + "lib/python3.13/site-packages/pip/_internal/utils/subprocess.py", + "lib/python3.13/site-packages/pip/_internal/utils/temp_dir.py", + "lib/python3.13/site-packages/pip/_internal/utils/unpacking.py", + "lib/python3.13/site-packages/pip/_internal/utils/urls.py", + "lib/python3.13/site-packages/pip/_internal/utils/virtualenv.py", + "lib/python3.13/site-packages/pip/_internal/utils/wheel.py", + "lib/python3.13/site-packages/pip/_internal/vcs/__init__.py", + "lib/python3.13/site-packages/pip/_internal/vcs/bazaar.py", + "lib/python3.13/site-packages/pip/_internal/vcs/git.py", + "lib/python3.13/site-packages/pip/_internal/vcs/mercurial.py", + "lib/python3.13/site-packages/pip/_internal/vcs/subversion.py", + "lib/python3.13/site-packages/pip/_internal/vcs/versioncontrol.py", + "lib/python3.13/site-packages/pip/_internal/wheel_builder.py", + "lib/python3.13/site-packages/pip/_vendor/README.rst", + "lib/python3.13/site-packages/pip/_vendor/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/LICENSE.txt", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/_cmd.py", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/adapter.py", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/cache.py", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/caches/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/controller.py", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/filewrapper.py", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/heuristics.py", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/py.typed", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/serialize.py", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/wrapper.py", + "lib/python3.13/site-packages/pip/_vendor/certifi/LICENSE", + "lib/python3.13/site-packages/pip/_vendor/certifi/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/certifi/__main__.py", + "lib/python3.13/site-packages/pip/_vendor/certifi/cacert.pem", + "lib/python3.13/site-packages/pip/_vendor/certifi/core.py", + "lib/python3.13/site-packages/pip/_vendor/certifi/py.typed", + "lib/python3.13/site-packages/pip/_vendor/dependency_groups/LICENSE.txt", + "lib/python3.13/site-packages/pip/_vendor/dependency_groups/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/dependency_groups/__main__.py", + "lib/python3.13/site-packages/pip/_vendor/dependency_groups/_implementation.py", + "lib/python3.13/site-packages/pip/_vendor/dependency_groups/_lint_dependency_groups.py", + "lib/python3.13/site-packages/pip/_vendor/dependency_groups/_pip_wrapper.py", + "lib/python3.13/site-packages/pip/_vendor/dependency_groups/_toml_compat.py", + "lib/python3.13/site-packages/pip/_vendor/dependency_groups/py.typed", + "lib/python3.13/site-packages/pip/_vendor/distlib/LICENSE.txt", + "lib/python3.13/site-packages/pip/_vendor/distlib/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/distlib/compat.py", + "lib/python3.13/site-packages/pip/_vendor/distlib/resources.py", + "lib/python3.13/site-packages/pip/_vendor/distlib/scripts.py", + "lib/python3.13/site-packages/pip/_vendor/distlib/t32.exe", + "lib/python3.13/site-packages/pip/_vendor/distlib/t64-arm.exe", + "lib/python3.13/site-packages/pip/_vendor/distlib/t64.exe", + "lib/python3.13/site-packages/pip/_vendor/distlib/util.py", + "lib/python3.13/site-packages/pip/_vendor/distlib/w32.exe", + "lib/python3.13/site-packages/pip/_vendor/distlib/w64-arm.exe", + "lib/python3.13/site-packages/pip/_vendor/distlib/w64.exe", + "lib/python3.13/site-packages/pip/_vendor/distro/LICENSE", + "lib/python3.13/site-packages/pip/_vendor/distro/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/distro/__main__.py", + "lib/python3.13/site-packages/pip/_vendor/distro/distro.py", + "lib/python3.13/site-packages/pip/_vendor/distro/py.typed", + "lib/python3.13/site-packages/pip/_vendor/idna/LICENSE.md", + "lib/python3.13/site-packages/pip/_vendor/idna/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/idna/codec.py", + "lib/python3.13/site-packages/pip/_vendor/idna/compat.py", + "lib/python3.13/site-packages/pip/_vendor/idna/core.py", + "lib/python3.13/site-packages/pip/_vendor/idna/idnadata.py", + "lib/python3.13/site-packages/pip/_vendor/idna/intranges.py", + "lib/python3.13/site-packages/pip/_vendor/idna/package_data.py", + "lib/python3.13/site-packages/pip/_vendor/idna/py.typed", + "lib/python3.13/site-packages/pip/_vendor/idna/uts46data.py", + "lib/python3.13/site-packages/pip/_vendor/msgpack/COPYING", + "lib/python3.13/site-packages/pip/_vendor/msgpack/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/msgpack/exceptions.py", + "lib/python3.13/site-packages/pip/_vendor/msgpack/ext.py", + "lib/python3.13/site-packages/pip/_vendor/msgpack/fallback.py", + "lib/python3.13/site-packages/pip/_vendor/packaging/LICENSE", + "lib/python3.13/site-packages/pip/_vendor/packaging/LICENSE.APACHE", + "lib/python3.13/site-packages/pip/_vendor/packaging/LICENSE.BSD", + "lib/python3.13/site-packages/pip/_vendor/packaging/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/packaging/_elffile.py", + "lib/python3.13/site-packages/pip/_vendor/packaging/_manylinux.py", + "lib/python3.13/site-packages/pip/_vendor/packaging/_musllinux.py", + "lib/python3.13/site-packages/pip/_vendor/packaging/_parser.py", + "lib/python3.13/site-packages/pip/_vendor/packaging/_structures.py", + "lib/python3.13/site-packages/pip/_vendor/packaging/_tokenizer.py", + "lib/python3.13/site-packages/pip/_vendor/packaging/licenses/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/packaging/licenses/_spdx.py", + "lib/python3.13/site-packages/pip/_vendor/packaging/markers.py", + "lib/python3.13/site-packages/pip/_vendor/packaging/metadata.py", + "lib/python3.13/site-packages/pip/_vendor/packaging/py.typed", + "lib/python3.13/site-packages/pip/_vendor/packaging/pylock.py", + "lib/python3.13/site-packages/pip/_vendor/packaging/requirements.py", + "lib/python3.13/site-packages/pip/_vendor/packaging/specifiers.py", + "lib/python3.13/site-packages/pip/_vendor/packaging/tags.py", + "lib/python3.13/site-packages/pip/_vendor/packaging/utils.py", + "lib/python3.13/site-packages/pip/_vendor/packaging/version.py", + "lib/python3.13/site-packages/pip/_vendor/pkg_resources/LICENSE", + "lib/python3.13/site-packages/pip/_vendor/pkg_resources/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/platformdirs/LICENSE", + "lib/python3.13/site-packages/pip/_vendor/platformdirs/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/platformdirs/__main__.py", + "lib/python3.13/site-packages/pip/_vendor/platformdirs/android.py", + "lib/python3.13/site-packages/pip/_vendor/platformdirs/api.py", + "lib/python3.13/site-packages/pip/_vendor/platformdirs/macos.py", + "lib/python3.13/site-packages/pip/_vendor/platformdirs/py.typed", + "lib/python3.13/site-packages/pip/_vendor/platformdirs/unix.py", + "lib/python3.13/site-packages/pip/_vendor/platformdirs/version.py", + "lib/python3.13/site-packages/pip/_vendor/platformdirs/windows.py", + "lib/python3.13/site-packages/pip/_vendor/pygments/LICENSE", + "lib/python3.13/site-packages/pip/_vendor/pygments/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/pygments/__main__.py", + "lib/python3.13/site-packages/pip/_vendor/pygments/console.py", + "lib/python3.13/site-packages/pip/_vendor/pygments/filter.py", + "lib/python3.13/site-packages/pip/_vendor/pygments/filters/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/pygments/formatter.py", + "lib/python3.13/site-packages/pip/_vendor/pygments/formatters/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/pygments/formatters/_mapping.py", + "lib/python3.13/site-packages/pip/_vendor/pygments/lexer.py", + "lib/python3.13/site-packages/pip/_vendor/pygments/lexers/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/pygments/lexers/_mapping.py", + "lib/python3.13/site-packages/pip/_vendor/pygments/lexers/python.py", + "lib/python3.13/site-packages/pip/_vendor/pygments/modeline.py", + "lib/python3.13/site-packages/pip/_vendor/pygments/plugin.py", + "lib/python3.13/site-packages/pip/_vendor/pygments/regexopt.py", + "lib/python3.13/site-packages/pip/_vendor/pygments/scanner.py", + "lib/python3.13/site-packages/pip/_vendor/pygments/sphinxext.py", + "lib/python3.13/site-packages/pip/_vendor/pygments/style.py", + "lib/python3.13/site-packages/pip/_vendor/pygments/styles/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/pygments/styles/_mapping.py", + "lib/python3.13/site-packages/pip/_vendor/pygments/token.py", + "lib/python3.13/site-packages/pip/_vendor/pygments/unistring.py", + "lib/python3.13/site-packages/pip/_vendor/pygments/util.py", + "lib/python3.13/site-packages/pip/_vendor/pyproject_hooks/LICENSE", + "lib/python3.13/site-packages/pip/_vendor/pyproject_hooks/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/pyproject_hooks/_impl.py", + "lib/python3.13/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py", + "lib/python3.13/site-packages/pip/_vendor/pyproject_hooks/py.typed", + "lib/python3.13/site-packages/pip/_vendor/requests/LICENSE", + "lib/python3.13/site-packages/pip/_vendor/requests/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/requests/__version__.py", + "lib/python3.13/site-packages/pip/_vendor/requests/_internal_utils.py", + "lib/python3.13/site-packages/pip/_vendor/requests/adapters.py", + "lib/python3.13/site-packages/pip/_vendor/requests/api.py", + "lib/python3.13/site-packages/pip/_vendor/requests/auth.py", + "lib/python3.13/site-packages/pip/_vendor/requests/certs.py", + "lib/python3.13/site-packages/pip/_vendor/requests/compat.py", + "lib/python3.13/site-packages/pip/_vendor/requests/cookies.py", + "lib/python3.13/site-packages/pip/_vendor/requests/exceptions.py", + "lib/python3.13/site-packages/pip/_vendor/requests/help.py", + "lib/python3.13/site-packages/pip/_vendor/requests/hooks.py", + "lib/python3.13/site-packages/pip/_vendor/requests/models.py", + "lib/python3.13/site-packages/pip/_vendor/requests/packages.py", + "lib/python3.13/site-packages/pip/_vendor/requests/sessions.py", + "lib/python3.13/site-packages/pip/_vendor/requests/status_codes.py", + "lib/python3.13/site-packages/pip/_vendor/requests/structures.py", + "lib/python3.13/site-packages/pip/_vendor/requests/utils.py", + "lib/python3.13/site-packages/pip/_vendor/resolvelib/LICENSE", + "lib/python3.13/site-packages/pip/_vendor/resolvelib/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/resolvelib/providers.py", + "lib/python3.13/site-packages/pip/_vendor/resolvelib/py.typed", + "lib/python3.13/site-packages/pip/_vendor/resolvelib/reporters.py", + "lib/python3.13/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/resolvelib/resolvers/abstract.py", + "lib/python3.13/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py", + "lib/python3.13/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py", + "lib/python3.13/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py", + "lib/python3.13/site-packages/pip/_vendor/resolvelib/structs.py", + "lib/python3.13/site-packages/pip/_vendor/rich/LICENSE", + "lib/python3.13/site-packages/pip/_vendor/rich/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/rich/__main__.py", + "lib/python3.13/site-packages/pip/_vendor/rich/_cell_widths.py", + "lib/python3.13/site-packages/pip/_vendor/rich/_emoji_codes.py", + "lib/python3.13/site-packages/pip/_vendor/rich/_emoji_replace.py", + "lib/python3.13/site-packages/pip/_vendor/rich/_export_format.py", + "lib/python3.13/site-packages/pip/_vendor/rich/_extension.py", + "lib/python3.13/site-packages/pip/_vendor/rich/_fileno.py", + "lib/python3.13/site-packages/pip/_vendor/rich/_inspect.py", + "lib/python3.13/site-packages/pip/_vendor/rich/_log_render.py", + "lib/python3.13/site-packages/pip/_vendor/rich/_loop.py", + "lib/python3.13/site-packages/pip/_vendor/rich/_null_file.py", + "lib/python3.13/site-packages/pip/_vendor/rich/_palettes.py", + "lib/python3.13/site-packages/pip/_vendor/rich/_pick.py", + "lib/python3.13/site-packages/pip/_vendor/rich/_ratio.py", + "lib/python3.13/site-packages/pip/_vendor/rich/_spinners.py", + "lib/python3.13/site-packages/pip/_vendor/rich/_stack.py", + "lib/python3.13/site-packages/pip/_vendor/rich/_timer.py", + "lib/python3.13/site-packages/pip/_vendor/rich/_win32_console.py", + "lib/python3.13/site-packages/pip/_vendor/rich/_windows.py", + "lib/python3.13/site-packages/pip/_vendor/rich/_windows_renderer.py", + "lib/python3.13/site-packages/pip/_vendor/rich/_wrap.py", + "lib/python3.13/site-packages/pip/_vendor/rich/abc.py", + "lib/python3.13/site-packages/pip/_vendor/rich/align.py", + "lib/python3.13/site-packages/pip/_vendor/rich/ansi.py", + "lib/python3.13/site-packages/pip/_vendor/rich/bar.py", + "lib/python3.13/site-packages/pip/_vendor/rich/box.py", + "lib/python3.13/site-packages/pip/_vendor/rich/cells.py", + "lib/python3.13/site-packages/pip/_vendor/rich/color.py", + "lib/python3.13/site-packages/pip/_vendor/rich/color_triplet.py", + "lib/python3.13/site-packages/pip/_vendor/rich/columns.py", + "lib/python3.13/site-packages/pip/_vendor/rich/console.py", + "lib/python3.13/site-packages/pip/_vendor/rich/constrain.py", + "lib/python3.13/site-packages/pip/_vendor/rich/containers.py", + "lib/python3.13/site-packages/pip/_vendor/rich/control.py", + "lib/python3.13/site-packages/pip/_vendor/rich/default_styles.py", + "lib/python3.13/site-packages/pip/_vendor/rich/diagnose.py", + "lib/python3.13/site-packages/pip/_vendor/rich/emoji.py", + "lib/python3.13/site-packages/pip/_vendor/rich/errors.py", + "lib/python3.13/site-packages/pip/_vendor/rich/file_proxy.py", + "lib/python3.13/site-packages/pip/_vendor/rich/filesize.py", + "lib/python3.13/site-packages/pip/_vendor/rich/highlighter.py", + "lib/python3.13/site-packages/pip/_vendor/rich/json.py", + "lib/python3.13/site-packages/pip/_vendor/rich/jupyter.py", + "lib/python3.13/site-packages/pip/_vendor/rich/layout.py", + "lib/python3.13/site-packages/pip/_vendor/rich/live.py", + "lib/python3.13/site-packages/pip/_vendor/rich/live_render.py", + "lib/python3.13/site-packages/pip/_vendor/rich/logging.py", + "lib/python3.13/site-packages/pip/_vendor/rich/markup.py", + "lib/python3.13/site-packages/pip/_vendor/rich/measure.py", + "lib/python3.13/site-packages/pip/_vendor/rich/padding.py", + "lib/python3.13/site-packages/pip/_vendor/rich/pager.py", + "lib/python3.13/site-packages/pip/_vendor/rich/palette.py", + "lib/python3.13/site-packages/pip/_vendor/rich/panel.py", + "lib/python3.13/site-packages/pip/_vendor/rich/pretty.py", + "lib/python3.13/site-packages/pip/_vendor/rich/progress.py", + "lib/python3.13/site-packages/pip/_vendor/rich/progress_bar.py", + "lib/python3.13/site-packages/pip/_vendor/rich/prompt.py", + "lib/python3.13/site-packages/pip/_vendor/rich/protocol.py", + "lib/python3.13/site-packages/pip/_vendor/rich/py.typed", + "lib/python3.13/site-packages/pip/_vendor/rich/region.py", + "lib/python3.13/site-packages/pip/_vendor/rich/repr.py", + "lib/python3.13/site-packages/pip/_vendor/rich/rule.py", + "lib/python3.13/site-packages/pip/_vendor/rich/scope.py", + "lib/python3.13/site-packages/pip/_vendor/rich/screen.py", + "lib/python3.13/site-packages/pip/_vendor/rich/segment.py", + "lib/python3.13/site-packages/pip/_vendor/rich/spinner.py", + "lib/python3.13/site-packages/pip/_vendor/rich/status.py", + "lib/python3.13/site-packages/pip/_vendor/rich/style.py", + "lib/python3.13/site-packages/pip/_vendor/rich/styled.py", + "lib/python3.13/site-packages/pip/_vendor/rich/syntax.py", + "lib/python3.13/site-packages/pip/_vendor/rich/table.py", + "lib/python3.13/site-packages/pip/_vendor/rich/terminal_theme.py", + "lib/python3.13/site-packages/pip/_vendor/rich/text.py", + "lib/python3.13/site-packages/pip/_vendor/rich/theme.py", + "lib/python3.13/site-packages/pip/_vendor/rich/themes.py", + "lib/python3.13/site-packages/pip/_vendor/rich/traceback.py", + "lib/python3.13/site-packages/pip/_vendor/rich/tree.py", + "lib/python3.13/site-packages/pip/_vendor/tomli/LICENSE", + "lib/python3.13/site-packages/pip/_vendor/tomli/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/tomli/_parser.py", + "lib/python3.13/site-packages/pip/_vendor/tomli/_re.py", + "lib/python3.13/site-packages/pip/_vendor/tomli/_types.py", + "lib/python3.13/site-packages/pip/_vendor/tomli/py.typed", + "lib/python3.13/site-packages/pip/_vendor/tomli_w/LICENSE", + "lib/python3.13/site-packages/pip/_vendor/tomli_w/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/tomli_w/_writer.py", + "lib/python3.13/site-packages/pip/_vendor/tomli_w/py.typed", + "lib/python3.13/site-packages/pip/_vendor/truststore/LICENSE", + "lib/python3.13/site-packages/pip/_vendor/truststore/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/truststore/_api.py", + "lib/python3.13/site-packages/pip/_vendor/truststore/_macos.py", + "lib/python3.13/site-packages/pip/_vendor/truststore/_openssl.py", + "lib/python3.13/site-packages/pip/_vendor/truststore/_ssl_constants.py", + "lib/python3.13/site-packages/pip/_vendor/truststore/_windows.py", + "lib/python3.13/site-packages/pip/_vendor/truststore/py.typed", + "lib/python3.13/site-packages/pip/_vendor/urllib3/LICENSE.txt", + "lib/python3.13/site-packages/pip/_vendor/urllib3/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/_collections.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/_version.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/connection.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/connectionpool.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/appengine.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/securetransport.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/socks.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/exceptions.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/fields.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/filepost.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/packages/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/packages/six.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/poolmanager.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/request.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/response.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__init__.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/connection.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/proxy.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/queue.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/request.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/response.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/retry.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/ssl_.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/ssltransport.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/timeout.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/url.py", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/wait.py", + "lib/python3.13/site-packages/pip/_vendor/vendor.txt", + "lib/python3.13/site-packages/pip/py.typed", + "lib/python3.13/site-packages/pip/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/__pycache__/__pip-runner__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/__pycache__/build_env.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/__pycache__/cache.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/main.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/parser.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/cache.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/check.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/completion.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/debug.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/download.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/hash.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/help.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/index.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/install.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/list.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/lock.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/search.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/show.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/__pycache__/configuration.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/distributions/__pycache__/base.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/__pycache__/exceptions.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/index/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/index/__pycache__/collector.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/index/__pycache__/sources.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/locations/__pycache__/base.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/__pycache__/main.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/metadata/__pycache__/base.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/models/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/models/__pycache__/candidate.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/models/__pycache__/format_control.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/models/__pycache__/index.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/models/__pycache__/link.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/models/__pycache__/release_control.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/models/__pycache__/scheme.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/models/__pycache__/target_python.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/models/__pycache__/wheel.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/network/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/network/__pycache__/auth.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/network/__pycache__/cache.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/network/__pycache__/download.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/network/__pycache__/session.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/network/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/operations/__pycache__/check.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/__pycache__/pyproject.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/req/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/req/__pycache__/constructors.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/req/__pycache__/pep723.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/req/__pycache__/req_dependency_group.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/req/__pycache__/req_file.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/req/__pycache__/req_install.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/req/__pycache__/req_set.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/resolution/__pycache__/base.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/_log.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/compat.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/logging.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/misc.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/pylock.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/retry.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/urls.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/vcs/__pycache__/git.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/dependency_groups/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/dependency_groups/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/dependency_groups/__pycache__/_implementation.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/dependency_groups/__pycache__/_toml_compat.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/idna/__pycache__/core.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/pylock.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/api.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/help.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/models.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/resolution.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/align.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/box.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/color.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/console.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/control.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/json.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/live.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/region.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/status.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/style.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/table.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/text.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/tomli_w/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/tomli_w/__pycache__/_writer.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-313.pyc", + "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-313.pyc", + "bin/pip", + "bin/pip3" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/python3.13/site-packages/pip/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/__pycache__/__main__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/__pycache__/__pip-runner__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/__pycache__/build_env.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/__pycache__/cache.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/main.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/parser.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/cache.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/check.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/completion.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/debug.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/download.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/hash.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/help.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/index.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/install.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/list.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/lock.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/search.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/show.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/__pycache__/configuration.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/distributions/__pycache__/base.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/__pycache__/exceptions.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/index/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/index/__pycache__/collector.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/index/__pycache__/sources.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/locations/__pycache__/base.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/__pycache__/main.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/metadata/__pycache__/base.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/models/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/models/__pycache__/candidate.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/models/__pycache__/format_control.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/models/__pycache__/index.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/models/__pycache__/link.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/models/__pycache__/release_control.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/models/__pycache__/scheme.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/models/__pycache__/target_python.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/models/__pycache__/wheel.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/network/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/network/__pycache__/auth.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/network/__pycache__/cache.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/network/__pycache__/download.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/network/__pycache__/session.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/network/__pycache__/utils.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/operations/__pycache__/check.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/__pycache__/pyproject.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/req/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/req/__pycache__/constructors.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/req/__pycache__/pep723.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/req/__pycache__/req_dependency_group.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/req/__pycache__/req_file.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/req/__pycache__/req_install.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/req/__pycache__/req_set.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/resolution/__pycache__/base.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/_log.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/compat.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/logging.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/misc.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/pylock.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/retry.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/urls.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/vcs/__pycache__/git.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/dependency_groups/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/dependency_groups/__pycache__/__main__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/dependency_groups/__pycache__/_implementation.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/dependency_groups/__pycache__/_toml_compat.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/idna/__pycache__/core.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/pylock.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/api.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/help.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/models.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/resolution.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/align.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/box.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/color.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/console.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/control.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/json.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/live.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/region.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/status.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/style.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/table.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/text.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/tomli_w/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/tomli_w/__pycache__/_writer.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "lib/python3.13/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-313.pyc", + "path_type": "pyc_file" + }, + { + "_path": "bin/pip", + "path_type": "unix_python_entry_point" + }, + { + "_path": "bin/pip3", + "path_type": "unix_python_entry_point" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pip-26.0.1-pyhc872135_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/pkce-1.0.3-py313h06a4308_0.json b/miniconda3/conda-meta/pkce-1.0.3-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..23a10cbb3921d6187dbfd86b0a80d6d0c2ccecf2 --- /dev/null +++ b/miniconda3/conda-meta/pkce-1.0.3-py313h06a4308_0.json @@ -0,0 +1,47 @@ +{ + "name": "pkce", + "version": "1.0.3", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "pkce-1.0.3-py313h06a4308_0.conda", + "md5": "a1e79da30a6c62c6398e9bb990ee9ed6", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/pkce-1.0.3-py313h06a4308_0.conda", + "sha256": "eaa82556ef0d4f93c075c6e668be0bc84fc76f2401d98304feab16b3a2280f24", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1728388115000, + "size": 9162, + "requested_spec": "pkgs/main/linux-64::pkce==1.0.3=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pkce-1.0.3-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pkce-1.0.3-py313h06a4308_0", + "files": [ + "lib/python3.13/site-packages/pkce-1.0.3.dist-info/INSTALLER", + "lib/python3.13/site-packages/pkce-1.0.3.dist-info/LICENSE", + "lib/python3.13/site-packages/pkce-1.0.3.dist-info/METADATA", + "lib/python3.13/site-packages/pkce-1.0.3.dist-info/RECORD", + "lib/python3.13/site-packages/pkce-1.0.3.dist-info/REQUESTED", + "lib/python3.13/site-packages/pkce-1.0.3.dist-info/WHEEL", + "lib/python3.13/site-packages/pkce-1.0.3.dist-info/direct_url.json", + "lib/python3.13/site-packages/pkce-1.0.3.dist-info/top_level.txt", + "lib/python3.13/site-packages/pkce/__init__.py", + "lib/python3.13/site-packages/pkce/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pkce/py.typed" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pkce-1.0.3-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/platformdirs-4.5.0-py313h06a4308_0.json b/miniconda3/conda-meta/platformdirs-4.5.0-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..e7be96c8062978a50ecffcdcae9f59dcc1794fa9 --- /dev/null +++ b/miniconda3/conda-meta/platformdirs-4.5.0-py313h06a4308_0.json @@ -0,0 +1,60 @@ +{ + "name": "platformdirs", + "version": "4.5.0", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "platformdirs-4.5.0-py313h06a4308_0.conda", + "md5": "7b88d036315bb494eb9a3f2dfb59b555", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/platformdirs-4.5.0-py313h06a4308_0.conda", + "sha256": "8e386aed42646788392d004645a85088c065e6ef9f0410b21a1a0dd9948753ec", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1762356506000, + "size": 42654, + "requested_spec": "pkgs/main/linux-64::platformdirs==4.5.0=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/platformdirs-4.5.0-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/platformdirs-4.5.0-py313h06a4308_0", + "files": [ + "lib/python3.13/site-packages/platformdirs-4.5.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/platformdirs-4.5.0.dist-info/METADATA", + "lib/python3.13/site-packages/platformdirs-4.5.0.dist-info/RECORD", + "lib/python3.13/site-packages/platformdirs-4.5.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/platformdirs-4.5.0.dist-info/WHEEL", + "lib/python3.13/site-packages/platformdirs-4.5.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/platformdirs-4.5.0.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/platformdirs/__init__.py", + "lib/python3.13/site-packages/platformdirs/__main__.py", + "lib/python3.13/site-packages/platformdirs/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/platformdirs/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/site-packages/platformdirs/__pycache__/android.cpython-313.pyc", + "lib/python3.13/site-packages/platformdirs/__pycache__/api.cpython-313.pyc", + "lib/python3.13/site-packages/platformdirs/__pycache__/macos.cpython-313.pyc", + "lib/python3.13/site-packages/platformdirs/__pycache__/unix.cpython-313.pyc", + "lib/python3.13/site-packages/platformdirs/__pycache__/version.cpython-313.pyc", + "lib/python3.13/site-packages/platformdirs/__pycache__/windows.cpython-313.pyc", + "lib/python3.13/site-packages/platformdirs/android.py", + "lib/python3.13/site-packages/platformdirs/api.py", + "lib/python3.13/site-packages/platformdirs/macos.py", + "lib/python3.13/site-packages/platformdirs/py.typed", + "lib/python3.13/site-packages/platformdirs/unix.py", + "lib/python3.13/site-packages/platformdirs/version.py", + "lib/python3.13/site-packages/platformdirs/windows.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/platformdirs-4.5.0-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/pluggy-1.5.0-py313h06a4308_0.json b/miniconda3/conda-meta/pluggy-1.5.0-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..f5a4cce2ac5e2464d7d39f477eb56b274e1a01fd --- /dev/null +++ b/miniconda3/conda-meta/pluggy-1.5.0-py313h06a4308_0.json @@ -0,0 +1,61 @@ +{ + "name": "pluggy", + "version": "1.5.0", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "pluggy-1.5.0-py313h06a4308_0.conda", + "md5": "ea142d52281afe8e9a79e4a33c023e41", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/pluggy-1.5.0-py313h06a4308_0.conda", + "sha256": "35cd1745a62ee403a07b0cc9a6cea548bcc539f8076ddce33aa8630c529eac6a", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1733169630000, + "size": 47336, + "requested_spec": "pkgs/main/linux-64::pluggy==1.5.0=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pluggy-1.5.0-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pluggy-1.5.0-py313h06a4308_0", + "files": [ + "lib/python3.13/site-packages/pluggy-1.5.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/pluggy-1.5.0.dist-info/LICENSE", + "lib/python3.13/site-packages/pluggy-1.5.0.dist-info/METADATA", + "lib/python3.13/site-packages/pluggy-1.5.0.dist-info/RECORD", + "lib/python3.13/site-packages/pluggy-1.5.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/pluggy-1.5.0.dist-info/WHEEL", + "lib/python3.13/site-packages/pluggy-1.5.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/pluggy-1.5.0.dist-info/top_level.txt", + "lib/python3.13/site-packages/pluggy/__init__.py", + "lib/python3.13/site-packages/pluggy/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pluggy/__pycache__/_callers.cpython-313.pyc", + "lib/python3.13/site-packages/pluggy/__pycache__/_hooks.cpython-313.pyc", + "lib/python3.13/site-packages/pluggy/__pycache__/_manager.cpython-313.pyc", + "lib/python3.13/site-packages/pluggy/__pycache__/_result.cpython-313.pyc", + "lib/python3.13/site-packages/pluggy/__pycache__/_tracing.cpython-313.pyc", + "lib/python3.13/site-packages/pluggy/__pycache__/_version.cpython-313.pyc", + "lib/python3.13/site-packages/pluggy/__pycache__/_warnings.cpython-313.pyc", + "lib/python3.13/site-packages/pluggy/_callers.py", + "lib/python3.13/site-packages/pluggy/_hooks.py", + "lib/python3.13/site-packages/pluggy/_manager.py", + "lib/python3.13/site-packages/pluggy/_result.py", + "lib/python3.13/site-packages/pluggy/_tracing.py", + "lib/python3.13/site-packages/pluggy/_version.py", + "lib/python3.13/site-packages/pluggy/_warnings.py", + "lib/python3.13/site-packages/pluggy/py.typed" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pluggy-1.5.0-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/pthread-stubs-0.3-h0ce48e5_1.json b/miniconda3/conda-meta/pthread-stubs-0.3-h0ce48e5_1.json new file mode 100644 index 0000000000000000000000000000000000000000..d13fe15196e4fe8e6292948a865e740faf683ea0 --- /dev/null +++ b/miniconda3/conda-meta/pthread-stubs-0.3-h0ce48e5_1.json @@ -0,0 +1,46 @@ +{ + "name": "pthread-stubs", + "version": "0.3", + "build": "h0ce48e5_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "pthread-stubs-0.3-h0ce48e5_1.conda", + "md5": "973a642312d2a28927aaf5b477c67250", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/pthread-stubs-0.3-h0ce48e5_1.conda", + "sha256": "119c5ad43fb92b2f14a25c53276072ee77ff6b40c72e6617b523b9de0eb0822a", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "libgcc-ng >=7.2.0" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1505733967000, + "size": 5360, + "requested_spec": "pkgs/main/linux-64::pthread-stubs==0.3=h0ce48e5_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pthread-stubs-0.3-h0ce48e5_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pthread-stubs-0.3-h0ce48e5_1", + "files": [ + "lib/pkgconfig/pthread-stubs.pc" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/pkgconfig/pthread-stubs.pc", + "prefix_placeholder": "/opt/anaconda1anaconda2anaconda3", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "9ce637c8a9c65d1287a6a0aa7a1dc0a65810fe8811403f2247afdaf671a1c5db", + "size_in_bytes": 197, + "sha256_in_prefix": "06ac64835dc1bb96f7eba0b4459e473e8e9c2f67adc78e6e384e7efd417d1168" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pthread-stubs-0.3-h0ce48e5_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/pybind11-abi-5-hd3eb1b0_0.json b/miniconda3/conda-meta/pybind11-abi-5-hd3eb1b0_0.json new file mode 100644 index 0000000000000000000000000000000000000000..c99c26844a4770b19e43f220a216a546e09bdf75 --- /dev/null +++ b/miniconda3/conda-meta/pybind11-abi-5-hd3eb1b0_0.json @@ -0,0 +1,32 @@ +{ + "name": "pybind11-abi", + "version": "5", + "build": "hd3eb1b0_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/noarch", + "subdir": "noarch", + "fn": "pybind11-abi-5-hd3eb1b0_0.conda", + "md5": "7f0df6639fdf60ccd3045ee6faedd32f", + "url": "https://repo.anaconda.com/pkgs/main/noarch/pybind11-abi-5-hd3eb1b0_0.conda", + "sha256": "f50092cadf160051b3d2a8e7597d5e13c96487f9383eaaf803063a1bab3c3bd7", + "depends": [], + "constrains": [], + "noarch": "generic", + "license": "BSD-3-Clause", + "license_family": "BSD", + "package_type": "noarch_generic", + "timestamp": 1712163766000, + "size": 14215, + "requested_spec": "pkgs/main/noarch::pybind11-abi==5=hd3eb1b0_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pybind11-abi-5-hd3eb1b0_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pybind11-abi-5-hd3eb1b0_0", + "files": [], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pybind11-abi-5-hd3eb1b0_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/pycosat-0.6.6-py313h5eee18b_2.json b/miniconda3/conda-meta/pycosat-0.6.6-py313h5eee18b_2.json new file mode 100644 index 0000000000000000000000000000000000000000..070898e6fa17ead1a3c232827439faab10071a51 --- /dev/null +++ b/miniconda3/conda-meta/pycosat-0.6.6-py313h5eee18b_2.json @@ -0,0 +1,49 @@ +{ + "name": "pycosat", + "version": "0.6.6", + "build": "py313h5eee18b_2", + "build_number": 2, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "pycosat-0.6.6-py313h5eee18b_2.conda", + "md5": "60ea7416e08d78563e31d16c333bd57f", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/pycosat-0.6.6-py313h5eee18b_2.conda", + "sha256": "e8b63564435784af273ef7a9e99955e3675f0798b294a103d2840f258f051f41", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "libgcc-ng >=11.2.0", + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1736868559000, + "size": 93055, + "requested_spec": "pkgs/main/linux-64::pycosat==0.6.6=py313h5eee18b_2", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pycosat-0.6.6-py313h5eee18b_2.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pycosat-0.6.6-py313h5eee18b_2", + "files": [ + "lib/python3.13/site-packages/__pycache__/test_pycosat.cpython-313.pyc", + "lib/python3.13/site-packages/pycosat-0.6.6.dist-info/AUTHORS.md", + "lib/python3.13/site-packages/pycosat-0.6.6.dist-info/INSTALLER", + "lib/python3.13/site-packages/pycosat-0.6.6.dist-info/LICENSE", + "lib/python3.13/site-packages/pycosat-0.6.6.dist-info/METADATA", + "lib/python3.13/site-packages/pycosat-0.6.6.dist-info/RECORD", + "lib/python3.13/site-packages/pycosat-0.6.6.dist-info/REQUESTED", + "lib/python3.13/site-packages/pycosat-0.6.6.dist-info/WHEEL", + "lib/python3.13/site-packages/pycosat-0.6.6.dist-info/direct_url.json", + "lib/python3.13/site-packages/pycosat-0.6.6.dist-info/top_level.txt", + "lib/python3.13/site-packages/pycosat.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/site-packages/test_pycosat.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pycosat-0.6.6-py313h5eee18b_2", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/pycparser-2.23-py313h06a4308_0.json b/miniconda3/conda-meta/pycparser-2.23-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..ccdc2fc9517de6a50706edbb69155630a06b51f5 --- /dev/null +++ b/miniconda3/conda-meta/pycparser-2.23-py313h06a4308_0.json @@ -0,0 +1,79 @@ +{ + "name": "pycparser", + "version": "2.23", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "pycparser-2.23-py313h06a4308_0.conda", + "md5": "83153b618937780dfcf0eea5cf2536d8", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/pycparser-2.23-py313h06a4308_0.conda", + "sha256": "732e3ef6126f3d033e8cc8cd22ba2382118258e81c4be8f34e9dad25bd59f1a5", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "BSD-3-Clause", + "license_family": "BSD", + "timestamp": 1757496057000, + "size": 281676, + "requested_spec": "pkgs/main/linux-64::pycparser==2.23=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pycparser-2.23-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pycparser-2.23-py313h06a4308_0", + "files": [ + "lib/python3.13/site-packages/pycparser-2.23.dist-info/INSTALLER", + "lib/python3.13/site-packages/pycparser-2.23.dist-info/METADATA", + "lib/python3.13/site-packages/pycparser-2.23.dist-info/RECORD", + "lib/python3.13/site-packages/pycparser-2.23.dist-info/REQUESTED", + "lib/python3.13/site-packages/pycparser-2.23.dist-info/WHEEL", + "lib/python3.13/site-packages/pycparser-2.23.dist-info/direct_url.json", + "lib/python3.13/site-packages/pycparser-2.23.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/pycparser-2.23.dist-info/top_level.txt", + "lib/python3.13/site-packages/pycparser/__init__.py", + "lib/python3.13/site-packages/pycparser/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pycparser/__pycache__/_ast_gen.cpython-313.pyc", + "lib/python3.13/site-packages/pycparser/__pycache__/_build_tables.cpython-313.pyc", + "lib/python3.13/site-packages/pycparser/__pycache__/ast_transforms.cpython-313.pyc", + "lib/python3.13/site-packages/pycparser/__pycache__/c_ast.cpython-313.pyc", + "lib/python3.13/site-packages/pycparser/__pycache__/c_generator.cpython-313.pyc", + "lib/python3.13/site-packages/pycparser/__pycache__/c_lexer.cpython-313.pyc", + "lib/python3.13/site-packages/pycparser/__pycache__/c_parser.cpython-313.pyc", + "lib/python3.13/site-packages/pycparser/__pycache__/lextab.cpython-313.pyc", + "lib/python3.13/site-packages/pycparser/__pycache__/plyparser.cpython-313.pyc", + "lib/python3.13/site-packages/pycparser/__pycache__/yacctab.cpython-313.pyc", + "lib/python3.13/site-packages/pycparser/_ast_gen.py", + "lib/python3.13/site-packages/pycparser/_build_tables.py", + "lib/python3.13/site-packages/pycparser/_c_ast.cfg", + "lib/python3.13/site-packages/pycparser/ast_transforms.py", + "lib/python3.13/site-packages/pycparser/c_ast.py", + "lib/python3.13/site-packages/pycparser/c_generator.py", + "lib/python3.13/site-packages/pycparser/c_lexer.py", + "lib/python3.13/site-packages/pycparser/c_parser.py", + "lib/python3.13/site-packages/pycparser/lextab.py", + "lib/python3.13/site-packages/pycparser/ply/__init__.py", + "lib/python3.13/site-packages/pycparser/ply/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pycparser/ply/__pycache__/cpp.cpython-313.pyc", + "lib/python3.13/site-packages/pycparser/ply/__pycache__/ctokens.cpython-313.pyc", + "lib/python3.13/site-packages/pycparser/ply/__pycache__/lex.cpython-313.pyc", + "lib/python3.13/site-packages/pycparser/ply/__pycache__/yacc.cpython-313.pyc", + "lib/python3.13/site-packages/pycparser/ply/__pycache__/ygen.cpython-313.pyc", + "lib/python3.13/site-packages/pycparser/ply/cpp.py", + "lib/python3.13/site-packages/pycparser/ply/ctokens.py", + "lib/python3.13/site-packages/pycparser/ply/lex.py", + "lib/python3.13/site-packages/pycparser/ply/yacc.py", + "lib/python3.13/site-packages/pycparser/ply/ygen.py", + "lib/python3.13/site-packages/pycparser/plyparser.py", + "lib/python3.13/site-packages/pycparser/yacctab.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pycparser-2.23-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/pydantic-2.12.4-py313h06a4308_0.json b/miniconda3/conda-meta/pydantic-2.12.4-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..7fbd2f4ad0ab4f551322ef16a07b1b5b28522ece --- /dev/null +++ b/miniconda3/conda-meta/pydantic-2.12.4-py313h06a4308_0.json @@ -0,0 +1,261 @@ +{ + "name": "pydantic", + "version": "2.12.4", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "pydantic-2.12.4-py313h06a4308_0.conda", + "md5": "eb110130647dfd406d8af717e3fa83a1", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/pydantic-2.12.4-py313h06a4308_0.conda", + "sha256": "9264f0d69ddef9b89435a8fc4260e4ca5efef65ac5337755af5953bc1b10b160", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "annotated-types >=0.6.0", + "pydantic-core 2.41.5", + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313", + "typing-inspection >=0.4.2", + "typing_extensions >=4.14.1" + ], + "constrains": [ + "email-validator >=2.0.0" + ], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1764083550000, + "size": 1108479, + "requested_spec": "pkgs/main/linux-64::pydantic==2.12.4=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pydantic-2.12.4-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pydantic-2.12.4-py313h06a4308_0", + "files": [ + "lib/python3.13/site-packages/pydantic-2.12.4.dist-info/INSTALLER", + "lib/python3.13/site-packages/pydantic-2.12.4.dist-info/METADATA", + "lib/python3.13/site-packages/pydantic-2.12.4.dist-info/RECORD", + "lib/python3.13/site-packages/pydantic-2.12.4.dist-info/REQUESTED", + "lib/python3.13/site-packages/pydantic-2.12.4.dist-info/WHEEL", + "lib/python3.13/site-packages/pydantic-2.12.4.dist-info/direct_url.json", + "lib/python3.13/site-packages/pydantic-2.12.4.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/pydantic/__init__.py", + "lib/python3.13/site-packages/pydantic/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/_migration.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/alias_generators.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/aliases.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/annotated_handlers.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/class_validators.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/color.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/config.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/dataclasses.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/datetime_parse.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/decorator.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/env_settings.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/error_wrappers.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/errors.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/fields.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/functional_serializers.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/functional_validators.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/generics.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/json.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/json_schema.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/main.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/mypy.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/networks.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/parse.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/root_model.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/schema.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/tools.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/type_adapter.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/types.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/typing.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/validate_call_decorator.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/validators.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/version.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/__pycache__/warnings.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__init__.py", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_config.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_core_metadata.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_core_utils.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_dataclasses.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_decorators.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_decorators_v1.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_discriminated_union.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_docs_extraction.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_fields.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_forward_ref.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_generate_schema.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_generics.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_git.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_import_utils.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_internal_dataclass.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_known_annotated_metadata.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_mock_val_ser.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_model_construction.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_namespace_utils.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_repr.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_schema_gather.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_schema_generation_shared.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_serializers.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_signature.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_typing_extra.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_utils.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_validate_call.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/__pycache__/_validators.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/_internal/_config.py", + "lib/python3.13/site-packages/pydantic/_internal/_core_metadata.py", + "lib/python3.13/site-packages/pydantic/_internal/_core_utils.py", + "lib/python3.13/site-packages/pydantic/_internal/_dataclasses.py", + "lib/python3.13/site-packages/pydantic/_internal/_decorators.py", + "lib/python3.13/site-packages/pydantic/_internal/_decorators_v1.py", + "lib/python3.13/site-packages/pydantic/_internal/_discriminated_union.py", + "lib/python3.13/site-packages/pydantic/_internal/_docs_extraction.py", + "lib/python3.13/site-packages/pydantic/_internal/_fields.py", + "lib/python3.13/site-packages/pydantic/_internal/_forward_ref.py", + "lib/python3.13/site-packages/pydantic/_internal/_generate_schema.py", + "lib/python3.13/site-packages/pydantic/_internal/_generics.py", + "lib/python3.13/site-packages/pydantic/_internal/_git.py", + "lib/python3.13/site-packages/pydantic/_internal/_import_utils.py", + "lib/python3.13/site-packages/pydantic/_internal/_internal_dataclass.py", + "lib/python3.13/site-packages/pydantic/_internal/_known_annotated_metadata.py", + "lib/python3.13/site-packages/pydantic/_internal/_mock_val_ser.py", + "lib/python3.13/site-packages/pydantic/_internal/_model_construction.py", + "lib/python3.13/site-packages/pydantic/_internal/_namespace_utils.py", + "lib/python3.13/site-packages/pydantic/_internal/_repr.py", + "lib/python3.13/site-packages/pydantic/_internal/_schema_gather.py", + "lib/python3.13/site-packages/pydantic/_internal/_schema_generation_shared.py", + "lib/python3.13/site-packages/pydantic/_internal/_serializers.py", + "lib/python3.13/site-packages/pydantic/_internal/_signature.py", + "lib/python3.13/site-packages/pydantic/_internal/_typing_extra.py", + "lib/python3.13/site-packages/pydantic/_internal/_utils.py", + "lib/python3.13/site-packages/pydantic/_internal/_validate_call.py", + "lib/python3.13/site-packages/pydantic/_internal/_validators.py", + "lib/python3.13/site-packages/pydantic/_migration.py", + "lib/python3.13/site-packages/pydantic/alias_generators.py", + "lib/python3.13/site-packages/pydantic/aliases.py", + "lib/python3.13/site-packages/pydantic/annotated_handlers.py", + "lib/python3.13/site-packages/pydantic/class_validators.py", + "lib/python3.13/site-packages/pydantic/color.py", + "lib/python3.13/site-packages/pydantic/config.py", + "lib/python3.13/site-packages/pydantic/dataclasses.py", + "lib/python3.13/site-packages/pydantic/datetime_parse.py", + "lib/python3.13/site-packages/pydantic/decorator.py", + "lib/python3.13/site-packages/pydantic/deprecated/__init__.py", + "lib/python3.13/site-packages/pydantic/deprecated/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/deprecated/__pycache__/class_validators.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/deprecated/__pycache__/config.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/deprecated/__pycache__/copy_internals.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/deprecated/__pycache__/decorator.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/deprecated/__pycache__/json.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/deprecated/__pycache__/parse.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/deprecated/__pycache__/tools.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/deprecated/class_validators.py", + "lib/python3.13/site-packages/pydantic/deprecated/config.py", + "lib/python3.13/site-packages/pydantic/deprecated/copy_internals.py", + "lib/python3.13/site-packages/pydantic/deprecated/decorator.py", + "lib/python3.13/site-packages/pydantic/deprecated/json.py", + "lib/python3.13/site-packages/pydantic/deprecated/parse.py", + "lib/python3.13/site-packages/pydantic/deprecated/tools.py", + "lib/python3.13/site-packages/pydantic/env_settings.py", + "lib/python3.13/site-packages/pydantic/error_wrappers.py", + "lib/python3.13/site-packages/pydantic/errors.py", + "lib/python3.13/site-packages/pydantic/experimental/__init__.py", + "lib/python3.13/site-packages/pydantic/experimental/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/experimental/__pycache__/arguments_schema.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/experimental/__pycache__/missing_sentinel.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/experimental/__pycache__/pipeline.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/experimental/arguments_schema.py", + "lib/python3.13/site-packages/pydantic/experimental/missing_sentinel.py", + "lib/python3.13/site-packages/pydantic/experimental/pipeline.py", + "lib/python3.13/site-packages/pydantic/fields.py", + "lib/python3.13/site-packages/pydantic/functional_serializers.py", + "lib/python3.13/site-packages/pydantic/functional_validators.py", + "lib/python3.13/site-packages/pydantic/generics.py", + "lib/python3.13/site-packages/pydantic/json.py", + "lib/python3.13/site-packages/pydantic/json_schema.py", + "lib/python3.13/site-packages/pydantic/main.py", + "lib/python3.13/site-packages/pydantic/mypy.py", + "lib/python3.13/site-packages/pydantic/networks.py", + "lib/python3.13/site-packages/pydantic/parse.py", + "lib/python3.13/site-packages/pydantic/plugin/__init__.py", + "lib/python3.13/site-packages/pydantic/plugin/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/plugin/__pycache__/_loader.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/plugin/__pycache__/_schema_validator.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/plugin/_loader.py", + "lib/python3.13/site-packages/pydantic/plugin/_schema_validator.py", + "lib/python3.13/site-packages/pydantic/py.typed", + "lib/python3.13/site-packages/pydantic/root_model.py", + "lib/python3.13/site-packages/pydantic/schema.py", + "lib/python3.13/site-packages/pydantic/tools.py", + "lib/python3.13/site-packages/pydantic/type_adapter.py", + "lib/python3.13/site-packages/pydantic/types.py", + "lib/python3.13/site-packages/pydantic/typing.py", + "lib/python3.13/site-packages/pydantic/utils.py", + "lib/python3.13/site-packages/pydantic/v1/__init__.py", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/_hypothesis_plugin.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/annotated_types.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/class_validators.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/color.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/config.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/dataclasses.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/datetime_parse.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/decorator.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/env_settings.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/error_wrappers.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/errors.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/fields.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/generics.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/json.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/main.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/mypy.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/networks.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/parse.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/schema.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/tools.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/types.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/typing.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/validators.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/__pycache__/version.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic/v1/_hypothesis_plugin.py", + "lib/python3.13/site-packages/pydantic/v1/annotated_types.py", + "lib/python3.13/site-packages/pydantic/v1/class_validators.py", + "lib/python3.13/site-packages/pydantic/v1/color.py", + "lib/python3.13/site-packages/pydantic/v1/config.py", + "lib/python3.13/site-packages/pydantic/v1/dataclasses.py", + "lib/python3.13/site-packages/pydantic/v1/datetime_parse.py", + "lib/python3.13/site-packages/pydantic/v1/decorator.py", + "lib/python3.13/site-packages/pydantic/v1/env_settings.py", + "lib/python3.13/site-packages/pydantic/v1/error_wrappers.py", + "lib/python3.13/site-packages/pydantic/v1/errors.py", + "lib/python3.13/site-packages/pydantic/v1/fields.py", + "lib/python3.13/site-packages/pydantic/v1/generics.py", + "lib/python3.13/site-packages/pydantic/v1/json.py", + "lib/python3.13/site-packages/pydantic/v1/main.py", + "lib/python3.13/site-packages/pydantic/v1/mypy.py", + "lib/python3.13/site-packages/pydantic/v1/networks.py", + "lib/python3.13/site-packages/pydantic/v1/parse.py", + "lib/python3.13/site-packages/pydantic/v1/py.typed", + "lib/python3.13/site-packages/pydantic/v1/schema.py", + "lib/python3.13/site-packages/pydantic/v1/tools.py", + "lib/python3.13/site-packages/pydantic/v1/types.py", + "lib/python3.13/site-packages/pydantic/v1/typing.py", + "lib/python3.13/site-packages/pydantic/v1/utils.py", + "lib/python3.13/site-packages/pydantic/v1/validators.py", + "lib/python3.13/site-packages/pydantic/v1/version.py", + "lib/python3.13/site-packages/pydantic/validate_call_decorator.py", + "lib/python3.13/site-packages/pydantic/validators.py", + "lib/python3.13/site-packages/pydantic/version.py", + "lib/python3.13/site-packages/pydantic/warnings.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pydantic-2.12.4-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/pydantic-core-2.41.5-py313h498d7c9_1.json b/miniconda3/conda-meta/pydantic-core-2.41.5-py313h498d7c9_1.json new file mode 100644 index 0000000000000000000000000000000000000000..86c0ea369d3cae0d90def96757e684719c810968 --- /dev/null +++ b/miniconda3/conda-meta/pydantic-core-2.41.5-py313h498d7c9_1.json @@ -0,0 +1,54 @@ +{ + "name": "pydantic-core", + "version": "2.41.5", + "build": "py313h498d7c9_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "pydantic-core-2.41.5-py313h498d7c9_1.conda", + "md5": "d943970fbb63d8d9e6f5d805f2a6fbdf", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/pydantic-core-2.41.5-py313h498d7c9_1.conda", + "sha256": "4964ef04532cce861183176123287df387db41329ad24a7256518b1ec1bb99b9", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "libgcc", + "libgcc-ng >=11.2.0", + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313", + "typing-extensions >=4.14.1" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1764009859000, + "size": 1932101, + "requested_spec": "pkgs/main/linux-64::pydantic-core==2.41.5=py313h498d7c9_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pydantic-core-2.41.5-py313h498d7c9_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pydantic-core-2.41.5-py313h498d7c9_1", + "files": [ + "lib/python3.13/site-packages/pydantic_core-2.41.5.dist-info/INSTALLER", + "lib/python3.13/site-packages/pydantic_core-2.41.5.dist-info/METADATA", + "lib/python3.13/site-packages/pydantic_core-2.41.5.dist-info/RECORD", + "lib/python3.13/site-packages/pydantic_core-2.41.5.dist-info/REQUESTED", + "lib/python3.13/site-packages/pydantic_core-2.41.5.dist-info/WHEEL", + "lib/python3.13/site-packages/pydantic_core-2.41.5.dist-info/direct_url.json", + "lib/python3.13/site-packages/pydantic_core-2.41.5.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/pydantic_core/__init__.py", + "lib/python3.13/site-packages/pydantic_core/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic_core/__pycache__/core_schema.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic_core/_pydantic_core.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/site-packages/pydantic_core/_pydantic_core.pyi", + "lib/python3.13/site-packages/pydantic_core/core_schema.py", + "lib/python3.13/site-packages/pydantic_core/py.typed" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pydantic-core-2.41.5-py313h498d7c9_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/pydantic-settings-2.12.0-py313h06a4308_0.json b/miniconda3/conda-meta/pydantic-settings-2.12.0-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..1612cbeec0cdd62e514638342b3003803038d286 --- /dev/null +++ b/miniconda3/conda-meta/pydantic-settings-2.12.0-py313h06a4308_0.json @@ -0,0 +1,98 @@ +{ + "name": "pydantic-settings", + "version": "2.12.0", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "pydantic-settings-2.12.0-py313h06a4308_0.conda", + "md5": "52b991b3676ad69221ac4efe952ea622", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/pydantic-settings-2.12.0-py313h06a4308_0.conda", + "sha256": "cb5a99e9367a101fda496ad62cb52e8931772d8bb8f5853b32650d7644afc229", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "pydantic >=2.7.0", + "python >=3.13,<3.14.0a0", + "python-dotenv >=0.21.0", + "python_abi 3.13.* *_cp313", + "typing-inspection >=0.4.0" + ], + "constrains": [ + "google-cloud-secret-manager >=2.23.1", + "azure-keyvault-secrets >=4.8.0", + "azure-identity >=1.16.0", + "pyyaml >=6.0.1", + "boto3 >=1.35.0", + "tomli >=2.0.1" + ], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1764165180000, + "size": 151041, + "requested_spec": "pkgs/main/linux-64::pydantic-settings==2.12.0=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pydantic-settings-2.12.0-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pydantic-settings-2.12.0-py313h06a4308_0", + "files": [ + "lib/python3.13/site-packages/pydantic_settings-2.12.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/pydantic_settings-2.12.0.dist-info/METADATA", + "lib/python3.13/site-packages/pydantic_settings-2.12.0.dist-info/RECORD", + "lib/python3.13/site-packages/pydantic_settings-2.12.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/pydantic_settings-2.12.0.dist-info/WHEEL", + "lib/python3.13/site-packages/pydantic_settings-2.12.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/pydantic_settings-2.12.0.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/pydantic_settings/__init__.py", + "lib/python3.13/site-packages/pydantic_settings/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic_settings/__pycache__/exceptions.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic_settings/__pycache__/main.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic_settings/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic_settings/__pycache__/version.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic_settings/exceptions.py", + "lib/python3.13/site-packages/pydantic_settings/main.py", + "lib/python3.13/site-packages/pydantic_settings/py.typed", + "lib/python3.13/site-packages/pydantic_settings/sources/__init__.py", + "lib/python3.13/site-packages/pydantic_settings/sources/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic_settings/sources/__pycache__/base.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic_settings/sources/__pycache__/types.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic_settings/sources/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic_settings/sources/base.py", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/__init__.py", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/__pycache__/aws.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/__pycache__/azure.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/__pycache__/cli.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/__pycache__/dotenv.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/__pycache__/env.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/__pycache__/gcp.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/__pycache__/json.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/__pycache__/nested_secrets.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/__pycache__/pyproject.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/__pycache__/secrets.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/__pycache__/toml.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/__pycache__/yaml.cpython-313.pyc", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/aws.py", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/azure.py", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/cli.py", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/dotenv.py", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/env.py", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/gcp.py", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/json.py", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/nested_secrets.py", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/pyproject.py", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/secrets.py", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/toml.py", + "lib/python3.13/site-packages/pydantic_settings/sources/providers/yaml.py", + "lib/python3.13/site-packages/pydantic_settings/sources/types.py", + "lib/python3.13/site-packages/pydantic_settings/sources/utils.py", + "lib/python3.13/site-packages/pydantic_settings/utils.py", + "lib/python3.13/site-packages/pydantic_settings/version.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pydantic-settings-2.12.0-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/pygments-2.19.2-py313h06a4308_0.json b/miniconda3/conda-meta/pygments-2.19.2-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..90374869a3b728c0f77d9cc85dbca566fe474fd5 --- /dev/null +++ b/miniconda3/conda-meta/pygments-2.19.2-py313h06a4308_0.json @@ -0,0 +1,732 @@ +{ + "name": "pygments", + "version": "2.19.2", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "pygments-2.19.2-py313h06a4308_0.conda", + "md5": "93f96a6dab840a4f2a94aa0e490ce840", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/pygments-2.19.2-py313h06a4308_0.conda", + "sha256": "db29f0617602cc1877c699d56780f3c1efa5a26f3f7358b1bf40c5b5ab0bcc9b", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "BSD-2-Clause", + "license_family": "BSD", + "timestamp": 1762431427000, + "size": 4938347, + "requested_spec": "pkgs/main/linux-64::pygments==2.19.2=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pygments-2.19.2-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pygments-2.19.2-py313h06a4308_0", + "files": [ + "bin/pygmentize", + "lib/python3.13/site-packages/pygments-2.19.2.dist-info/INSTALLER", + "lib/python3.13/site-packages/pygments-2.19.2.dist-info/METADATA", + "lib/python3.13/site-packages/pygments-2.19.2.dist-info/RECORD", + "lib/python3.13/site-packages/pygments-2.19.2.dist-info/REQUESTED", + "lib/python3.13/site-packages/pygments-2.19.2.dist-info/WHEEL", + "lib/python3.13/site-packages/pygments-2.19.2.dist-info/direct_url.json", + "lib/python3.13/site-packages/pygments-2.19.2.dist-info/entry_points.txt", + "lib/python3.13/site-packages/pygments-2.19.2.dist-info/licenses/AUTHORS", + "lib/python3.13/site-packages/pygments-2.19.2.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/pygments/__init__.py", + "lib/python3.13/site-packages/pygments/__main__.py", + "lib/python3.13/site-packages/pygments/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/__pycache__/cmdline.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/__pycache__/console.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/__pycache__/filter.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/__pycache__/formatter.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/__pycache__/lexer.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/__pycache__/modeline.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/__pycache__/plugin.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/__pycache__/regexopt.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/__pycache__/scanner.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/__pycache__/sphinxext.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/__pycache__/style.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/__pycache__/token.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/__pycache__/unistring.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/__pycache__/util.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/cmdline.py", + "lib/python3.13/site-packages/pygments/console.py", + "lib/python3.13/site-packages/pygments/filter.py", + "lib/python3.13/site-packages/pygments/filters/__init__.py", + "lib/python3.13/site-packages/pygments/filters/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/formatter.py", + "lib/python3.13/site-packages/pygments/formatters/__init__.py", + "lib/python3.13/site-packages/pygments/formatters/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/formatters/__pycache__/_mapping.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/formatters/__pycache__/bbcode.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/formatters/__pycache__/groff.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/formatters/__pycache__/html.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/formatters/__pycache__/img.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/formatters/__pycache__/irc.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/formatters/__pycache__/latex.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/formatters/__pycache__/other.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/formatters/__pycache__/pangomarkup.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/formatters/__pycache__/rtf.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/formatters/__pycache__/svg.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/formatters/__pycache__/terminal.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/formatters/__pycache__/terminal256.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/formatters/_mapping.py", + "lib/python3.13/site-packages/pygments/formatters/bbcode.py", + "lib/python3.13/site-packages/pygments/formatters/groff.py", + "lib/python3.13/site-packages/pygments/formatters/html.py", + "lib/python3.13/site-packages/pygments/formatters/img.py", + "lib/python3.13/site-packages/pygments/formatters/irc.py", + "lib/python3.13/site-packages/pygments/formatters/latex.py", + "lib/python3.13/site-packages/pygments/formatters/other.py", + "lib/python3.13/site-packages/pygments/formatters/pangomarkup.py", + "lib/python3.13/site-packages/pygments/formatters/rtf.py", + "lib/python3.13/site-packages/pygments/formatters/svg.py", + "lib/python3.13/site-packages/pygments/formatters/terminal.py", + "lib/python3.13/site-packages/pygments/formatters/terminal256.py", + "lib/python3.13/site-packages/pygments/lexer.py", + "lib/python3.13/site-packages/pygments/lexers/__init__.py", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_ada_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_asy_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_cl_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_cocoa_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_csound_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_css_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_googlesql_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_julia_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_lasso_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_lilypond_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_lua_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_luau_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_mapping.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_mql_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_mysql_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_openedge_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_php_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_postgres_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_qlik_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_scheme_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_scilab_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_sourcemod_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_sql_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_stan_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_stata_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_tsql_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_usd_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_vbscript_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/_vim_builtins.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/actionscript.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/ada.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/agile.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/algebra.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/ambient.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/amdgpu.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/ampl.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/apdlexer.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/apl.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/archetype.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/arrow.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/arturo.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/asc.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/asm.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/asn1.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/automation.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/bare.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/basic.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/bdd.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/berry.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/bibtex.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/blueprint.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/boa.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/bqn.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/business.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/c_cpp.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/c_like.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/capnproto.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/carbon.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/cddl.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/chapel.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/clean.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/codeql.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/comal.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/compiled.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/configs.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/console.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/cplint.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/crystal.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/csound.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/css.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/d.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/dalvik.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/data.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/dax.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/devicetree.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/diff.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/dns.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/dotnet.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/dsls.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/dylan.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/ecl.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/eiffel.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/elm.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/elpi.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/email.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/erlang.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/esoteric.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/ezhil.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/factor.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/fantom.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/felix.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/fift.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/floscript.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/forth.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/fortran.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/foxpro.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/freefem.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/func.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/functional.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/futhark.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/gcodelexer.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/gdscript.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/gleam.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/go.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/grammar_notation.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/graph.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/graphics.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/graphql.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/graphviz.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/gsql.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/hare.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/haskell.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/haxe.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/hdl.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/hexdump.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/html.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/idl.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/igor.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/inferno.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/installers.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/int_fiction.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/iolang.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/j.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/javascript.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/jmespath.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/jslt.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/json5.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/jsonnet.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/jsx.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/julia.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/jvm.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/kuin.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/kusto.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/ldap.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/lean.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/lilypond.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/lisp.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/macaulay2.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/make.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/maple.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/markup.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/math.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/matlab.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/maxima.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/meson.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/mime.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/minecraft.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/mips.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/ml.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/modeling.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/modula2.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/mojo.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/monte.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/mosel.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/ncl.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/nimrod.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/nit.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/nix.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/numbair.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/oberon.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/objective.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/ooc.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/openscad.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/other.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/parasail.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/parsers.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/pascal.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/pawn.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/pddl.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/perl.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/phix.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/php.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/pointless.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/pony.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/praat.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/procfile.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/prolog.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/promql.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/prql.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/ptx.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/python.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/q.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/qlik.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/qvt.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/r.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/rdf.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/rebol.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/rego.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/resource.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/ride.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/rita.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/rnc.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/roboconf.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/robotframework.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/ruby.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/rust.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/sas.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/savi.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/scdoc.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/scripting.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/sgf.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/shell.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/sieve.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/slash.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/smalltalk.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/smithy.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/smv.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/snobol.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/solidity.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/soong.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/sophia.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/special.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/spice.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/sql.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/srcinfo.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/stata.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/supercollider.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/tablegen.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/tact.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/tal.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/tcl.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/teal.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/templates.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/teraterm.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/testing.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/text.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/textedit.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/textfmts.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/theorem.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/thingsdb.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/tlb.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/tls.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/tnt.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/trafficscript.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/typoscript.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/typst.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/ul4.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/unicon.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/urbi.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/usd.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/varnish.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/verification.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/verifpal.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/vip.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/vyper.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/web.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/webassembly.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/webidl.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/webmisc.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/wgsl.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/whiley.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/wowtoc.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/wren.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/x10.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/xorg.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/yang.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/yara.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/__pycache__/zig.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/lexers/_ada_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_asy_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_cl_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_cocoa_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_csound_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_css_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_googlesql_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_julia_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_lasso_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_lilypond_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_lua_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_luau_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_mapping.py", + "lib/python3.13/site-packages/pygments/lexers/_mql_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_mysql_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_openedge_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_php_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_postgres_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_qlik_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_scheme_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_scilab_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_sourcemod_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_sql_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_stan_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_stata_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_tsql_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_usd_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_vbscript_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/_vim_builtins.py", + "lib/python3.13/site-packages/pygments/lexers/actionscript.py", + "lib/python3.13/site-packages/pygments/lexers/ada.py", + "lib/python3.13/site-packages/pygments/lexers/agile.py", + "lib/python3.13/site-packages/pygments/lexers/algebra.py", + "lib/python3.13/site-packages/pygments/lexers/ambient.py", + "lib/python3.13/site-packages/pygments/lexers/amdgpu.py", + "lib/python3.13/site-packages/pygments/lexers/ampl.py", + "lib/python3.13/site-packages/pygments/lexers/apdlexer.py", + "lib/python3.13/site-packages/pygments/lexers/apl.py", + "lib/python3.13/site-packages/pygments/lexers/archetype.py", + "lib/python3.13/site-packages/pygments/lexers/arrow.py", + "lib/python3.13/site-packages/pygments/lexers/arturo.py", + "lib/python3.13/site-packages/pygments/lexers/asc.py", + "lib/python3.13/site-packages/pygments/lexers/asm.py", + "lib/python3.13/site-packages/pygments/lexers/asn1.py", + "lib/python3.13/site-packages/pygments/lexers/automation.py", + "lib/python3.13/site-packages/pygments/lexers/bare.py", + "lib/python3.13/site-packages/pygments/lexers/basic.py", + "lib/python3.13/site-packages/pygments/lexers/bdd.py", + "lib/python3.13/site-packages/pygments/lexers/berry.py", + "lib/python3.13/site-packages/pygments/lexers/bibtex.py", + "lib/python3.13/site-packages/pygments/lexers/blueprint.py", + "lib/python3.13/site-packages/pygments/lexers/boa.py", + "lib/python3.13/site-packages/pygments/lexers/bqn.py", + "lib/python3.13/site-packages/pygments/lexers/business.py", + "lib/python3.13/site-packages/pygments/lexers/c_cpp.py", + "lib/python3.13/site-packages/pygments/lexers/c_like.py", + "lib/python3.13/site-packages/pygments/lexers/capnproto.py", + "lib/python3.13/site-packages/pygments/lexers/carbon.py", + "lib/python3.13/site-packages/pygments/lexers/cddl.py", + "lib/python3.13/site-packages/pygments/lexers/chapel.py", + "lib/python3.13/site-packages/pygments/lexers/clean.py", + "lib/python3.13/site-packages/pygments/lexers/codeql.py", + "lib/python3.13/site-packages/pygments/lexers/comal.py", + "lib/python3.13/site-packages/pygments/lexers/compiled.py", + "lib/python3.13/site-packages/pygments/lexers/configs.py", + "lib/python3.13/site-packages/pygments/lexers/console.py", + "lib/python3.13/site-packages/pygments/lexers/cplint.py", + "lib/python3.13/site-packages/pygments/lexers/crystal.py", + "lib/python3.13/site-packages/pygments/lexers/csound.py", + "lib/python3.13/site-packages/pygments/lexers/css.py", + "lib/python3.13/site-packages/pygments/lexers/d.py", + "lib/python3.13/site-packages/pygments/lexers/dalvik.py", + "lib/python3.13/site-packages/pygments/lexers/data.py", + "lib/python3.13/site-packages/pygments/lexers/dax.py", + "lib/python3.13/site-packages/pygments/lexers/devicetree.py", + "lib/python3.13/site-packages/pygments/lexers/diff.py", + "lib/python3.13/site-packages/pygments/lexers/dns.py", + "lib/python3.13/site-packages/pygments/lexers/dotnet.py", + "lib/python3.13/site-packages/pygments/lexers/dsls.py", + "lib/python3.13/site-packages/pygments/lexers/dylan.py", + "lib/python3.13/site-packages/pygments/lexers/ecl.py", + "lib/python3.13/site-packages/pygments/lexers/eiffel.py", + "lib/python3.13/site-packages/pygments/lexers/elm.py", + "lib/python3.13/site-packages/pygments/lexers/elpi.py", + "lib/python3.13/site-packages/pygments/lexers/email.py", + "lib/python3.13/site-packages/pygments/lexers/erlang.py", + "lib/python3.13/site-packages/pygments/lexers/esoteric.py", + "lib/python3.13/site-packages/pygments/lexers/ezhil.py", + "lib/python3.13/site-packages/pygments/lexers/factor.py", + "lib/python3.13/site-packages/pygments/lexers/fantom.py", + "lib/python3.13/site-packages/pygments/lexers/felix.py", + "lib/python3.13/site-packages/pygments/lexers/fift.py", + "lib/python3.13/site-packages/pygments/lexers/floscript.py", + "lib/python3.13/site-packages/pygments/lexers/forth.py", + "lib/python3.13/site-packages/pygments/lexers/fortran.py", + "lib/python3.13/site-packages/pygments/lexers/foxpro.py", + "lib/python3.13/site-packages/pygments/lexers/freefem.py", + "lib/python3.13/site-packages/pygments/lexers/func.py", + "lib/python3.13/site-packages/pygments/lexers/functional.py", + "lib/python3.13/site-packages/pygments/lexers/futhark.py", + "lib/python3.13/site-packages/pygments/lexers/gcodelexer.py", + "lib/python3.13/site-packages/pygments/lexers/gdscript.py", + "lib/python3.13/site-packages/pygments/lexers/gleam.py", + "lib/python3.13/site-packages/pygments/lexers/go.py", + "lib/python3.13/site-packages/pygments/lexers/grammar_notation.py", + "lib/python3.13/site-packages/pygments/lexers/graph.py", + "lib/python3.13/site-packages/pygments/lexers/graphics.py", + "lib/python3.13/site-packages/pygments/lexers/graphql.py", + "lib/python3.13/site-packages/pygments/lexers/graphviz.py", + "lib/python3.13/site-packages/pygments/lexers/gsql.py", + "lib/python3.13/site-packages/pygments/lexers/hare.py", + "lib/python3.13/site-packages/pygments/lexers/haskell.py", + "lib/python3.13/site-packages/pygments/lexers/haxe.py", + "lib/python3.13/site-packages/pygments/lexers/hdl.py", + "lib/python3.13/site-packages/pygments/lexers/hexdump.py", + "lib/python3.13/site-packages/pygments/lexers/html.py", + "lib/python3.13/site-packages/pygments/lexers/idl.py", + "lib/python3.13/site-packages/pygments/lexers/igor.py", + "lib/python3.13/site-packages/pygments/lexers/inferno.py", + "lib/python3.13/site-packages/pygments/lexers/installers.py", + "lib/python3.13/site-packages/pygments/lexers/int_fiction.py", + "lib/python3.13/site-packages/pygments/lexers/iolang.py", + "lib/python3.13/site-packages/pygments/lexers/j.py", + "lib/python3.13/site-packages/pygments/lexers/javascript.py", + "lib/python3.13/site-packages/pygments/lexers/jmespath.py", + "lib/python3.13/site-packages/pygments/lexers/jslt.py", + "lib/python3.13/site-packages/pygments/lexers/json5.py", + "lib/python3.13/site-packages/pygments/lexers/jsonnet.py", + "lib/python3.13/site-packages/pygments/lexers/jsx.py", + "lib/python3.13/site-packages/pygments/lexers/julia.py", + "lib/python3.13/site-packages/pygments/lexers/jvm.py", + "lib/python3.13/site-packages/pygments/lexers/kuin.py", + "lib/python3.13/site-packages/pygments/lexers/kusto.py", + "lib/python3.13/site-packages/pygments/lexers/ldap.py", + "lib/python3.13/site-packages/pygments/lexers/lean.py", + "lib/python3.13/site-packages/pygments/lexers/lilypond.py", + "lib/python3.13/site-packages/pygments/lexers/lisp.py", + "lib/python3.13/site-packages/pygments/lexers/macaulay2.py", + "lib/python3.13/site-packages/pygments/lexers/make.py", + "lib/python3.13/site-packages/pygments/lexers/maple.py", + "lib/python3.13/site-packages/pygments/lexers/markup.py", + "lib/python3.13/site-packages/pygments/lexers/math.py", + "lib/python3.13/site-packages/pygments/lexers/matlab.py", + "lib/python3.13/site-packages/pygments/lexers/maxima.py", + "lib/python3.13/site-packages/pygments/lexers/meson.py", + "lib/python3.13/site-packages/pygments/lexers/mime.py", + "lib/python3.13/site-packages/pygments/lexers/minecraft.py", + "lib/python3.13/site-packages/pygments/lexers/mips.py", + "lib/python3.13/site-packages/pygments/lexers/ml.py", + "lib/python3.13/site-packages/pygments/lexers/modeling.py", + "lib/python3.13/site-packages/pygments/lexers/modula2.py", + "lib/python3.13/site-packages/pygments/lexers/mojo.py", + "lib/python3.13/site-packages/pygments/lexers/monte.py", + "lib/python3.13/site-packages/pygments/lexers/mosel.py", + "lib/python3.13/site-packages/pygments/lexers/ncl.py", + "lib/python3.13/site-packages/pygments/lexers/nimrod.py", + "lib/python3.13/site-packages/pygments/lexers/nit.py", + "lib/python3.13/site-packages/pygments/lexers/nix.py", + "lib/python3.13/site-packages/pygments/lexers/numbair.py", + "lib/python3.13/site-packages/pygments/lexers/oberon.py", + "lib/python3.13/site-packages/pygments/lexers/objective.py", + "lib/python3.13/site-packages/pygments/lexers/ooc.py", + "lib/python3.13/site-packages/pygments/lexers/openscad.py", + "lib/python3.13/site-packages/pygments/lexers/other.py", + "lib/python3.13/site-packages/pygments/lexers/parasail.py", + "lib/python3.13/site-packages/pygments/lexers/parsers.py", + "lib/python3.13/site-packages/pygments/lexers/pascal.py", + "lib/python3.13/site-packages/pygments/lexers/pawn.py", + "lib/python3.13/site-packages/pygments/lexers/pddl.py", + "lib/python3.13/site-packages/pygments/lexers/perl.py", + "lib/python3.13/site-packages/pygments/lexers/phix.py", + "lib/python3.13/site-packages/pygments/lexers/php.py", + "lib/python3.13/site-packages/pygments/lexers/pointless.py", + "lib/python3.13/site-packages/pygments/lexers/pony.py", + "lib/python3.13/site-packages/pygments/lexers/praat.py", + "lib/python3.13/site-packages/pygments/lexers/procfile.py", + "lib/python3.13/site-packages/pygments/lexers/prolog.py", + "lib/python3.13/site-packages/pygments/lexers/promql.py", + "lib/python3.13/site-packages/pygments/lexers/prql.py", + "lib/python3.13/site-packages/pygments/lexers/ptx.py", + "lib/python3.13/site-packages/pygments/lexers/python.py", + "lib/python3.13/site-packages/pygments/lexers/q.py", + "lib/python3.13/site-packages/pygments/lexers/qlik.py", + "lib/python3.13/site-packages/pygments/lexers/qvt.py", + "lib/python3.13/site-packages/pygments/lexers/r.py", + "lib/python3.13/site-packages/pygments/lexers/rdf.py", + "lib/python3.13/site-packages/pygments/lexers/rebol.py", + "lib/python3.13/site-packages/pygments/lexers/rego.py", + "lib/python3.13/site-packages/pygments/lexers/resource.py", + "lib/python3.13/site-packages/pygments/lexers/ride.py", + "lib/python3.13/site-packages/pygments/lexers/rita.py", + "lib/python3.13/site-packages/pygments/lexers/rnc.py", + "lib/python3.13/site-packages/pygments/lexers/roboconf.py", + "lib/python3.13/site-packages/pygments/lexers/robotframework.py", + "lib/python3.13/site-packages/pygments/lexers/ruby.py", + "lib/python3.13/site-packages/pygments/lexers/rust.py", + "lib/python3.13/site-packages/pygments/lexers/sas.py", + "lib/python3.13/site-packages/pygments/lexers/savi.py", + "lib/python3.13/site-packages/pygments/lexers/scdoc.py", + "lib/python3.13/site-packages/pygments/lexers/scripting.py", + "lib/python3.13/site-packages/pygments/lexers/sgf.py", + "lib/python3.13/site-packages/pygments/lexers/shell.py", + "lib/python3.13/site-packages/pygments/lexers/sieve.py", + "lib/python3.13/site-packages/pygments/lexers/slash.py", + "lib/python3.13/site-packages/pygments/lexers/smalltalk.py", + "lib/python3.13/site-packages/pygments/lexers/smithy.py", + "lib/python3.13/site-packages/pygments/lexers/smv.py", + "lib/python3.13/site-packages/pygments/lexers/snobol.py", + "lib/python3.13/site-packages/pygments/lexers/solidity.py", + "lib/python3.13/site-packages/pygments/lexers/soong.py", + "lib/python3.13/site-packages/pygments/lexers/sophia.py", + "lib/python3.13/site-packages/pygments/lexers/special.py", + "lib/python3.13/site-packages/pygments/lexers/spice.py", + "lib/python3.13/site-packages/pygments/lexers/sql.py", + "lib/python3.13/site-packages/pygments/lexers/srcinfo.py", + "lib/python3.13/site-packages/pygments/lexers/stata.py", + "lib/python3.13/site-packages/pygments/lexers/supercollider.py", + "lib/python3.13/site-packages/pygments/lexers/tablegen.py", + "lib/python3.13/site-packages/pygments/lexers/tact.py", + "lib/python3.13/site-packages/pygments/lexers/tal.py", + "lib/python3.13/site-packages/pygments/lexers/tcl.py", + "lib/python3.13/site-packages/pygments/lexers/teal.py", + "lib/python3.13/site-packages/pygments/lexers/templates.py", + "lib/python3.13/site-packages/pygments/lexers/teraterm.py", + "lib/python3.13/site-packages/pygments/lexers/testing.py", + "lib/python3.13/site-packages/pygments/lexers/text.py", + "lib/python3.13/site-packages/pygments/lexers/textedit.py", + "lib/python3.13/site-packages/pygments/lexers/textfmts.py", + "lib/python3.13/site-packages/pygments/lexers/theorem.py", + "lib/python3.13/site-packages/pygments/lexers/thingsdb.py", + "lib/python3.13/site-packages/pygments/lexers/tlb.py", + "lib/python3.13/site-packages/pygments/lexers/tls.py", + "lib/python3.13/site-packages/pygments/lexers/tnt.py", + "lib/python3.13/site-packages/pygments/lexers/trafficscript.py", + "lib/python3.13/site-packages/pygments/lexers/typoscript.py", + "lib/python3.13/site-packages/pygments/lexers/typst.py", + "lib/python3.13/site-packages/pygments/lexers/ul4.py", + "lib/python3.13/site-packages/pygments/lexers/unicon.py", + "lib/python3.13/site-packages/pygments/lexers/urbi.py", + "lib/python3.13/site-packages/pygments/lexers/usd.py", + "lib/python3.13/site-packages/pygments/lexers/varnish.py", + "lib/python3.13/site-packages/pygments/lexers/verification.py", + "lib/python3.13/site-packages/pygments/lexers/verifpal.py", + "lib/python3.13/site-packages/pygments/lexers/vip.py", + "lib/python3.13/site-packages/pygments/lexers/vyper.py", + "lib/python3.13/site-packages/pygments/lexers/web.py", + "lib/python3.13/site-packages/pygments/lexers/webassembly.py", + "lib/python3.13/site-packages/pygments/lexers/webidl.py", + "lib/python3.13/site-packages/pygments/lexers/webmisc.py", + "lib/python3.13/site-packages/pygments/lexers/wgsl.py", + "lib/python3.13/site-packages/pygments/lexers/whiley.py", + "lib/python3.13/site-packages/pygments/lexers/wowtoc.py", + "lib/python3.13/site-packages/pygments/lexers/wren.py", + "lib/python3.13/site-packages/pygments/lexers/x10.py", + "lib/python3.13/site-packages/pygments/lexers/xorg.py", + "lib/python3.13/site-packages/pygments/lexers/yang.py", + "lib/python3.13/site-packages/pygments/lexers/yara.py", + "lib/python3.13/site-packages/pygments/lexers/zig.py", + "lib/python3.13/site-packages/pygments/modeline.py", + "lib/python3.13/site-packages/pygments/plugin.py", + "lib/python3.13/site-packages/pygments/regexopt.py", + "lib/python3.13/site-packages/pygments/scanner.py", + "lib/python3.13/site-packages/pygments/sphinxext.py", + "lib/python3.13/site-packages/pygments/style.py", + "lib/python3.13/site-packages/pygments/styles/__init__.py", + "lib/python3.13/site-packages/pygments/styles/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/_mapping.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/abap.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/algol.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/algol_nu.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/arduino.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/autumn.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/borland.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/bw.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/coffee.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/colorful.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/default.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/dracula.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/emacs.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/friendly.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/friendly_grayscale.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/fruity.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/gh_dark.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/gruvbox.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/igor.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/inkpot.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/lightbulb.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/lilypond.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/lovelace.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/manni.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/material.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/monokai.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/murphy.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/native.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/nord.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/onedark.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/paraiso_dark.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/paraiso_light.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/pastie.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/perldoc.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/rainbow_dash.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/rrt.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/sas.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/solarized.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/staroffice.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/stata_dark.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/stata_light.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/tango.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/trac.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/vim.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/vs.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/xcode.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/__pycache__/zenburn.cpython-313.pyc", + "lib/python3.13/site-packages/pygments/styles/_mapping.py", + "lib/python3.13/site-packages/pygments/styles/abap.py", + "lib/python3.13/site-packages/pygments/styles/algol.py", + "lib/python3.13/site-packages/pygments/styles/algol_nu.py", + "lib/python3.13/site-packages/pygments/styles/arduino.py", + "lib/python3.13/site-packages/pygments/styles/autumn.py", + "lib/python3.13/site-packages/pygments/styles/borland.py", + "lib/python3.13/site-packages/pygments/styles/bw.py", + "lib/python3.13/site-packages/pygments/styles/coffee.py", + "lib/python3.13/site-packages/pygments/styles/colorful.py", + "lib/python3.13/site-packages/pygments/styles/default.py", + "lib/python3.13/site-packages/pygments/styles/dracula.py", + "lib/python3.13/site-packages/pygments/styles/emacs.py", + "lib/python3.13/site-packages/pygments/styles/friendly.py", + "lib/python3.13/site-packages/pygments/styles/friendly_grayscale.py", + "lib/python3.13/site-packages/pygments/styles/fruity.py", + "lib/python3.13/site-packages/pygments/styles/gh_dark.py", + "lib/python3.13/site-packages/pygments/styles/gruvbox.py", + "lib/python3.13/site-packages/pygments/styles/igor.py", + "lib/python3.13/site-packages/pygments/styles/inkpot.py", + "lib/python3.13/site-packages/pygments/styles/lightbulb.py", + "lib/python3.13/site-packages/pygments/styles/lilypond.py", + "lib/python3.13/site-packages/pygments/styles/lovelace.py", + "lib/python3.13/site-packages/pygments/styles/manni.py", + "lib/python3.13/site-packages/pygments/styles/material.py", + "lib/python3.13/site-packages/pygments/styles/monokai.py", + "lib/python3.13/site-packages/pygments/styles/murphy.py", + "lib/python3.13/site-packages/pygments/styles/native.py", + "lib/python3.13/site-packages/pygments/styles/nord.py", + "lib/python3.13/site-packages/pygments/styles/onedark.py", + "lib/python3.13/site-packages/pygments/styles/paraiso_dark.py", + "lib/python3.13/site-packages/pygments/styles/paraiso_light.py", + "lib/python3.13/site-packages/pygments/styles/pastie.py", + "lib/python3.13/site-packages/pygments/styles/perldoc.py", + "lib/python3.13/site-packages/pygments/styles/rainbow_dash.py", + "lib/python3.13/site-packages/pygments/styles/rrt.py", + "lib/python3.13/site-packages/pygments/styles/sas.py", + "lib/python3.13/site-packages/pygments/styles/solarized.py", + "lib/python3.13/site-packages/pygments/styles/staroffice.py", + "lib/python3.13/site-packages/pygments/styles/stata_dark.py", + "lib/python3.13/site-packages/pygments/styles/stata_light.py", + "lib/python3.13/site-packages/pygments/styles/tango.py", + "lib/python3.13/site-packages/pygments/styles/trac.py", + "lib/python3.13/site-packages/pygments/styles/vim.py", + "lib/python3.13/site-packages/pygments/styles/vs.py", + "lib/python3.13/site-packages/pygments/styles/xcode.py", + "lib/python3.13/site-packages/pygments/styles/zenburn.py", + "lib/python3.13/site-packages/pygments/token.py", + "lib/python3.13/site-packages/pygments/unistring.py", + "lib/python3.13/site-packages/pygments/util.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/pygmentize", + "prefix_placeholder": "/home/task_176243137807904/conda-bld/pygments_1762431407645/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "27ddff5a410867183c693b0830d619af879bd4e598001d2b2b70bbb6433b9b0d", + "size_in_bytes": 469, + "sha256_in_prefix": "ec6a95c143ea055e17a48957924facc89eec5b55c6cdaf678572742384b8e473" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pygments-2.19.2-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/pyjwt-2.10.1-py313h06a4308_1.json b/miniconda3/conda-meta/pyjwt-2.10.1-py313h06a4308_1.json new file mode 100644 index 0000000000000000000000000000000000000000..c8ba5cff3c4fba9afb64366845c6b85b21447b1d --- /dev/null +++ b/miniconda3/conda-meta/pyjwt-2.10.1-py313h06a4308_1.json @@ -0,0 +1,72 @@ +{ + "name": "pyjwt", + "version": "2.10.1", + "build": "py313h06a4308_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "pyjwt-2.10.1-py313h06a4308_1.conda", + "md5": "8cf3e594e1de0f7fd393c4d202ab39df", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/pyjwt-2.10.1-py313h06a4308_1.conda", + "sha256": "1bf5011a022c2a5147634560159966a953f4863e5eb7868b21ba332cd15c7f45", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [ + "cryptography >=3.4.0" + ], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1764332116000, + "size": 87922, + "requested_spec": "pkgs/main/linux-64::pyjwt==2.10.1=py313h06a4308_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pyjwt-2.10.1-py313h06a4308_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pyjwt-2.10.1-py313h06a4308_1", + "files": [ + "lib/python3.13/site-packages/jwt/__init__.py", + "lib/python3.13/site-packages/jwt/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/jwt/__pycache__/algorithms.cpython-313.pyc", + "lib/python3.13/site-packages/jwt/__pycache__/api_jwk.cpython-313.pyc", + "lib/python3.13/site-packages/jwt/__pycache__/api_jws.cpython-313.pyc", + "lib/python3.13/site-packages/jwt/__pycache__/api_jwt.cpython-313.pyc", + "lib/python3.13/site-packages/jwt/__pycache__/exceptions.cpython-313.pyc", + "lib/python3.13/site-packages/jwt/__pycache__/help.cpython-313.pyc", + "lib/python3.13/site-packages/jwt/__pycache__/jwk_set_cache.cpython-313.pyc", + "lib/python3.13/site-packages/jwt/__pycache__/jwks_client.cpython-313.pyc", + "lib/python3.13/site-packages/jwt/__pycache__/types.cpython-313.pyc", + "lib/python3.13/site-packages/jwt/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/site-packages/jwt/__pycache__/warnings.cpython-313.pyc", + "lib/python3.13/site-packages/jwt/algorithms.py", + "lib/python3.13/site-packages/jwt/api_jwk.py", + "lib/python3.13/site-packages/jwt/api_jws.py", + "lib/python3.13/site-packages/jwt/api_jwt.py", + "lib/python3.13/site-packages/jwt/exceptions.py", + "lib/python3.13/site-packages/jwt/help.py", + "lib/python3.13/site-packages/jwt/jwk_set_cache.py", + "lib/python3.13/site-packages/jwt/jwks_client.py", + "lib/python3.13/site-packages/jwt/py.typed", + "lib/python3.13/site-packages/jwt/types.py", + "lib/python3.13/site-packages/jwt/utils.py", + "lib/python3.13/site-packages/jwt/warnings.py", + "lib/python3.13/site-packages/pyjwt-2.10.1.dist-info/INSTALLER", + "lib/python3.13/site-packages/pyjwt-2.10.1.dist-info/METADATA", + "lib/python3.13/site-packages/pyjwt-2.10.1.dist-info/RECORD", + "lib/python3.13/site-packages/pyjwt-2.10.1.dist-info/REQUESTED", + "lib/python3.13/site-packages/pyjwt-2.10.1.dist-info/WHEEL", + "lib/python3.13/site-packages/pyjwt-2.10.1.dist-info/direct_url.json", + "lib/python3.13/site-packages/pyjwt-2.10.1.dist-info/licenses/AUTHORS.rst", + "lib/python3.13/site-packages/pyjwt-2.10.1.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/pyjwt-2.10.1.dist-info/top_level.txt" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pyjwt-2.10.1-py313h06a4308_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/pysocks-1.7.1-py313h06a4308_1.json b/miniconda3/conda-meta/pysocks-1.7.1-py313h06a4308_1.json new file mode 100644 index 0000000000000000000000000000000000000000..0d49ac9d37a0045ec6e3ea0f1af64f86756fab38 --- /dev/null +++ b/miniconda3/conda-meta/pysocks-1.7.1-py313h06a4308_1.json @@ -0,0 +1,48 @@ +{ + "name": "pysocks", + "version": "1.7.1", + "build": "py313h06a4308_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "pysocks-1.7.1-py313h06a4308_1.conda", + "md5": "e1ab9ffa1588856f0bdbb204322568c4", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/pysocks-1.7.1-py313h06a4308_1.conda", + "sha256": "b13f6e99c9e451e2f4aa7216da208ea0c68a9cecafa945d59c9b7c8d554a7005", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "BSD 3-Clause", + "license_family": "BSD", + "timestamp": 1761753024000, + "size": 35801, + "requested_spec": "pkgs/main/linux-64::pysocks==1.7.1=py313h06a4308_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pysocks-1.7.1-py313h06a4308_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pysocks-1.7.1-py313h06a4308_1", + "files": [ + "lib/python3.13/site-packages/__pycache__/socks.cpython-313.pyc", + "lib/python3.13/site-packages/__pycache__/sockshandler.cpython-313.pyc", + "lib/python3.13/site-packages/pysocks-1.7.1.dist-info/INSTALLER", + "lib/python3.13/site-packages/pysocks-1.7.1.dist-info/METADATA", + "lib/python3.13/site-packages/pysocks-1.7.1.dist-info/RECORD", + "lib/python3.13/site-packages/pysocks-1.7.1.dist-info/REQUESTED", + "lib/python3.13/site-packages/pysocks-1.7.1.dist-info/WHEEL", + "lib/python3.13/site-packages/pysocks-1.7.1.dist-info/direct_url.json", + "lib/python3.13/site-packages/pysocks-1.7.1.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/pysocks-1.7.1.dist-info/top_level.txt", + "lib/python3.13/site-packages/socks.py", + "lib/python3.13/site-packages/sockshandler.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/pysocks-1.7.1-py313h06a4308_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/python-3.13.12-hb7b561f_100_cp313.json b/miniconda3/conda-meta/python-3.13.12-hb7b561f_100_cp313.json new file mode 100644 index 0000000000000000000000000000000000000000..1e419279ba6de895d2e07af56f65545d36e900c5 --- /dev/null +++ b/miniconda3/conda-meta/python-3.13.12-hb7b561f_100_cp313.json @@ -0,0 +1,2055 @@ +{ + "name": "python", + "version": "3.13.12", + "build": "hb7b561f_100_cp313", + "build_number": 100, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "python-3.13.12-hb7b561f_100_cp313.conda", + "md5": "f0c9d56e080ab6f2838d1626225cdd37", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/python-3.13.12-hb7b561f_100_cp313.conda", + "sha256": "558a087f71909db8c04f634af023c94d128305f1b313560bf6ed9bb404f731bf", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.28,<3.0.a0", + "bzip2 >=1.0.8,<2.0a0", + "ld_impl_linux-64 >=2.35.1", + "libexpat >=2.7.4,<3.0a0", + "libffi >=3.4,<4.0a0", + "libgcc >=14", + "libmpdec >=4.0.0,<5.0a0", + "libuuid >=1.41.5,<2.0a0", + "libzlib >=1.3.1,<2.0a0", + "ncurses >=6.4,<7.0a0", + "openssl >=3.0.19,<4.0a0", + "python_abi * *_cp313", + "readline >=8.2,<9.0a0", + "sqlite >=3.50.2,<4.0a0", + "tk >=8.6.15,<8.7.0a0", + "tzdata", + "xz >=5.6.4,<6.0a0", + "pip" + ], + "constrains": [], + "license": "PSF-2.0", + "license_family": "PSF", + "timestamp": 1771950585000, + "size": 33182243, + "requested_spec": "pkgs/main/linux-64::python==3.13.12=hb7b561f_100_cp313", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/python-3.13.12-hb7b561f_100_cp313.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/python-3.13.12-hb7b561f_100_cp313", + "files": [ + "bin/idle3", + "bin/idle3.13", + "bin/pydoc", + "bin/pydoc3", + "bin/pydoc3.13", + "bin/python", + "bin/python3", + "bin/python3-config", + "bin/python3.1", + "bin/python3.13", + "bin/python3.13-config", + "compiler_compat/README", + "compiler_compat/ld", + "include/python3.13/Python.h", + "include/python3.13/abstract.h", + "include/python3.13/bltinmodule.h", + "include/python3.13/boolobject.h", + "include/python3.13/bytearrayobject.h", + "include/python3.13/bytesobject.h", + "include/python3.13/ceval.h", + "include/python3.13/codecs.h", + "include/python3.13/compile.h", + "include/python3.13/complexobject.h", + "include/python3.13/cpython/abstract.h", + "include/python3.13/cpython/bytearrayobject.h", + "include/python3.13/cpython/bytesobject.h", + "include/python3.13/cpython/cellobject.h", + "include/python3.13/cpython/ceval.h", + "include/python3.13/cpython/classobject.h", + "include/python3.13/cpython/code.h", + "include/python3.13/cpython/compile.h", + "include/python3.13/cpython/complexobject.h", + "include/python3.13/cpython/context.h", + "include/python3.13/cpython/critical_section.h", + "include/python3.13/cpython/descrobject.h", + "include/python3.13/cpython/dictobject.h", + "include/python3.13/cpython/fileobject.h", + "include/python3.13/cpython/fileutils.h", + "include/python3.13/cpython/floatobject.h", + "include/python3.13/cpython/frameobject.h", + "include/python3.13/cpython/funcobject.h", + "include/python3.13/cpython/genobject.h", + "include/python3.13/cpython/import.h", + "include/python3.13/cpython/initconfig.h", + "include/python3.13/cpython/listobject.h", + "include/python3.13/cpython/lock.h", + "include/python3.13/cpython/longintrepr.h", + "include/python3.13/cpython/longobject.h", + "include/python3.13/cpython/memoryobject.h", + "include/python3.13/cpython/methodobject.h", + "include/python3.13/cpython/modsupport.h", + "include/python3.13/cpython/monitoring.h", + "include/python3.13/cpython/object.h", + "include/python3.13/cpython/objimpl.h", + "include/python3.13/cpython/odictobject.h", + "include/python3.13/cpython/picklebufobject.h", + "include/python3.13/cpython/pthread_stubs.h", + "include/python3.13/cpython/pyatomic.h", + "include/python3.13/cpython/pyatomic_gcc.h", + "include/python3.13/cpython/pyatomic_msc.h", + "include/python3.13/cpython/pyatomic_std.h", + "include/python3.13/cpython/pyctype.h", + "include/python3.13/cpython/pydebug.h", + "include/python3.13/cpython/pyerrors.h", + "include/python3.13/cpython/pyfpe.h", + "include/python3.13/cpython/pyframe.h", + "include/python3.13/cpython/pyhash.h", + "include/python3.13/cpython/pylifecycle.h", + "include/python3.13/cpython/pymem.h", + "include/python3.13/cpython/pystate.h", + "include/python3.13/cpython/pystats.h", + "include/python3.13/cpython/pythonrun.h", + "include/python3.13/cpython/pythread.h", + "include/python3.13/cpython/pytime.h", + "include/python3.13/cpython/setobject.h", + "include/python3.13/cpython/sysmodule.h", + "include/python3.13/cpython/traceback.h", + "include/python3.13/cpython/tracemalloc.h", + "include/python3.13/cpython/tupleobject.h", + "include/python3.13/cpython/unicodeobject.h", + "include/python3.13/cpython/warnings.h", + "include/python3.13/cpython/weakrefobject.h", + "include/python3.13/critical_section.h", + "include/python3.13/datetime.h", + "include/python3.13/descrobject.h", + "include/python3.13/dictobject.h", + "include/python3.13/dynamic_annotations.h", + "include/python3.13/enumobject.h", + "include/python3.13/errcode.h", + "include/python3.13/exports.h", + "include/python3.13/fileobject.h", + "include/python3.13/fileutils.h", + "include/python3.13/floatobject.h", + "include/python3.13/frameobject.h", + "include/python3.13/genericaliasobject.h", + "include/python3.13/import.h", + "include/python3.13/internal/mimalloc/mimalloc.h", + "include/python3.13/internal/mimalloc/mimalloc/atomic.h", + "include/python3.13/internal/mimalloc/mimalloc/internal.h", + "include/python3.13/internal/mimalloc/mimalloc/prim.h", + "include/python3.13/internal/mimalloc/mimalloc/track.h", + "include/python3.13/internal/mimalloc/mimalloc/types.h", + "include/python3.13/internal/pycore_abstract.h", + "include/python3.13/internal/pycore_asdl.h", + "include/python3.13/internal/pycore_ast.h", + "include/python3.13/internal/pycore_ast_state.h", + "include/python3.13/internal/pycore_atexit.h", + "include/python3.13/internal/pycore_backoff.h", + "include/python3.13/internal/pycore_bitutils.h", + "include/python3.13/internal/pycore_blocks_output_buffer.h", + "include/python3.13/internal/pycore_brc.h", + "include/python3.13/internal/pycore_bytes_methods.h", + "include/python3.13/internal/pycore_bytesobject.h", + "include/python3.13/internal/pycore_call.h", + "include/python3.13/internal/pycore_capsule.h", + "include/python3.13/internal/pycore_cell.h", + "include/python3.13/internal/pycore_ceval.h", + "include/python3.13/internal/pycore_ceval_state.h", + "include/python3.13/internal/pycore_code.h", + "include/python3.13/internal/pycore_codecs.h", + "include/python3.13/internal/pycore_compile.h", + "include/python3.13/internal/pycore_complexobject.h", + "include/python3.13/internal/pycore_condvar.h", + "include/python3.13/internal/pycore_context.h", + "include/python3.13/internal/pycore_critical_section.h", + "include/python3.13/internal/pycore_crossinterp.h", + "include/python3.13/internal/pycore_descrobject.h", + "include/python3.13/internal/pycore_dict.h", + "include/python3.13/internal/pycore_dict_state.h", + "include/python3.13/internal/pycore_dtoa.h", + "include/python3.13/internal/pycore_emscripten_signal.h", + "include/python3.13/internal/pycore_emscripten_trampoline.h", + "include/python3.13/internal/pycore_exceptions.h", + "include/python3.13/internal/pycore_faulthandler.h", + "include/python3.13/internal/pycore_fileutils.h", + "include/python3.13/internal/pycore_fileutils_windows.h", + "include/python3.13/internal/pycore_floatobject.h", + "include/python3.13/internal/pycore_flowgraph.h", + "include/python3.13/internal/pycore_format.h", + "include/python3.13/internal/pycore_frame.h", + "include/python3.13/internal/pycore_freelist.h", + "include/python3.13/internal/pycore_function.h", + "include/python3.13/internal/pycore_gc.h", + "include/python3.13/internal/pycore_genobject.h", + "include/python3.13/internal/pycore_getopt.h", + "include/python3.13/internal/pycore_gil.h", + "include/python3.13/internal/pycore_global_objects.h", + "include/python3.13/internal/pycore_global_objects_fini_generated.h", + "include/python3.13/internal/pycore_global_strings.h", + "include/python3.13/internal/pycore_hamt.h", + "include/python3.13/internal/pycore_hashtable.h", + "include/python3.13/internal/pycore_identifier.h", + "include/python3.13/internal/pycore_import.h", + "include/python3.13/internal/pycore_importdl.h", + "include/python3.13/internal/pycore_initconfig.h", + "include/python3.13/internal/pycore_instruction_sequence.h", + "include/python3.13/internal/pycore_instruments.h", + "include/python3.13/internal/pycore_interp.h", + "include/python3.13/internal/pycore_intrinsics.h", + "include/python3.13/internal/pycore_jit.h", + "include/python3.13/internal/pycore_list.h", + "include/python3.13/internal/pycore_llist.h", + "include/python3.13/internal/pycore_lock.h", + "include/python3.13/internal/pycore_long.h", + "include/python3.13/internal/pycore_memoryobject.h", + "include/python3.13/internal/pycore_mimalloc.h", + "include/python3.13/internal/pycore_modsupport.h", + "include/python3.13/internal/pycore_moduleobject.h", + "include/python3.13/internal/pycore_namespace.h", + "include/python3.13/internal/pycore_object.h", + "include/python3.13/internal/pycore_object_alloc.h", + "include/python3.13/internal/pycore_object_stack.h", + "include/python3.13/internal/pycore_object_state.h", + "include/python3.13/internal/pycore_obmalloc.h", + "include/python3.13/internal/pycore_obmalloc_init.h", + "include/python3.13/internal/pycore_opcode_metadata.h", + "include/python3.13/internal/pycore_opcode_utils.h", + "include/python3.13/internal/pycore_optimizer.h", + "include/python3.13/internal/pycore_parking_lot.h", + "include/python3.13/internal/pycore_parser.h", + "include/python3.13/internal/pycore_pathconfig.h", + "include/python3.13/internal/pycore_pyarena.h", + "include/python3.13/internal/pycore_pyatomic_ft_wrappers.h", + "include/python3.13/internal/pycore_pybuffer.h", + "include/python3.13/internal/pycore_pyerrors.h", + "include/python3.13/internal/pycore_pyhash.h", + "include/python3.13/internal/pycore_pylifecycle.h", + "include/python3.13/internal/pycore_pymath.h", + "include/python3.13/internal/pycore_pymem.h", + "include/python3.13/internal/pycore_pymem_init.h", + "include/python3.13/internal/pycore_pystate.h", + "include/python3.13/internal/pycore_pystats.h", + "include/python3.13/internal/pycore_pythonrun.h", + "include/python3.13/internal/pycore_pythread.h", + "include/python3.13/internal/pycore_qsbr.h", + "include/python3.13/internal/pycore_range.h", + "include/python3.13/internal/pycore_runtime.h", + "include/python3.13/internal/pycore_runtime_init.h", + "include/python3.13/internal/pycore_runtime_init_generated.h", + "include/python3.13/internal/pycore_semaphore.h", + "include/python3.13/internal/pycore_setobject.h", + "include/python3.13/internal/pycore_signal.h", + "include/python3.13/internal/pycore_sliceobject.h", + "include/python3.13/internal/pycore_stackref.h", + "include/python3.13/internal/pycore_strhex.h", + "include/python3.13/internal/pycore_structseq.h", + "include/python3.13/internal/pycore_symtable.h", + "include/python3.13/internal/pycore_sysmodule.h", + "include/python3.13/internal/pycore_time.h", + "include/python3.13/internal/pycore_token.h", + "include/python3.13/internal/pycore_traceback.h", + "include/python3.13/internal/pycore_tracemalloc.h", + "include/python3.13/internal/pycore_tstate.h", + "include/python3.13/internal/pycore_tuple.h", + "include/python3.13/internal/pycore_typeobject.h", + "include/python3.13/internal/pycore_typevarobject.h", + "include/python3.13/internal/pycore_ucnhash.h", + "include/python3.13/internal/pycore_unicodeobject.h", + "include/python3.13/internal/pycore_unicodeobject_generated.h", + "include/python3.13/internal/pycore_unionobject.h", + "include/python3.13/internal/pycore_uop_ids.h", + "include/python3.13/internal/pycore_uop_metadata.h", + "include/python3.13/internal/pycore_warnings.h", + "include/python3.13/internal/pycore_weakref.h", + "include/python3.13/intrcheck.h", + "include/python3.13/iterobject.h", + "include/python3.13/listobject.h", + "include/python3.13/lock.h", + "include/python3.13/longobject.h", + "include/python3.13/marshal.h", + "include/python3.13/memoryobject.h", + "include/python3.13/methodobject.h", + "include/python3.13/modsupport.h", + "include/python3.13/moduleobject.h", + "include/python3.13/monitoring.h", + "include/python3.13/object.h", + "include/python3.13/objimpl.h", + "include/python3.13/opcode.h", + "include/python3.13/opcode_ids.h", + "include/python3.13/osdefs.h", + "include/python3.13/osmodule.h", + "include/python3.13/patchlevel.h", + "include/python3.13/py_curses.h", + "include/python3.13/pyatomic.h", + "include/python3.13/pybuffer.h", + "include/python3.13/pycapsule.h", + "include/python3.13/pyconfig.h", + "include/python3.13/pydtrace.h", + "include/python3.13/pyerrors.h", + "include/python3.13/pyexpat.h", + "include/python3.13/pyframe.h", + "include/python3.13/pyhash.h", + "include/python3.13/pylifecycle.h", + "include/python3.13/pymacconfig.h", + "include/python3.13/pymacro.h", + "include/python3.13/pymath.h", + "include/python3.13/pymem.h", + "include/python3.13/pyport.h", + "include/python3.13/pystate.h", + "include/python3.13/pystats.h", + "include/python3.13/pystrcmp.h", + "include/python3.13/pystrtod.h", + "include/python3.13/pythonrun.h", + "include/python3.13/pythread.h", + "include/python3.13/pytypedefs.h", + "include/python3.13/rangeobject.h", + "include/python3.13/setobject.h", + "include/python3.13/sliceobject.h", + "include/python3.13/structmember.h", + "include/python3.13/structseq.h", + "include/python3.13/sysmodule.h", + "include/python3.13/traceback.h", + "include/python3.13/tupleobject.h", + "include/python3.13/typeslots.h", + "include/python3.13/unicodeobject.h", + "include/python3.13/warnings.h", + "include/python3.13/weakrefobject.h", + "lib/libpython3.13.so", + "lib/libpython3.13.so.1.0", + "lib/libpython3.so", + "lib/pkgconfig/python-3.13-embed.pc", + "lib/pkgconfig/python-3.13.pc", + "lib/pkgconfig/python3-embed.pc", + "lib/pkgconfig/python3.pc", + "lib/python3.13/LICENSE.txt", + "lib/python3.13/__future__.py", + "lib/python3.13/__hello__.py", + "lib/python3.13/__phello__/__init__.py", + "lib/python3.13/__phello__/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/__phello__/__pycache__/spam.cpython-313.pyc", + "lib/python3.13/__phello__/spam.py", + "lib/python3.13/__pycache__/__future__.cpython-313.pyc", + "lib/python3.13/__pycache__/__hello__.cpython-313.pyc", + "lib/python3.13/__pycache__/_aix_support.cpython-313.pyc", + "lib/python3.13/__pycache__/_android_support.cpython-313.pyc", + "lib/python3.13/__pycache__/_apple_support.cpython-313.pyc", + "lib/python3.13/__pycache__/_collections_abc.cpython-313.pyc", + "lib/python3.13/__pycache__/_colorize.cpython-313.pyc", + "lib/python3.13/__pycache__/_compat_pickle.cpython-313.pyc", + "lib/python3.13/__pycache__/_compression.cpython-313.pyc", + "lib/python3.13/__pycache__/_ios_support.cpython-313.pyc", + "lib/python3.13/__pycache__/_markupbase.cpython-313.pyc", + "lib/python3.13/__pycache__/_opcode_metadata.cpython-313.pyc", + "lib/python3.13/__pycache__/_osx_support.cpython-313.pyc", + "lib/python3.13/__pycache__/_py_abc.cpython-313.pyc", + "lib/python3.13/__pycache__/_pydatetime.cpython-313.pyc", + "lib/python3.13/__pycache__/_pydecimal.cpython-313.pyc", + "lib/python3.13/__pycache__/_pyio.cpython-313.pyc", + "lib/python3.13/__pycache__/_pylong.cpython-313.pyc", + "lib/python3.13/__pycache__/_sitebuiltins.cpython-313.pyc", + "lib/python3.13/__pycache__/_strptime.cpython-313.pyc", + "lib/python3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc", + "lib/python3.13/__pycache__/_sysconfigdata_x86_64_conda_cos6_linux_gnu.cpython-313.pyc", + "lib/python3.13/__pycache__/_sysconfigdata_x86_64_conda_linux_gnu.cpython-313.pyc", + "lib/python3.13/__pycache__/_threading_local.cpython-313.pyc", + "lib/python3.13/__pycache__/_weakrefset.cpython-313.pyc", + "lib/python3.13/__pycache__/abc.cpython-313.pyc", + "lib/python3.13/__pycache__/antigravity.cpython-313.pyc", + "lib/python3.13/__pycache__/argparse.cpython-313.pyc", + "lib/python3.13/__pycache__/ast.cpython-313.pyc", + "lib/python3.13/__pycache__/base64.cpython-313.pyc", + "lib/python3.13/__pycache__/bdb.cpython-313.pyc", + "lib/python3.13/__pycache__/bisect.cpython-313.pyc", + "lib/python3.13/__pycache__/bz2.cpython-313.pyc", + "lib/python3.13/__pycache__/cProfile.cpython-313.pyc", + "lib/python3.13/__pycache__/calendar.cpython-313.pyc", + "lib/python3.13/__pycache__/cmd.cpython-313.pyc", + "lib/python3.13/__pycache__/code.cpython-313.pyc", + "lib/python3.13/__pycache__/codecs.cpython-313.pyc", + "lib/python3.13/__pycache__/codeop.cpython-313.pyc", + "lib/python3.13/__pycache__/colorsys.cpython-313.pyc", + "lib/python3.13/__pycache__/compileall.cpython-313.pyc", + "lib/python3.13/__pycache__/configparser.cpython-313.pyc", + "lib/python3.13/__pycache__/contextlib.cpython-313.pyc", + "lib/python3.13/__pycache__/contextvars.cpython-313.pyc", + "lib/python3.13/__pycache__/copy.cpython-313.pyc", + "lib/python3.13/__pycache__/copyreg.cpython-313.pyc", + "lib/python3.13/__pycache__/csv.cpython-313.pyc", + "lib/python3.13/__pycache__/dataclasses.cpython-313.pyc", + "lib/python3.13/__pycache__/datetime.cpython-313.pyc", + "lib/python3.13/__pycache__/decimal.cpython-313.pyc", + "lib/python3.13/__pycache__/difflib.cpython-313.pyc", + "lib/python3.13/__pycache__/dis.cpython-313.pyc", + "lib/python3.13/__pycache__/doctest.cpython-313.pyc", + "lib/python3.13/__pycache__/enum.cpython-313.pyc", + "lib/python3.13/__pycache__/filecmp.cpython-313.pyc", + "lib/python3.13/__pycache__/fileinput.cpython-313.pyc", + "lib/python3.13/__pycache__/fnmatch.cpython-313.pyc", + "lib/python3.13/__pycache__/fractions.cpython-313.pyc", + "lib/python3.13/__pycache__/ftplib.cpython-313.pyc", + "lib/python3.13/__pycache__/functools.cpython-313.pyc", + "lib/python3.13/__pycache__/genericpath.cpython-313.pyc", + "lib/python3.13/__pycache__/getopt.cpython-313.pyc", + "lib/python3.13/__pycache__/getpass.cpython-313.pyc", + "lib/python3.13/__pycache__/gettext.cpython-313.pyc", + "lib/python3.13/__pycache__/glob.cpython-313.pyc", + "lib/python3.13/__pycache__/graphlib.cpython-313.pyc", + "lib/python3.13/__pycache__/gzip.cpython-313.pyc", + "lib/python3.13/__pycache__/hashlib.cpython-313.pyc", + "lib/python3.13/__pycache__/heapq.cpython-313.pyc", + "lib/python3.13/__pycache__/hmac.cpython-313.pyc", + "lib/python3.13/__pycache__/imaplib.cpython-313.pyc", + "lib/python3.13/__pycache__/inspect.cpython-313.pyc", + "lib/python3.13/__pycache__/io.cpython-313.pyc", + "lib/python3.13/__pycache__/ipaddress.cpython-313.pyc", + "lib/python3.13/__pycache__/keyword.cpython-313.pyc", + "lib/python3.13/__pycache__/linecache.cpython-313.pyc", + "lib/python3.13/__pycache__/locale.cpython-313.pyc", + "lib/python3.13/__pycache__/lzma.cpython-313.pyc", + "lib/python3.13/__pycache__/mailbox.cpython-313.pyc", + "lib/python3.13/__pycache__/mimetypes.cpython-313.pyc", + "lib/python3.13/__pycache__/modulefinder.cpython-313.pyc", + "lib/python3.13/__pycache__/netrc.cpython-313.pyc", + "lib/python3.13/__pycache__/ntpath.cpython-313.pyc", + "lib/python3.13/__pycache__/nturl2path.cpython-313.pyc", + "lib/python3.13/__pycache__/numbers.cpython-313.pyc", + "lib/python3.13/__pycache__/opcode.cpython-313.pyc", + "lib/python3.13/__pycache__/operator.cpython-313.pyc", + "lib/python3.13/__pycache__/optparse.cpython-313.pyc", + "lib/python3.13/__pycache__/os.cpython-313.pyc", + "lib/python3.13/__pycache__/pdb.cpython-313.pyc", + "lib/python3.13/__pycache__/pickle.cpython-313.pyc", + "lib/python3.13/__pycache__/pickletools.cpython-313.pyc", + "lib/python3.13/__pycache__/pkgutil.cpython-313.pyc", + "lib/python3.13/__pycache__/platform.cpython-313.pyc", + "lib/python3.13/__pycache__/plistlib.cpython-313.pyc", + "lib/python3.13/__pycache__/poplib.cpython-313.pyc", + "lib/python3.13/__pycache__/posixpath.cpython-313.pyc", + "lib/python3.13/__pycache__/pprint.cpython-313.pyc", + "lib/python3.13/__pycache__/profile.cpython-313.pyc", + "lib/python3.13/__pycache__/pstats.cpython-313.pyc", + "lib/python3.13/__pycache__/pty.cpython-313.pyc", + "lib/python3.13/__pycache__/py_compile.cpython-313.pyc", + "lib/python3.13/__pycache__/pyclbr.cpython-313.pyc", + "lib/python3.13/__pycache__/pydoc.cpython-313.pyc", + "lib/python3.13/__pycache__/queue.cpython-313.pyc", + "lib/python3.13/__pycache__/quopri.cpython-313.pyc", + "lib/python3.13/__pycache__/random.cpython-313.pyc", + "lib/python3.13/__pycache__/reprlib.cpython-313.pyc", + "lib/python3.13/__pycache__/rlcompleter.cpython-313.pyc", + "lib/python3.13/__pycache__/runpy.cpython-313.pyc", + "lib/python3.13/__pycache__/sched.cpython-313.pyc", + "lib/python3.13/__pycache__/secrets.cpython-313.pyc", + "lib/python3.13/__pycache__/selectors.cpython-313.pyc", + "lib/python3.13/__pycache__/shelve.cpython-313.pyc", + "lib/python3.13/__pycache__/shlex.cpython-313.pyc", + "lib/python3.13/__pycache__/shutil.cpython-313.pyc", + "lib/python3.13/__pycache__/signal.cpython-313.pyc", + "lib/python3.13/__pycache__/site.cpython-313.pyc", + "lib/python3.13/__pycache__/sitecustomize.cpython-313.pyc", + "lib/python3.13/__pycache__/smtplib.cpython-313.pyc", + "lib/python3.13/__pycache__/socket.cpython-313.pyc", + "lib/python3.13/__pycache__/socketserver.cpython-313.pyc", + "lib/python3.13/__pycache__/sre_compile.cpython-313.pyc", + "lib/python3.13/__pycache__/sre_constants.cpython-313.pyc", + "lib/python3.13/__pycache__/sre_parse.cpython-313.pyc", + "lib/python3.13/__pycache__/ssl.cpython-313.pyc", + "lib/python3.13/__pycache__/stat.cpython-313.pyc", + "lib/python3.13/__pycache__/statistics.cpython-313.pyc", + "lib/python3.13/__pycache__/string.cpython-313.pyc", + "lib/python3.13/__pycache__/stringprep.cpython-313.pyc", + "lib/python3.13/__pycache__/struct.cpython-313.pyc", + "lib/python3.13/__pycache__/subprocess.cpython-313.pyc", + "lib/python3.13/__pycache__/symtable.cpython-313.pyc", + "lib/python3.13/__pycache__/tabnanny.cpython-313.pyc", + "lib/python3.13/__pycache__/tarfile.cpython-313.pyc", + "lib/python3.13/__pycache__/tempfile.cpython-313.pyc", + "lib/python3.13/__pycache__/textwrap.cpython-313.pyc", + "lib/python3.13/__pycache__/this.cpython-313.pyc", + "lib/python3.13/__pycache__/threading.cpython-313.pyc", + "lib/python3.13/__pycache__/timeit.cpython-313.pyc", + "lib/python3.13/__pycache__/token.cpython-313.pyc", + "lib/python3.13/__pycache__/tokenize.cpython-313.pyc", + "lib/python3.13/__pycache__/trace.cpython-313.pyc", + "lib/python3.13/__pycache__/traceback.cpython-313.pyc", + "lib/python3.13/__pycache__/tracemalloc.cpython-313.pyc", + "lib/python3.13/__pycache__/tty.cpython-313.pyc", + "lib/python3.13/__pycache__/turtle.cpython-313.pyc", + "lib/python3.13/__pycache__/types.cpython-313.pyc", + "lib/python3.13/__pycache__/typing.cpython-313.pyc", + "lib/python3.13/__pycache__/uuid.cpython-313.pyc", + "lib/python3.13/__pycache__/warnings.cpython-313.pyc", + "lib/python3.13/__pycache__/wave.cpython-313.pyc", + "lib/python3.13/__pycache__/weakref.cpython-313.pyc", + "lib/python3.13/__pycache__/webbrowser.cpython-313.pyc", + "lib/python3.13/__pycache__/zipapp.cpython-313.pyc", + "lib/python3.13/__pycache__/zipimport.cpython-313.pyc", + "lib/python3.13/_aix_support.py", + "lib/python3.13/_android_support.py", + "lib/python3.13/_apple_support.py", + "lib/python3.13/_collections_abc.py", + "lib/python3.13/_colorize.py", + "lib/python3.13/_compat_pickle.py", + "lib/python3.13/_compression.py", + "lib/python3.13/_ios_support.py", + "lib/python3.13/_markupbase.py", + "lib/python3.13/_opcode_metadata.py", + "lib/python3.13/_osx_support.py", + "lib/python3.13/_py_abc.py", + "lib/python3.13/_pydatetime.py", + "lib/python3.13/_pydecimal.py", + "lib/python3.13/_pyio.py", + "lib/python3.13/_pylong.py", + "lib/python3.13/_pyrepl/__init__.py", + "lib/python3.13/_pyrepl/__main__.py", + "lib/python3.13/_pyrepl/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/_pyrepl/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/_pyrepl/__pycache__/_minimal_curses.cpython-313.pyc", + "lib/python3.13/_pyrepl/__pycache__/_threading_handler.cpython-313.pyc", + "lib/python3.13/_pyrepl/__pycache__/base_eventqueue.cpython-313.pyc", + "lib/python3.13/_pyrepl/__pycache__/commands.cpython-313.pyc", + "lib/python3.13/_pyrepl/__pycache__/completing_reader.cpython-313.pyc", + "lib/python3.13/_pyrepl/__pycache__/console.cpython-313.pyc", + "lib/python3.13/_pyrepl/__pycache__/curses.cpython-313.pyc", + "lib/python3.13/_pyrepl/__pycache__/fancy_termios.cpython-313.pyc", + "lib/python3.13/_pyrepl/__pycache__/historical_reader.cpython-313.pyc", + "lib/python3.13/_pyrepl/__pycache__/input.cpython-313.pyc", + "lib/python3.13/_pyrepl/__pycache__/keymap.cpython-313.pyc", + "lib/python3.13/_pyrepl/__pycache__/main.cpython-313.pyc", + "lib/python3.13/_pyrepl/__pycache__/pager.cpython-313.pyc", + "lib/python3.13/_pyrepl/__pycache__/reader.cpython-313.pyc", + "lib/python3.13/_pyrepl/__pycache__/readline.cpython-313.pyc", + "lib/python3.13/_pyrepl/__pycache__/simple_interact.cpython-313.pyc", + "lib/python3.13/_pyrepl/__pycache__/trace.cpython-313.pyc", + "lib/python3.13/_pyrepl/__pycache__/types.cpython-313.pyc", + "lib/python3.13/_pyrepl/__pycache__/unix_console.cpython-313.pyc", + "lib/python3.13/_pyrepl/__pycache__/unix_eventqueue.cpython-313.pyc", + "lib/python3.13/_pyrepl/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/_pyrepl/__pycache__/windows_console.cpython-313.pyc", + "lib/python3.13/_pyrepl/__pycache__/windows_eventqueue.cpython-313.pyc", + "lib/python3.13/_pyrepl/_minimal_curses.py", + "lib/python3.13/_pyrepl/_threading_handler.py", + "lib/python3.13/_pyrepl/base_eventqueue.py", + "lib/python3.13/_pyrepl/commands.py", + "lib/python3.13/_pyrepl/completing_reader.py", + "lib/python3.13/_pyrepl/console.py", + "lib/python3.13/_pyrepl/curses.py", + "lib/python3.13/_pyrepl/fancy_termios.py", + "lib/python3.13/_pyrepl/historical_reader.py", + "lib/python3.13/_pyrepl/input.py", + "lib/python3.13/_pyrepl/keymap.py", + "lib/python3.13/_pyrepl/main.py", + "lib/python3.13/_pyrepl/mypy.ini", + "lib/python3.13/_pyrepl/pager.py", + "lib/python3.13/_pyrepl/reader.py", + "lib/python3.13/_pyrepl/readline.py", + "lib/python3.13/_pyrepl/simple_interact.py", + "lib/python3.13/_pyrepl/trace.py", + "lib/python3.13/_pyrepl/types.py", + "lib/python3.13/_pyrepl/unix_console.py", + "lib/python3.13/_pyrepl/unix_eventqueue.py", + "lib/python3.13/_pyrepl/utils.py", + "lib/python3.13/_pyrepl/windows_console.py", + "lib/python3.13/_pyrepl/windows_eventqueue.py", + "lib/python3.13/_sitebuiltins.py", + "lib/python3.13/_strptime.py", + "lib/python3.13/_sysconfigdata__linux_x86_64-linux-gnu.py", + "lib/python3.13/_sysconfigdata__linux_x86_64-linux-gnu.py.orig", + "lib/python3.13/_sysconfigdata_x86_64_conda_cos6_linux_gnu.py", + "lib/python3.13/_sysconfigdata_x86_64_conda_linux_gnu.py", + "lib/python3.13/_threading_local.py", + "lib/python3.13/_weakrefset.py", + "lib/python3.13/abc.py", + "lib/python3.13/antigravity.py", + "lib/python3.13/argparse.py", + "lib/python3.13/ast.py", + "lib/python3.13/asyncio/__init__.py", + "lib/python3.13/asyncio/__main__.py", + "lib/python3.13/asyncio/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/base_events.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/base_futures.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/base_subprocess.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/base_tasks.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/constants.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/coroutines.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/events.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/exceptions.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/format_helpers.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/futures.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/locks.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/log.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/mixins.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/proactor_events.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/protocols.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/queues.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/runners.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/selector_events.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/sslproto.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/staggered.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/streams.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/subprocess.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/taskgroups.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/tasks.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/threads.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/timeouts.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/transports.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/trsock.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/unix_events.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/windows_events.cpython-313.pyc", + "lib/python3.13/asyncio/__pycache__/windows_utils.cpython-313.pyc", + "lib/python3.13/asyncio/base_events.py", + "lib/python3.13/asyncio/base_futures.py", + "lib/python3.13/asyncio/base_subprocess.py", + "lib/python3.13/asyncio/base_tasks.py", + "lib/python3.13/asyncio/constants.py", + "lib/python3.13/asyncio/coroutines.py", + "lib/python3.13/asyncio/events.py", + "lib/python3.13/asyncio/exceptions.py", + "lib/python3.13/asyncio/format_helpers.py", + "lib/python3.13/asyncio/futures.py", + "lib/python3.13/asyncio/locks.py", + "lib/python3.13/asyncio/log.py", + "lib/python3.13/asyncio/mixins.py", + "lib/python3.13/asyncio/proactor_events.py", + "lib/python3.13/asyncio/protocols.py", + "lib/python3.13/asyncio/queues.py", + "lib/python3.13/asyncio/runners.py", + "lib/python3.13/asyncio/selector_events.py", + "lib/python3.13/asyncio/sslproto.py", + "lib/python3.13/asyncio/staggered.py", + "lib/python3.13/asyncio/streams.py", + "lib/python3.13/asyncio/subprocess.py", + "lib/python3.13/asyncio/taskgroups.py", + "lib/python3.13/asyncio/tasks.py", + "lib/python3.13/asyncio/threads.py", + "lib/python3.13/asyncio/timeouts.py", + "lib/python3.13/asyncio/transports.py", + "lib/python3.13/asyncio/trsock.py", + "lib/python3.13/asyncio/unix_events.py", + "lib/python3.13/asyncio/windows_events.py", + "lib/python3.13/asyncio/windows_utils.py", + "lib/python3.13/base64.py", + "lib/python3.13/bdb.py", + "lib/python3.13/bisect.py", + "lib/python3.13/bz2.py", + "lib/python3.13/cProfile.py", + "lib/python3.13/calendar.py", + "lib/python3.13/cmd.py", + "lib/python3.13/code.py", + "lib/python3.13/codecs.py", + "lib/python3.13/codeop.py", + "lib/python3.13/collections/__init__.py", + "lib/python3.13/collections/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/colorsys.py", + "lib/python3.13/compileall.py", + "lib/python3.13/concurrent/__init__.py", + "lib/python3.13/concurrent/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/concurrent/futures/__init__.py", + "lib/python3.13/concurrent/futures/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/concurrent/futures/__pycache__/_base.cpython-313.pyc", + "lib/python3.13/concurrent/futures/__pycache__/process.cpython-313.pyc", + "lib/python3.13/concurrent/futures/__pycache__/thread.cpython-313.pyc", + "lib/python3.13/concurrent/futures/_base.py", + "lib/python3.13/concurrent/futures/process.py", + "lib/python3.13/concurrent/futures/thread.py", + "lib/python3.13/config-3.13-x86_64-linux-gnu/Makefile", + "lib/python3.13/config-3.13-x86_64-linux-gnu/Setup", + "lib/python3.13/config-3.13-x86_64-linux-gnu/Setup.bootstrap", + "lib/python3.13/config-3.13-x86_64-linux-gnu/Setup.local", + "lib/python3.13/config-3.13-x86_64-linux-gnu/Setup.stdlib", + "lib/python3.13/config-3.13-x86_64-linux-gnu/__pycache__/python-config.cpython-313.pyc", + "lib/python3.13/config-3.13-x86_64-linux-gnu/config.c", + "lib/python3.13/config-3.13-x86_64-linux-gnu/config.c.in", + "lib/python3.13/config-3.13-x86_64-linux-gnu/install-sh", + "lib/python3.13/config-3.13-x86_64-linux-gnu/makesetup", + "lib/python3.13/config-3.13-x86_64-linux-gnu/python-config.py", + "lib/python3.13/config-3.13-x86_64-linux-gnu/python.o", + "lib/python3.13/configparser.py", + "lib/python3.13/contextlib.py", + "lib/python3.13/contextvars.py", + "lib/python3.13/copy.py", + "lib/python3.13/copyreg.py", + "lib/python3.13/csv.py", + "lib/python3.13/ctypes/__init__.py", + "lib/python3.13/ctypes/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/ctypes/__pycache__/_aix.cpython-313.pyc", + "lib/python3.13/ctypes/__pycache__/_endian.cpython-313.pyc", + "lib/python3.13/ctypes/__pycache__/util.cpython-313.pyc", + "lib/python3.13/ctypes/__pycache__/wintypes.cpython-313.pyc", + "lib/python3.13/ctypes/_aix.py", + "lib/python3.13/ctypes/_endian.py", + "lib/python3.13/ctypes/macholib/README.ctypes", + "lib/python3.13/ctypes/macholib/__init__.py", + "lib/python3.13/ctypes/macholib/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/ctypes/macholib/__pycache__/dyld.cpython-313.pyc", + "lib/python3.13/ctypes/macholib/__pycache__/dylib.cpython-313.pyc", + "lib/python3.13/ctypes/macholib/__pycache__/framework.cpython-313.pyc", + "lib/python3.13/ctypes/macholib/dyld.py", + "lib/python3.13/ctypes/macholib/dylib.py", + "lib/python3.13/ctypes/macholib/fetch_macholib", + "lib/python3.13/ctypes/macholib/fetch_macholib.bat", + "lib/python3.13/ctypes/macholib/framework.py", + "lib/python3.13/ctypes/util.py", + "lib/python3.13/ctypes/wintypes.py", + "lib/python3.13/curses/__init__.py", + "lib/python3.13/curses/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/curses/__pycache__/ascii.cpython-313.pyc", + "lib/python3.13/curses/__pycache__/has_key.cpython-313.pyc", + "lib/python3.13/curses/__pycache__/panel.cpython-313.pyc", + "lib/python3.13/curses/__pycache__/textpad.cpython-313.pyc", + "lib/python3.13/curses/ascii.py", + "lib/python3.13/curses/has_key.py", + "lib/python3.13/curses/panel.py", + "lib/python3.13/curses/textpad.py", + "lib/python3.13/dataclasses.py", + "lib/python3.13/datetime.py", + "lib/python3.13/dbm/__init__.py", + "lib/python3.13/dbm/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/dbm/__pycache__/dumb.cpython-313.pyc", + "lib/python3.13/dbm/__pycache__/gnu.cpython-313.pyc", + "lib/python3.13/dbm/__pycache__/ndbm.cpython-313.pyc", + "lib/python3.13/dbm/__pycache__/sqlite3.cpython-313.pyc", + "lib/python3.13/dbm/dumb.py", + "lib/python3.13/dbm/gnu.py", + "lib/python3.13/dbm/ndbm.py", + "lib/python3.13/dbm/sqlite3.py", + "lib/python3.13/decimal.py", + "lib/python3.13/difflib.py", + "lib/python3.13/dis.py", + "lib/python3.13/doctest.py", + "lib/python3.13/email/__init__.py", + "lib/python3.13/email/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/email/__pycache__/_encoded_words.cpython-313.pyc", + "lib/python3.13/email/__pycache__/_header_value_parser.cpython-313.pyc", + "lib/python3.13/email/__pycache__/_parseaddr.cpython-313.pyc", + "lib/python3.13/email/__pycache__/_policybase.cpython-313.pyc", + "lib/python3.13/email/__pycache__/base64mime.cpython-313.pyc", + "lib/python3.13/email/__pycache__/charset.cpython-313.pyc", + "lib/python3.13/email/__pycache__/contentmanager.cpython-313.pyc", + "lib/python3.13/email/__pycache__/encoders.cpython-313.pyc", + "lib/python3.13/email/__pycache__/errors.cpython-313.pyc", + "lib/python3.13/email/__pycache__/feedparser.cpython-313.pyc", + "lib/python3.13/email/__pycache__/generator.cpython-313.pyc", + "lib/python3.13/email/__pycache__/header.cpython-313.pyc", + "lib/python3.13/email/__pycache__/headerregistry.cpython-313.pyc", + "lib/python3.13/email/__pycache__/iterators.cpython-313.pyc", + "lib/python3.13/email/__pycache__/message.cpython-313.pyc", + "lib/python3.13/email/__pycache__/parser.cpython-313.pyc", + "lib/python3.13/email/__pycache__/policy.cpython-313.pyc", + "lib/python3.13/email/__pycache__/quoprimime.cpython-313.pyc", + "lib/python3.13/email/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/email/_encoded_words.py", + "lib/python3.13/email/_header_value_parser.py", + "lib/python3.13/email/_parseaddr.py", + "lib/python3.13/email/_policybase.py", + "lib/python3.13/email/architecture.rst", + "lib/python3.13/email/base64mime.py", + "lib/python3.13/email/charset.py", + "lib/python3.13/email/contentmanager.py", + "lib/python3.13/email/encoders.py", + "lib/python3.13/email/errors.py", + "lib/python3.13/email/feedparser.py", + "lib/python3.13/email/generator.py", + "lib/python3.13/email/header.py", + "lib/python3.13/email/headerregistry.py", + "lib/python3.13/email/iterators.py", + "lib/python3.13/email/message.py", + "lib/python3.13/email/mime/__init__.py", + "lib/python3.13/email/mime/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/email/mime/__pycache__/application.cpython-313.pyc", + "lib/python3.13/email/mime/__pycache__/audio.cpython-313.pyc", + "lib/python3.13/email/mime/__pycache__/base.cpython-313.pyc", + "lib/python3.13/email/mime/__pycache__/image.cpython-313.pyc", + "lib/python3.13/email/mime/__pycache__/message.cpython-313.pyc", + "lib/python3.13/email/mime/__pycache__/multipart.cpython-313.pyc", + "lib/python3.13/email/mime/__pycache__/nonmultipart.cpython-313.pyc", + "lib/python3.13/email/mime/__pycache__/text.cpython-313.pyc", + "lib/python3.13/email/mime/application.py", + "lib/python3.13/email/mime/audio.py", + "lib/python3.13/email/mime/base.py", + "lib/python3.13/email/mime/image.py", + "lib/python3.13/email/mime/message.py", + "lib/python3.13/email/mime/multipart.py", + "lib/python3.13/email/mime/nonmultipart.py", + "lib/python3.13/email/mime/text.py", + "lib/python3.13/email/parser.py", + "lib/python3.13/email/policy.py", + "lib/python3.13/email/quoprimime.py", + "lib/python3.13/email/utils.py", + "lib/python3.13/encodings/__init__.py", + "lib/python3.13/encodings/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/aliases.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/ascii.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/base64_codec.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/big5.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/big5hkscs.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/bz2_codec.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/charmap.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp037.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp1006.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp1026.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp1125.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp1140.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp1250.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp1251.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp1252.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp1253.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp1254.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp1255.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp1256.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp1257.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp1258.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp273.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp424.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp437.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp500.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp720.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp737.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp775.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp850.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp852.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp855.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp856.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp857.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp858.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp860.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp861.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp862.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp863.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp864.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp865.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp866.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp869.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp874.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp875.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp932.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp949.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/cp950.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/euc_jis_2004.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/euc_jisx0213.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/euc_jp.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/euc_kr.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/gb18030.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/gb2312.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/gbk.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/hex_codec.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/hp_roman8.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/hz.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/idna.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/iso2022_jp.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/iso2022_jp_1.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/iso2022_jp_2.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/iso2022_jp_2004.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/iso2022_jp_3.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/iso2022_jp_ext.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/iso2022_kr.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/iso8859_1.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/iso8859_10.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/iso8859_11.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/iso8859_13.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/iso8859_14.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/iso8859_15.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/iso8859_16.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/iso8859_2.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/iso8859_3.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/iso8859_4.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/iso8859_5.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/iso8859_6.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/iso8859_7.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/iso8859_8.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/iso8859_9.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/johab.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/koi8_r.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/koi8_t.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/koi8_u.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/kz1048.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/latin_1.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/mac_arabic.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/mac_croatian.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/mac_cyrillic.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/mac_farsi.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/mac_greek.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/mac_iceland.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/mac_latin2.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/mac_roman.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/mac_romanian.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/mac_turkish.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/mbcs.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/oem.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/palmos.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/ptcp154.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/punycode.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/quopri_codec.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/raw_unicode_escape.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/rot_13.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/shift_jis.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/shift_jis_2004.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/shift_jisx0213.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/tis_620.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/undefined.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/unicode_escape.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/utf_16.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/utf_16_be.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/utf_16_le.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/utf_32.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/utf_32_be.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/utf_32_le.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/utf_7.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/utf_8.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/utf_8_sig.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/uu_codec.cpython-313.pyc", + "lib/python3.13/encodings/__pycache__/zlib_codec.cpython-313.pyc", + "lib/python3.13/encodings/aliases.py", + "lib/python3.13/encodings/ascii.py", + "lib/python3.13/encodings/base64_codec.py", + "lib/python3.13/encodings/big5.py", + "lib/python3.13/encodings/big5hkscs.py", + "lib/python3.13/encodings/bz2_codec.py", + "lib/python3.13/encodings/charmap.py", + "lib/python3.13/encodings/cp037.py", + "lib/python3.13/encodings/cp1006.py", + "lib/python3.13/encodings/cp1026.py", + "lib/python3.13/encodings/cp1125.py", + "lib/python3.13/encodings/cp1140.py", + "lib/python3.13/encodings/cp1250.py", + "lib/python3.13/encodings/cp1251.py", + "lib/python3.13/encodings/cp1252.py", + "lib/python3.13/encodings/cp1253.py", + "lib/python3.13/encodings/cp1254.py", + "lib/python3.13/encodings/cp1255.py", + "lib/python3.13/encodings/cp1256.py", + "lib/python3.13/encodings/cp1257.py", + "lib/python3.13/encodings/cp1258.py", + "lib/python3.13/encodings/cp273.py", + "lib/python3.13/encodings/cp424.py", + "lib/python3.13/encodings/cp437.py", + "lib/python3.13/encodings/cp500.py", + "lib/python3.13/encodings/cp720.py", + "lib/python3.13/encodings/cp737.py", + "lib/python3.13/encodings/cp775.py", + "lib/python3.13/encodings/cp850.py", + "lib/python3.13/encodings/cp852.py", + "lib/python3.13/encodings/cp855.py", + "lib/python3.13/encodings/cp856.py", + "lib/python3.13/encodings/cp857.py", + "lib/python3.13/encodings/cp858.py", + "lib/python3.13/encodings/cp860.py", + "lib/python3.13/encodings/cp861.py", + "lib/python3.13/encodings/cp862.py", + "lib/python3.13/encodings/cp863.py", + "lib/python3.13/encodings/cp864.py", + "lib/python3.13/encodings/cp865.py", + "lib/python3.13/encodings/cp866.py", + "lib/python3.13/encodings/cp869.py", + "lib/python3.13/encodings/cp874.py", + "lib/python3.13/encodings/cp875.py", + "lib/python3.13/encodings/cp932.py", + "lib/python3.13/encodings/cp949.py", + "lib/python3.13/encodings/cp950.py", + "lib/python3.13/encodings/euc_jis_2004.py", + "lib/python3.13/encodings/euc_jisx0213.py", + "lib/python3.13/encodings/euc_jp.py", + "lib/python3.13/encodings/euc_kr.py", + "lib/python3.13/encodings/gb18030.py", + "lib/python3.13/encodings/gb2312.py", + "lib/python3.13/encodings/gbk.py", + "lib/python3.13/encodings/hex_codec.py", + "lib/python3.13/encodings/hp_roman8.py", + "lib/python3.13/encodings/hz.py", + "lib/python3.13/encodings/idna.py", + "lib/python3.13/encodings/iso2022_jp.py", + "lib/python3.13/encodings/iso2022_jp_1.py", + "lib/python3.13/encodings/iso2022_jp_2.py", + "lib/python3.13/encodings/iso2022_jp_2004.py", + "lib/python3.13/encodings/iso2022_jp_3.py", + "lib/python3.13/encodings/iso2022_jp_ext.py", + "lib/python3.13/encodings/iso2022_kr.py", + "lib/python3.13/encodings/iso8859_1.py", + "lib/python3.13/encodings/iso8859_10.py", + "lib/python3.13/encodings/iso8859_11.py", + "lib/python3.13/encodings/iso8859_13.py", + "lib/python3.13/encodings/iso8859_14.py", + "lib/python3.13/encodings/iso8859_15.py", + "lib/python3.13/encodings/iso8859_16.py", + "lib/python3.13/encodings/iso8859_2.py", + "lib/python3.13/encodings/iso8859_3.py", + "lib/python3.13/encodings/iso8859_4.py", + "lib/python3.13/encodings/iso8859_5.py", + "lib/python3.13/encodings/iso8859_6.py", + "lib/python3.13/encodings/iso8859_7.py", + "lib/python3.13/encodings/iso8859_8.py", + "lib/python3.13/encodings/iso8859_9.py", + "lib/python3.13/encodings/johab.py", + "lib/python3.13/encodings/koi8_r.py", + "lib/python3.13/encodings/koi8_t.py", + "lib/python3.13/encodings/koi8_u.py", + "lib/python3.13/encodings/kz1048.py", + "lib/python3.13/encodings/latin_1.py", + "lib/python3.13/encodings/mac_arabic.py", + "lib/python3.13/encodings/mac_croatian.py", + "lib/python3.13/encodings/mac_cyrillic.py", + "lib/python3.13/encodings/mac_farsi.py", + "lib/python3.13/encodings/mac_greek.py", + "lib/python3.13/encodings/mac_iceland.py", + "lib/python3.13/encodings/mac_latin2.py", + "lib/python3.13/encodings/mac_roman.py", + "lib/python3.13/encodings/mac_romanian.py", + "lib/python3.13/encodings/mac_turkish.py", + "lib/python3.13/encodings/mbcs.py", + "lib/python3.13/encodings/oem.py", + "lib/python3.13/encodings/palmos.py", + "lib/python3.13/encodings/ptcp154.py", + "lib/python3.13/encodings/punycode.py", + "lib/python3.13/encodings/quopri_codec.py", + "lib/python3.13/encodings/raw_unicode_escape.py", + "lib/python3.13/encodings/rot_13.py", + "lib/python3.13/encodings/shift_jis.py", + "lib/python3.13/encodings/shift_jis_2004.py", + "lib/python3.13/encodings/shift_jisx0213.py", + "lib/python3.13/encodings/tis_620.py", + "lib/python3.13/encodings/undefined.py", + "lib/python3.13/encodings/unicode_escape.py", + "lib/python3.13/encodings/utf_16.py", + "lib/python3.13/encodings/utf_16_be.py", + "lib/python3.13/encodings/utf_16_le.py", + "lib/python3.13/encodings/utf_32.py", + "lib/python3.13/encodings/utf_32_be.py", + "lib/python3.13/encodings/utf_32_le.py", + "lib/python3.13/encodings/utf_7.py", + "lib/python3.13/encodings/utf_8.py", + "lib/python3.13/encodings/utf_8_sig.py", + "lib/python3.13/encodings/uu_codec.py", + "lib/python3.13/encodings/zlib_codec.py", + "lib/python3.13/ensurepip/__init__.py", + "lib/python3.13/ensurepip/__main__.py", + "lib/python3.13/ensurepip/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/ensurepip/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/ensurepip/__pycache__/_uninstall.cpython-313.pyc", + "lib/python3.13/ensurepip/_bundled/pip-25.3-py3-none-any.whl", + "lib/python3.13/ensurepip/_uninstall.py", + "lib/python3.13/enum.py", + "lib/python3.13/filecmp.py", + "lib/python3.13/fileinput.py", + "lib/python3.13/fnmatch.py", + "lib/python3.13/fractions.py", + "lib/python3.13/ftplib.py", + "lib/python3.13/functools.py", + "lib/python3.13/genericpath.py", + "lib/python3.13/getopt.py", + "lib/python3.13/getpass.py", + "lib/python3.13/gettext.py", + "lib/python3.13/glob.py", + "lib/python3.13/graphlib.py", + "lib/python3.13/gzip.py", + "lib/python3.13/hashlib.py", + "lib/python3.13/heapq.py", + "lib/python3.13/hmac.py", + "lib/python3.13/html/__init__.py", + "lib/python3.13/html/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/html/__pycache__/entities.cpython-313.pyc", + "lib/python3.13/html/__pycache__/parser.cpython-313.pyc", + "lib/python3.13/html/entities.py", + "lib/python3.13/html/parser.py", + "lib/python3.13/http/__init__.py", + "lib/python3.13/http/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/http/__pycache__/client.cpython-313.pyc", + "lib/python3.13/http/__pycache__/cookiejar.cpython-313.pyc", + "lib/python3.13/http/__pycache__/cookies.cpython-313.pyc", + "lib/python3.13/http/__pycache__/server.cpython-313.pyc", + "lib/python3.13/http/client.py", + "lib/python3.13/http/cookiejar.py", + "lib/python3.13/http/cookies.py", + "lib/python3.13/http/server.py", + "lib/python3.13/idlelib/CREDITS.txt", + "lib/python3.13/idlelib/ChangeLog", + "lib/python3.13/idlelib/HISTORY.txt", + "lib/python3.13/idlelib/Icons/README.txt", + "lib/python3.13/idlelib/Icons/folder.gif", + "lib/python3.13/idlelib/Icons/idle.ico", + "lib/python3.13/idlelib/Icons/idle_16.gif", + "lib/python3.13/idlelib/Icons/idle_16.png", + "lib/python3.13/idlelib/Icons/idle_256.png", + "lib/python3.13/idlelib/Icons/idle_32.gif", + "lib/python3.13/idlelib/Icons/idle_32.png", + "lib/python3.13/idlelib/Icons/idle_48.gif", + "lib/python3.13/idlelib/Icons/idle_48.png", + "lib/python3.13/idlelib/Icons/minusnode.gif", + "lib/python3.13/idlelib/Icons/openfolder.gif", + "lib/python3.13/idlelib/Icons/plusnode.gif", + "lib/python3.13/idlelib/Icons/python.gif", + "lib/python3.13/idlelib/Icons/tk.gif", + "lib/python3.13/idlelib/NEWS2x.txt", + "lib/python3.13/idlelib/News3.txt", + "lib/python3.13/idlelib/README.txt", + "lib/python3.13/idlelib/TODO.txt", + "lib/python3.13/idlelib/__init__.py", + "lib/python3.13/idlelib/__main__.py", + "lib/python3.13/idlelib/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/autocomplete.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/autocomplete_w.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/autoexpand.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/browser.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/calltip.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/calltip_w.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/codecontext.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/colorizer.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/config.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/config_key.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/configdialog.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/debugger.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/debugger_r.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/debugobj.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/debugobj_r.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/delegator.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/dynoption.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/editor.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/filelist.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/format.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/grep.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/help.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/help_about.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/history.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/hyperparser.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/idle.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/iomenu.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/macosx.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/mainmenu.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/multicall.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/outwin.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/parenmatch.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/pathbrowser.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/percolator.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/pyparse.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/pyshell.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/query.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/redirector.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/replace.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/rpc.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/run.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/runscript.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/scrolledlist.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/search.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/searchbase.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/searchengine.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/sidebar.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/squeezer.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/stackviewer.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/statusbar.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/textview.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/tooltip.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/tree.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/undo.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/util.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/window.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/zoomheight.cpython-313.pyc", + "lib/python3.13/idlelib/__pycache__/zzdummy.cpython-313.pyc", + "lib/python3.13/idlelib/autocomplete.py", + "lib/python3.13/idlelib/autocomplete_w.py", + "lib/python3.13/idlelib/autoexpand.py", + "lib/python3.13/idlelib/browser.py", + "lib/python3.13/idlelib/calltip.py", + "lib/python3.13/idlelib/calltip_w.py", + "lib/python3.13/idlelib/codecontext.py", + "lib/python3.13/idlelib/colorizer.py", + "lib/python3.13/idlelib/config-extensions.def", + "lib/python3.13/idlelib/config-highlight.def", + "lib/python3.13/idlelib/config-keys.def", + "lib/python3.13/idlelib/config-main.def", + "lib/python3.13/idlelib/config.py", + "lib/python3.13/idlelib/config_key.py", + "lib/python3.13/idlelib/configdialog.py", + "lib/python3.13/idlelib/debugger.py", + "lib/python3.13/idlelib/debugger_r.py", + "lib/python3.13/idlelib/debugobj.py", + "lib/python3.13/idlelib/debugobj_r.py", + "lib/python3.13/idlelib/delegator.py", + "lib/python3.13/idlelib/dynoption.py", + "lib/python3.13/idlelib/editor.py", + "lib/python3.13/idlelib/extend.txt", + "lib/python3.13/idlelib/filelist.py", + "lib/python3.13/idlelib/format.py", + "lib/python3.13/idlelib/grep.py", + "lib/python3.13/idlelib/help.html", + "lib/python3.13/idlelib/help.py", + "lib/python3.13/idlelib/help_about.py", + "lib/python3.13/idlelib/history.py", + "lib/python3.13/idlelib/hyperparser.py", + "lib/python3.13/idlelib/idle.bat", + "lib/python3.13/idlelib/idle.py", + "lib/python3.13/idlelib/idle.pyw", + "lib/python3.13/idlelib/idle_test/README.txt", + "lib/python3.13/idlelib/idle_test/__init__.py", + "lib/python3.13/idlelib/idle_test/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/htest.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/mock_idle.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/mock_tk.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/template.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_autocomplete.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_autocomplete_w.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_autoexpand.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_browser.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_calltip.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_calltip_w.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_codecontext.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_colorizer.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_config.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_config_key.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_configdialog.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_debugger.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_debugger_r.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_debugobj.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_debugobj_r.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_delegator.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_editmenu.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_editor.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_filelist.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_format.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_grep.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_help.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_help_about.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_history.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_hyperparser.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_iomenu.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_macosx.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_mainmenu.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_multicall.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_outwin.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_parenmatch.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_pathbrowser.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_percolator.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_pyparse.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_pyshell.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_query.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_redirector.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_replace.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_rpc.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_run.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_runscript.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_scrolledlist.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_search.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_searchbase.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_searchengine.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_sidebar.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_squeezer.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_stackviewer.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_statusbar.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_text.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_textview.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_tooltip.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_tree.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_undo.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_util.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_warning.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_window.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_zoomheight.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/test_zzdummy.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/__pycache__/tkinter_testing_utils.cpython-313.pyc", + "lib/python3.13/idlelib/idle_test/example_noext", + "lib/python3.13/idlelib/idle_test/example_stub.pyi", + "lib/python3.13/idlelib/idle_test/htest.py", + "lib/python3.13/idlelib/idle_test/mock_idle.py", + "lib/python3.13/idlelib/idle_test/mock_tk.py", + "lib/python3.13/idlelib/idle_test/template.py", + "lib/python3.13/idlelib/idle_test/test_autocomplete.py", + "lib/python3.13/idlelib/idle_test/test_autocomplete_w.py", + "lib/python3.13/idlelib/idle_test/test_autoexpand.py", + "lib/python3.13/idlelib/idle_test/test_browser.py", + "lib/python3.13/idlelib/idle_test/test_calltip.py", + "lib/python3.13/idlelib/idle_test/test_calltip_w.py", + "lib/python3.13/idlelib/idle_test/test_codecontext.py", + "lib/python3.13/idlelib/idle_test/test_colorizer.py", + "lib/python3.13/idlelib/idle_test/test_config.py", + "lib/python3.13/idlelib/idle_test/test_config_key.py", + "lib/python3.13/idlelib/idle_test/test_configdialog.py", + "lib/python3.13/idlelib/idle_test/test_debugger.py", + "lib/python3.13/idlelib/idle_test/test_debugger_r.py", + "lib/python3.13/idlelib/idle_test/test_debugobj.py", + "lib/python3.13/idlelib/idle_test/test_debugobj_r.py", + "lib/python3.13/idlelib/idle_test/test_delegator.py", + "lib/python3.13/idlelib/idle_test/test_editmenu.py", + "lib/python3.13/idlelib/idle_test/test_editor.py", + "lib/python3.13/idlelib/idle_test/test_filelist.py", + "lib/python3.13/idlelib/idle_test/test_format.py", + "lib/python3.13/idlelib/idle_test/test_grep.py", + "lib/python3.13/idlelib/idle_test/test_help.py", + "lib/python3.13/idlelib/idle_test/test_help_about.py", + "lib/python3.13/idlelib/idle_test/test_history.py", + "lib/python3.13/idlelib/idle_test/test_hyperparser.py", + "lib/python3.13/idlelib/idle_test/test_iomenu.py", + "lib/python3.13/idlelib/idle_test/test_macosx.py", + "lib/python3.13/idlelib/idle_test/test_mainmenu.py", + "lib/python3.13/idlelib/idle_test/test_multicall.py", + "lib/python3.13/idlelib/idle_test/test_outwin.py", + "lib/python3.13/idlelib/idle_test/test_parenmatch.py", + "lib/python3.13/idlelib/idle_test/test_pathbrowser.py", + "lib/python3.13/idlelib/idle_test/test_percolator.py", + "lib/python3.13/idlelib/idle_test/test_pyparse.py", + "lib/python3.13/idlelib/idle_test/test_pyshell.py", + "lib/python3.13/idlelib/idle_test/test_query.py", + "lib/python3.13/idlelib/idle_test/test_redirector.py", + "lib/python3.13/idlelib/idle_test/test_replace.py", + "lib/python3.13/idlelib/idle_test/test_rpc.py", + "lib/python3.13/idlelib/idle_test/test_run.py", + "lib/python3.13/idlelib/idle_test/test_runscript.py", + "lib/python3.13/idlelib/idle_test/test_scrolledlist.py", + "lib/python3.13/idlelib/idle_test/test_search.py", + "lib/python3.13/idlelib/idle_test/test_searchbase.py", + "lib/python3.13/idlelib/idle_test/test_searchengine.py", + "lib/python3.13/idlelib/idle_test/test_sidebar.py", + "lib/python3.13/idlelib/idle_test/test_squeezer.py", + "lib/python3.13/idlelib/idle_test/test_stackviewer.py", + "lib/python3.13/idlelib/idle_test/test_statusbar.py", + "lib/python3.13/idlelib/idle_test/test_text.py", + "lib/python3.13/idlelib/idle_test/test_textview.py", + "lib/python3.13/idlelib/idle_test/test_tooltip.py", + "lib/python3.13/idlelib/idle_test/test_tree.py", + "lib/python3.13/idlelib/idle_test/test_undo.py", + "lib/python3.13/idlelib/idle_test/test_util.py", + "lib/python3.13/idlelib/idle_test/test_warning.py", + "lib/python3.13/idlelib/idle_test/test_window.py", + "lib/python3.13/idlelib/idle_test/test_zoomheight.py", + "lib/python3.13/idlelib/idle_test/test_zzdummy.py", + "lib/python3.13/idlelib/idle_test/tkinter_testing_utils.py", + "lib/python3.13/idlelib/iomenu.py", + "lib/python3.13/idlelib/macosx.py", + "lib/python3.13/idlelib/mainmenu.py", + "lib/python3.13/idlelib/multicall.py", + "lib/python3.13/idlelib/outwin.py", + "lib/python3.13/idlelib/parenmatch.py", + "lib/python3.13/idlelib/pathbrowser.py", + "lib/python3.13/idlelib/percolator.py", + "lib/python3.13/idlelib/pyparse.py", + "lib/python3.13/idlelib/pyshell.py", + "lib/python3.13/idlelib/query.py", + "lib/python3.13/idlelib/redirector.py", + "lib/python3.13/idlelib/replace.py", + "lib/python3.13/idlelib/rpc.py", + "lib/python3.13/idlelib/run.py", + "lib/python3.13/idlelib/runscript.py", + "lib/python3.13/idlelib/scrolledlist.py", + "lib/python3.13/idlelib/search.py", + "lib/python3.13/idlelib/searchbase.py", + "lib/python3.13/idlelib/searchengine.py", + "lib/python3.13/idlelib/sidebar.py", + "lib/python3.13/idlelib/squeezer.py", + "lib/python3.13/idlelib/stackviewer.py", + "lib/python3.13/idlelib/statusbar.py", + "lib/python3.13/idlelib/textview.py", + "lib/python3.13/idlelib/tooltip.py", + "lib/python3.13/idlelib/tree.py", + "lib/python3.13/idlelib/undo.py", + "lib/python3.13/idlelib/util.py", + "lib/python3.13/idlelib/window.py", + "lib/python3.13/idlelib/zoomheight.py", + "lib/python3.13/idlelib/zzdummy.py", + "lib/python3.13/imaplib.py", + "lib/python3.13/importlib/__init__.py", + "lib/python3.13/importlib/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/importlib/__pycache__/_abc.cpython-313.pyc", + "lib/python3.13/importlib/__pycache__/_bootstrap.cpython-313.pyc", + "lib/python3.13/importlib/__pycache__/_bootstrap_external.cpython-313.pyc", + "lib/python3.13/importlib/__pycache__/abc.cpython-313.pyc", + "lib/python3.13/importlib/__pycache__/machinery.cpython-313.pyc", + "lib/python3.13/importlib/__pycache__/readers.cpython-313.pyc", + "lib/python3.13/importlib/__pycache__/simple.cpython-313.pyc", + "lib/python3.13/importlib/__pycache__/util.cpython-313.pyc", + "lib/python3.13/importlib/_abc.py", + "lib/python3.13/importlib/_bootstrap.py", + "lib/python3.13/importlib/_bootstrap_external.py", + "lib/python3.13/importlib/abc.py", + "lib/python3.13/importlib/machinery.py", + "lib/python3.13/importlib/metadata/__init__.py", + "lib/python3.13/importlib/metadata/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/importlib/metadata/__pycache__/_adapters.cpython-313.pyc", + "lib/python3.13/importlib/metadata/__pycache__/_collections.cpython-313.pyc", + "lib/python3.13/importlib/metadata/__pycache__/_functools.cpython-313.pyc", + "lib/python3.13/importlib/metadata/__pycache__/_itertools.cpython-313.pyc", + "lib/python3.13/importlib/metadata/__pycache__/_meta.cpython-313.pyc", + "lib/python3.13/importlib/metadata/__pycache__/_text.cpython-313.pyc", + "lib/python3.13/importlib/metadata/__pycache__/diagnose.cpython-313.pyc", + "lib/python3.13/importlib/metadata/_adapters.py", + "lib/python3.13/importlib/metadata/_collections.py", + "lib/python3.13/importlib/metadata/_functools.py", + "lib/python3.13/importlib/metadata/_itertools.py", + "lib/python3.13/importlib/metadata/_meta.py", + "lib/python3.13/importlib/metadata/_text.py", + "lib/python3.13/importlib/metadata/diagnose.py", + "lib/python3.13/importlib/readers.py", + "lib/python3.13/importlib/resources/__init__.py", + "lib/python3.13/importlib/resources/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/importlib/resources/__pycache__/_adapters.cpython-313.pyc", + "lib/python3.13/importlib/resources/__pycache__/_common.cpython-313.pyc", + "lib/python3.13/importlib/resources/__pycache__/_functional.cpython-313.pyc", + "lib/python3.13/importlib/resources/__pycache__/_itertools.cpython-313.pyc", + "lib/python3.13/importlib/resources/__pycache__/abc.cpython-313.pyc", + "lib/python3.13/importlib/resources/__pycache__/readers.cpython-313.pyc", + "lib/python3.13/importlib/resources/__pycache__/simple.cpython-313.pyc", + "lib/python3.13/importlib/resources/_adapters.py", + "lib/python3.13/importlib/resources/_common.py", + "lib/python3.13/importlib/resources/_functional.py", + "lib/python3.13/importlib/resources/_itertools.py", + "lib/python3.13/importlib/resources/abc.py", + "lib/python3.13/importlib/resources/readers.py", + "lib/python3.13/importlib/resources/simple.py", + "lib/python3.13/importlib/simple.py", + "lib/python3.13/importlib/util.py", + "lib/python3.13/inspect.py", + "lib/python3.13/io.py", + "lib/python3.13/ipaddress.py", + "lib/python3.13/json/__init__.py", + "lib/python3.13/json/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/json/__pycache__/decoder.cpython-313.pyc", + "lib/python3.13/json/__pycache__/encoder.cpython-313.pyc", + "lib/python3.13/json/__pycache__/scanner.cpython-313.pyc", + "lib/python3.13/json/__pycache__/tool.cpython-313.pyc", + "lib/python3.13/json/decoder.py", + "lib/python3.13/json/encoder.py", + "lib/python3.13/json/scanner.py", + "lib/python3.13/json/tool.py", + "lib/python3.13/keyword.py", + "lib/python3.13/lib-dynload/_asyncio.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_bisect.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_blake2.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_bz2.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_codecs_cn.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_codecs_hk.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_codecs_jp.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_codecs_kr.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_codecs_tw.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_contextvars.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_csv.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_ctypes.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_ctypes_test.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_curses.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_curses_panel.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_datetime.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_decimal.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_elementtree.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_hashlib.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_heapq.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_interpchannels.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_interpqueues.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_interpreters.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_json.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_lsprof.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_lzma.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_md5.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_multibytecodec.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_multiprocessing.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_opcode.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_pickle.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_posixshmem.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_posixsubprocess.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_queue.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_random.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_sha1.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_sha2.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_sha3.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_socket.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_sqlite3.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_ssl.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_statistics.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_struct.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_testbuffer.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_testcapi.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_testclinic.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_testclinic_limited.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_testexternalinspection.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_testimportmultiple.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_testinternalcapi.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_testmultiphase.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_testsinglephase.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_tkinter.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_uuid.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/_zoneinfo.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/array.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/binascii.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/cmath.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/fcntl.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/grp.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/math.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/mmap.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/pyexpat.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/readline.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/resource.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/select.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/syslog.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/termios.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/unicodedata.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/xxlimited.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/xxlimited_35.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/xxsubtype.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/lib-dynload/zlib.cpython-313-x86_64-linux-gnu.so", + "lib/python3.13/linecache.py", + "lib/python3.13/locale.py", + "lib/python3.13/logging/__init__.py", + "lib/python3.13/logging/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/logging/__pycache__/config.cpython-313.pyc", + "lib/python3.13/logging/__pycache__/handlers.cpython-313.pyc", + "lib/python3.13/logging/config.py", + "lib/python3.13/logging/handlers.py", + "lib/python3.13/lzma.py", + "lib/python3.13/mailbox.py", + "lib/python3.13/mimetypes.py", + "lib/python3.13/modulefinder.py", + "lib/python3.13/multiprocessing/__init__.py", + "lib/python3.13/multiprocessing/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/multiprocessing/__pycache__/connection.cpython-313.pyc", + "lib/python3.13/multiprocessing/__pycache__/context.cpython-313.pyc", + "lib/python3.13/multiprocessing/__pycache__/forkserver.cpython-313.pyc", + "lib/python3.13/multiprocessing/__pycache__/heap.cpython-313.pyc", + "lib/python3.13/multiprocessing/__pycache__/managers.cpython-313.pyc", + "lib/python3.13/multiprocessing/__pycache__/pool.cpython-313.pyc", + "lib/python3.13/multiprocessing/__pycache__/popen_fork.cpython-313.pyc", + "lib/python3.13/multiprocessing/__pycache__/popen_forkserver.cpython-313.pyc", + "lib/python3.13/multiprocessing/__pycache__/popen_spawn_posix.cpython-313.pyc", + "lib/python3.13/multiprocessing/__pycache__/popen_spawn_win32.cpython-313.pyc", + "lib/python3.13/multiprocessing/__pycache__/process.cpython-313.pyc", + "lib/python3.13/multiprocessing/__pycache__/queues.cpython-313.pyc", + "lib/python3.13/multiprocessing/__pycache__/reduction.cpython-313.pyc", + "lib/python3.13/multiprocessing/__pycache__/resource_sharer.cpython-313.pyc", + "lib/python3.13/multiprocessing/__pycache__/resource_tracker.cpython-313.pyc", + "lib/python3.13/multiprocessing/__pycache__/shared_memory.cpython-313.pyc", + "lib/python3.13/multiprocessing/__pycache__/sharedctypes.cpython-313.pyc", + "lib/python3.13/multiprocessing/__pycache__/spawn.cpython-313.pyc", + "lib/python3.13/multiprocessing/__pycache__/synchronize.cpython-313.pyc", + "lib/python3.13/multiprocessing/__pycache__/util.cpython-313.pyc", + "lib/python3.13/multiprocessing/connection.py", + "lib/python3.13/multiprocessing/context.py", + "lib/python3.13/multiprocessing/dummy/__init__.py", + "lib/python3.13/multiprocessing/dummy/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/multiprocessing/dummy/__pycache__/connection.cpython-313.pyc", + "lib/python3.13/multiprocessing/dummy/connection.py", + "lib/python3.13/multiprocessing/forkserver.py", + "lib/python3.13/multiprocessing/heap.py", + "lib/python3.13/multiprocessing/managers.py", + "lib/python3.13/multiprocessing/pool.py", + "lib/python3.13/multiprocessing/popen_fork.py", + "lib/python3.13/multiprocessing/popen_forkserver.py", + "lib/python3.13/multiprocessing/popen_spawn_posix.py", + "lib/python3.13/multiprocessing/popen_spawn_win32.py", + "lib/python3.13/multiprocessing/process.py", + "lib/python3.13/multiprocessing/queues.py", + "lib/python3.13/multiprocessing/reduction.py", + "lib/python3.13/multiprocessing/resource_sharer.py", + "lib/python3.13/multiprocessing/resource_tracker.py", + "lib/python3.13/multiprocessing/shared_memory.py", + "lib/python3.13/multiprocessing/sharedctypes.py", + "lib/python3.13/multiprocessing/spawn.py", + "lib/python3.13/multiprocessing/synchronize.py", + "lib/python3.13/multiprocessing/util.py", + "lib/python3.13/netrc.py", + "lib/python3.13/ntpath.py", + "lib/python3.13/nturl2path.py", + "lib/python3.13/numbers.py", + "lib/python3.13/opcode.py", + "lib/python3.13/operator.py", + "lib/python3.13/optparse.py", + "lib/python3.13/os.py", + "lib/python3.13/pathlib/__init__.py", + "lib/python3.13/pathlib/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/pathlib/__pycache__/_abc.cpython-313.pyc", + "lib/python3.13/pathlib/__pycache__/_local.cpython-313.pyc", + "lib/python3.13/pathlib/_abc.py", + "lib/python3.13/pathlib/_local.py", + "lib/python3.13/pdb.py", + "lib/python3.13/pickle.py", + "lib/python3.13/pickletools.py", + "lib/python3.13/pkgutil.py", + "lib/python3.13/platform.py", + "lib/python3.13/plistlib.py", + "lib/python3.13/poplib.py", + "lib/python3.13/posixpath.py", + "lib/python3.13/pprint.py", + "lib/python3.13/profile.py", + "lib/python3.13/pstats.py", + "lib/python3.13/pty.py", + "lib/python3.13/py_compile.py", + "lib/python3.13/pyclbr.py", + "lib/python3.13/pydoc.py", + "lib/python3.13/pydoc_data/__init__.py", + "lib/python3.13/pydoc_data/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/pydoc_data/__pycache__/module_docs.cpython-313.pyc", + "lib/python3.13/pydoc_data/__pycache__/topics.cpython-313.pyc", + "lib/python3.13/pydoc_data/_pydoc.css", + "lib/python3.13/pydoc_data/module_docs.py", + "lib/python3.13/pydoc_data/topics.py", + "lib/python3.13/queue.py", + "lib/python3.13/quopri.py", + "lib/python3.13/random.py", + "lib/python3.13/re/__init__.py", + "lib/python3.13/re/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/re/__pycache__/_casefix.cpython-313.pyc", + "lib/python3.13/re/__pycache__/_compiler.cpython-313.pyc", + "lib/python3.13/re/__pycache__/_constants.cpython-313.pyc", + "lib/python3.13/re/__pycache__/_parser.cpython-313.pyc", + "lib/python3.13/re/_casefix.py", + "lib/python3.13/re/_compiler.py", + "lib/python3.13/re/_constants.py", + "lib/python3.13/re/_parser.py", + "lib/python3.13/reprlib.py", + "lib/python3.13/rlcompleter.py", + "lib/python3.13/runpy.py", + "lib/python3.13/sched.py", + "lib/python3.13/secrets.py", + "lib/python3.13/selectors.py", + "lib/python3.13/shelve.py", + "lib/python3.13/shlex.py", + "lib/python3.13/shutil.py", + "lib/python3.13/signal.py", + "lib/python3.13/site-packages/README.txt", + "lib/python3.13/site.py", + "lib/python3.13/sitecustomize.py", + "lib/python3.13/smtplib.py", + "lib/python3.13/socket.py", + "lib/python3.13/socketserver.py", + "lib/python3.13/sqlite3/__init__.py", + "lib/python3.13/sqlite3/__main__.py", + "lib/python3.13/sqlite3/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/sqlite3/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/sqlite3/__pycache__/dbapi2.cpython-313.pyc", + "lib/python3.13/sqlite3/__pycache__/dump.cpython-313.pyc", + "lib/python3.13/sqlite3/dbapi2.py", + "lib/python3.13/sqlite3/dump.py", + "lib/python3.13/sre_compile.py", + "lib/python3.13/sre_constants.py", + "lib/python3.13/sre_parse.py", + "lib/python3.13/ssl.py", + "lib/python3.13/stat.py", + "lib/python3.13/statistics.py", + "lib/python3.13/string.py", + "lib/python3.13/stringprep.py", + "lib/python3.13/struct.py", + "lib/python3.13/subprocess.py", + "lib/python3.13/symtable.py", + "lib/python3.13/sysconfig/__init__.py", + "lib/python3.13/sysconfig/__main__.py", + "lib/python3.13/sysconfig/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/sysconfig/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/tabnanny.py", + "lib/python3.13/tarfile.py", + "lib/python3.13/tempfile.py", + "lib/python3.13/test/__init__.py", + "lib/python3.13/test/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/test/__pycache__/test_script_helper.cpython-313.pyc", + "lib/python3.13/test/__pycache__/test_support.cpython-313.pyc", + "lib/python3.13/test/support/__init__.py", + "lib/python3.13/test/support/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/test/support/__pycache__/ast_helper.cpython-313.pyc", + "lib/python3.13/test/support/__pycache__/asynchat.cpython-313.pyc", + "lib/python3.13/test/support/__pycache__/asyncore.cpython-313.pyc", + "lib/python3.13/test/support/__pycache__/bytecode_helper.cpython-313.pyc", + "lib/python3.13/test/support/__pycache__/hashlib_helper.cpython-313.pyc", + "lib/python3.13/test/support/__pycache__/hypothesis_helper.cpython-313.pyc", + "lib/python3.13/test/support/__pycache__/i18n_helper.cpython-313.pyc", + "lib/python3.13/test/support/__pycache__/import_helper.cpython-313.pyc", + "lib/python3.13/test/support/__pycache__/logging_helper.cpython-313.pyc", + "lib/python3.13/test/support/__pycache__/numbers.cpython-313.pyc", + "lib/python3.13/test/support/__pycache__/os_helper.cpython-313.pyc", + "lib/python3.13/test/support/__pycache__/pty_helper.cpython-313.pyc", + "lib/python3.13/test/support/__pycache__/refleak_helper.cpython-313.pyc", + "lib/python3.13/test/support/__pycache__/script_helper.cpython-313.pyc", + "lib/python3.13/test/support/__pycache__/smtpd.cpython-313.pyc", + "lib/python3.13/test/support/__pycache__/socket_helper.cpython-313.pyc", + "lib/python3.13/test/support/__pycache__/testcase.cpython-313.pyc", + "lib/python3.13/test/support/__pycache__/threading_helper.cpython-313.pyc", + "lib/python3.13/test/support/__pycache__/venv.cpython-313.pyc", + "lib/python3.13/test/support/__pycache__/warnings_helper.cpython-313.pyc", + "lib/python3.13/test/support/_hypothesis_stubs/__init__.py", + "lib/python3.13/test/support/_hypothesis_stubs/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/test/support/_hypothesis_stubs/__pycache__/_helpers.cpython-313.pyc", + "lib/python3.13/test/support/_hypothesis_stubs/__pycache__/strategies.cpython-313.pyc", + "lib/python3.13/test/support/_hypothesis_stubs/_helpers.py", + "lib/python3.13/test/support/_hypothesis_stubs/strategies.py", + "lib/python3.13/test/support/ast_helper.py", + "lib/python3.13/test/support/asynchat.py", + "lib/python3.13/test/support/asyncore.py", + "lib/python3.13/test/support/bytecode_helper.py", + "lib/python3.13/test/support/hashlib_helper.py", + "lib/python3.13/test/support/hypothesis_helper.py", + "lib/python3.13/test/support/i18n_helper.py", + "lib/python3.13/test/support/import_helper.py", + "lib/python3.13/test/support/interpreters/__init__.py", + "lib/python3.13/test/support/interpreters/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/test/support/interpreters/__pycache__/_crossinterp.cpython-313.pyc", + "lib/python3.13/test/support/interpreters/__pycache__/channels.cpython-313.pyc", + "lib/python3.13/test/support/interpreters/__pycache__/queues.cpython-313.pyc", + "lib/python3.13/test/support/interpreters/_crossinterp.py", + "lib/python3.13/test/support/interpreters/channels.py", + "lib/python3.13/test/support/interpreters/queues.py", + "lib/python3.13/test/support/logging_helper.py", + "lib/python3.13/test/support/numbers.py", + "lib/python3.13/test/support/os_helper.py", + "lib/python3.13/test/support/pty_helper.py", + "lib/python3.13/test/support/refleak_helper.py", + "lib/python3.13/test/support/script_helper.py", + "lib/python3.13/test/support/smtpd.py", + "lib/python3.13/test/support/socket_helper.py", + "lib/python3.13/test/support/testcase.py", + "lib/python3.13/test/support/threading_helper.py", + "lib/python3.13/test/support/venv.py", + "lib/python3.13/test/support/warnings_helper.py", + "lib/python3.13/test/test_script_helper.py", + "lib/python3.13/test/test_support.py", + "lib/python3.13/textwrap.py", + "lib/python3.13/this.py", + "lib/python3.13/threading.py", + "lib/python3.13/timeit.py", + "lib/python3.13/tkinter/__init__.py", + "lib/python3.13/tkinter/__main__.py", + "lib/python3.13/tkinter/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/tkinter/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/tkinter/__pycache__/colorchooser.cpython-313.pyc", + "lib/python3.13/tkinter/__pycache__/commondialog.cpython-313.pyc", + "lib/python3.13/tkinter/__pycache__/constants.cpython-313.pyc", + "lib/python3.13/tkinter/__pycache__/dialog.cpython-313.pyc", + "lib/python3.13/tkinter/__pycache__/dnd.cpython-313.pyc", + "lib/python3.13/tkinter/__pycache__/filedialog.cpython-313.pyc", + "lib/python3.13/tkinter/__pycache__/font.cpython-313.pyc", + "lib/python3.13/tkinter/__pycache__/messagebox.cpython-313.pyc", + "lib/python3.13/tkinter/__pycache__/scrolledtext.cpython-313.pyc", + "lib/python3.13/tkinter/__pycache__/simpledialog.cpython-313.pyc", + "lib/python3.13/tkinter/__pycache__/ttk.cpython-313.pyc", + "lib/python3.13/tkinter/colorchooser.py", + "lib/python3.13/tkinter/commondialog.py", + "lib/python3.13/tkinter/constants.py", + "lib/python3.13/tkinter/dialog.py", + "lib/python3.13/tkinter/dnd.py", + "lib/python3.13/tkinter/filedialog.py", + "lib/python3.13/tkinter/font.py", + "lib/python3.13/tkinter/messagebox.py", + "lib/python3.13/tkinter/scrolledtext.py", + "lib/python3.13/tkinter/simpledialog.py", + "lib/python3.13/tkinter/ttk.py", + "lib/python3.13/token.py", + "lib/python3.13/tokenize.py", + "lib/python3.13/tomllib/__init__.py", + "lib/python3.13/tomllib/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/tomllib/__pycache__/_parser.cpython-313.pyc", + "lib/python3.13/tomllib/__pycache__/_re.cpython-313.pyc", + "lib/python3.13/tomllib/__pycache__/_types.cpython-313.pyc", + "lib/python3.13/tomllib/_parser.py", + "lib/python3.13/tomllib/_re.py", + "lib/python3.13/tomllib/_types.py", + "lib/python3.13/tomllib/mypy.ini", + "lib/python3.13/trace.py", + "lib/python3.13/traceback.py", + "lib/python3.13/tracemalloc.py", + "lib/python3.13/tty.py", + "lib/python3.13/turtle.py", + "lib/python3.13/turtledemo/__init__.py", + "lib/python3.13/turtledemo/__main__.py", + "lib/python3.13/turtledemo/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/turtledemo/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/turtledemo/__pycache__/bytedesign.cpython-313.pyc", + "lib/python3.13/turtledemo/__pycache__/chaos.cpython-313.pyc", + "lib/python3.13/turtledemo/__pycache__/clock.cpython-313.pyc", + "lib/python3.13/turtledemo/__pycache__/colormixer.cpython-313.pyc", + "lib/python3.13/turtledemo/__pycache__/forest.cpython-313.pyc", + "lib/python3.13/turtledemo/__pycache__/fractalcurves.cpython-313.pyc", + "lib/python3.13/turtledemo/__pycache__/lindenmayer.cpython-313.pyc", + "lib/python3.13/turtledemo/__pycache__/minimal_hanoi.cpython-313.pyc", + "lib/python3.13/turtledemo/__pycache__/nim.cpython-313.pyc", + "lib/python3.13/turtledemo/__pycache__/paint.cpython-313.pyc", + "lib/python3.13/turtledemo/__pycache__/peace.cpython-313.pyc", + "lib/python3.13/turtledemo/__pycache__/penrose.cpython-313.pyc", + "lib/python3.13/turtledemo/__pycache__/planet_and_moon.cpython-313.pyc", + "lib/python3.13/turtledemo/__pycache__/rosette.cpython-313.pyc", + "lib/python3.13/turtledemo/__pycache__/round_dance.cpython-313.pyc", + "lib/python3.13/turtledemo/__pycache__/sorting_animate.cpython-313.pyc", + "lib/python3.13/turtledemo/__pycache__/tree.cpython-313.pyc", + "lib/python3.13/turtledemo/__pycache__/two_canvases.cpython-313.pyc", + "lib/python3.13/turtledemo/__pycache__/yinyang.cpython-313.pyc", + "lib/python3.13/turtledemo/bytedesign.py", + "lib/python3.13/turtledemo/chaos.py", + "lib/python3.13/turtledemo/clock.py", + "lib/python3.13/turtledemo/colormixer.py", + "lib/python3.13/turtledemo/forest.py", + "lib/python3.13/turtledemo/fractalcurves.py", + "lib/python3.13/turtledemo/lindenmayer.py", + "lib/python3.13/turtledemo/minimal_hanoi.py", + "lib/python3.13/turtledemo/nim.py", + "lib/python3.13/turtledemo/paint.py", + "lib/python3.13/turtledemo/peace.py", + "lib/python3.13/turtledemo/penrose.py", + "lib/python3.13/turtledemo/planet_and_moon.py", + "lib/python3.13/turtledemo/rosette.py", + "lib/python3.13/turtledemo/round_dance.py", + "lib/python3.13/turtledemo/sorting_animate.py", + "lib/python3.13/turtledemo/tree.py", + "lib/python3.13/turtledemo/turtle.cfg", + "lib/python3.13/turtledemo/two_canvases.py", + "lib/python3.13/turtledemo/yinyang.py", + "lib/python3.13/types.py", + "lib/python3.13/typing.py", + "lib/python3.13/unittest/__init__.py", + "lib/python3.13/unittest/__main__.py", + "lib/python3.13/unittest/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/unittest/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/unittest/__pycache__/_log.cpython-313.pyc", + "lib/python3.13/unittest/__pycache__/async_case.cpython-313.pyc", + "lib/python3.13/unittest/__pycache__/case.cpython-313.pyc", + "lib/python3.13/unittest/__pycache__/loader.cpython-313.pyc", + "lib/python3.13/unittest/__pycache__/main.cpython-313.pyc", + "lib/python3.13/unittest/__pycache__/mock.cpython-313.pyc", + "lib/python3.13/unittest/__pycache__/result.cpython-313.pyc", + "lib/python3.13/unittest/__pycache__/runner.cpython-313.pyc", + "lib/python3.13/unittest/__pycache__/signals.cpython-313.pyc", + "lib/python3.13/unittest/__pycache__/suite.cpython-313.pyc", + "lib/python3.13/unittest/__pycache__/util.cpython-313.pyc", + "lib/python3.13/unittest/_log.py", + "lib/python3.13/unittest/async_case.py", + "lib/python3.13/unittest/case.py", + "lib/python3.13/unittest/loader.py", + "lib/python3.13/unittest/main.py", + "lib/python3.13/unittest/mock.py", + "lib/python3.13/unittest/result.py", + "lib/python3.13/unittest/runner.py", + "lib/python3.13/unittest/signals.py", + "lib/python3.13/unittest/suite.py", + "lib/python3.13/unittest/util.py", + "lib/python3.13/urllib/__init__.py", + "lib/python3.13/urllib/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/urllib/__pycache__/error.cpython-313.pyc", + "lib/python3.13/urllib/__pycache__/parse.cpython-313.pyc", + "lib/python3.13/urllib/__pycache__/request.cpython-313.pyc", + "lib/python3.13/urllib/__pycache__/response.cpython-313.pyc", + "lib/python3.13/urllib/__pycache__/robotparser.cpython-313.pyc", + "lib/python3.13/urllib/error.py", + "lib/python3.13/urllib/parse.py", + "lib/python3.13/urllib/request.py", + "lib/python3.13/urllib/response.py", + "lib/python3.13/urllib/robotparser.py", + "lib/python3.13/uuid.py", + "lib/python3.13/venv/__init__.py", + "lib/python3.13/venv/__main__.py", + "lib/python3.13/venv/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/venv/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/venv/scripts/common/Activate.ps1", + "lib/python3.13/venv/scripts/common/activate", + "lib/python3.13/venv/scripts/common/activate.fish", + "lib/python3.13/venv/scripts/posix/activate.csh", + "lib/python3.13/warnings.py", + "lib/python3.13/wave.py", + "lib/python3.13/weakref.py", + "lib/python3.13/webbrowser.py", + "lib/python3.13/wsgiref/__init__.py", + "lib/python3.13/wsgiref/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/wsgiref/__pycache__/handlers.cpython-313.pyc", + "lib/python3.13/wsgiref/__pycache__/headers.cpython-313.pyc", + "lib/python3.13/wsgiref/__pycache__/simple_server.cpython-313.pyc", + "lib/python3.13/wsgiref/__pycache__/types.cpython-313.pyc", + "lib/python3.13/wsgiref/__pycache__/util.cpython-313.pyc", + "lib/python3.13/wsgiref/__pycache__/validate.cpython-313.pyc", + "lib/python3.13/wsgiref/handlers.py", + "lib/python3.13/wsgiref/headers.py", + "lib/python3.13/wsgiref/simple_server.py", + "lib/python3.13/wsgiref/types.py", + "lib/python3.13/wsgiref/util.py", + "lib/python3.13/wsgiref/validate.py", + "lib/python3.13/xml/__init__.py", + "lib/python3.13/xml/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/xml/dom/NodeFilter.py", + "lib/python3.13/xml/dom/__init__.py", + "lib/python3.13/xml/dom/__pycache__/NodeFilter.cpython-313.pyc", + "lib/python3.13/xml/dom/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/xml/dom/__pycache__/domreg.cpython-313.pyc", + "lib/python3.13/xml/dom/__pycache__/expatbuilder.cpython-313.pyc", + "lib/python3.13/xml/dom/__pycache__/minicompat.cpython-313.pyc", + "lib/python3.13/xml/dom/__pycache__/minidom.cpython-313.pyc", + "lib/python3.13/xml/dom/__pycache__/pulldom.cpython-313.pyc", + "lib/python3.13/xml/dom/__pycache__/xmlbuilder.cpython-313.pyc", + "lib/python3.13/xml/dom/domreg.py", + "lib/python3.13/xml/dom/expatbuilder.py", + "lib/python3.13/xml/dom/minicompat.py", + "lib/python3.13/xml/dom/minidom.py", + "lib/python3.13/xml/dom/pulldom.py", + "lib/python3.13/xml/dom/xmlbuilder.py", + "lib/python3.13/xml/etree/ElementInclude.py", + "lib/python3.13/xml/etree/ElementPath.py", + "lib/python3.13/xml/etree/ElementTree.py", + "lib/python3.13/xml/etree/__init__.py", + "lib/python3.13/xml/etree/__pycache__/ElementInclude.cpython-313.pyc", + "lib/python3.13/xml/etree/__pycache__/ElementPath.cpython-313.pyc", + "lib/python3.13/xml/etree/__pycache__/ElementTree.cpython-313.pyc", + "lib/python3.13/xml/etree/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/xml/etree/__pycache__/cElementTree.cpython-313.pyc", + "lib/python3.13/xml/etree/cElementTree.py", + "lib/python3.13/xml/parsers/__init__.py", + "lib/python3.13/xml/parsers/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/xml/parsers/__pycache__/expat.cpython-313.pyc", + "lib/python3.13/xml/parsers/expat.py", + "lib/python3.13/xml/sax/__init__.py", + "lib/python3.13/xml/sax/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/xml/sax/__pycache__/_exceptions.cpython-313.pyc", + "lib/python3.13/xml/sax/__pycache__/expatreader.cpython-313.pyc", + "lib/python3.13/xml/sax/__pycache__/handler.cpython-313.pyc", + "lib/python3.13/xml/sax/__pycache__/saxutils.cpython-313.pyc", + "lib/python3.13/xml/sax/__pycache__/xmlreader.cpython-313.pyc", + "lib/python3.13/xml/sax/_exceptions.py", + "lib/python3.13/xml/sax/expatreader.py", + "lib/python3.13/xml/sax/handler.py", + "lib/python3.13/xml/sax/saxutils.py", + "lib/python3.13/xml/sax/xmlreader.py", + "lib/python3.13/xmlrpc/__init__.py", + "lib/python3.13/xmlrpc/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/xmlrpc/__pycache__/client.cpython-313.pyc", + "lib/python3.13/xmlrpc/__pycache__/server.cpython-313.pyc", + "lib/python3.13/xmlrpc/client.py", + "lib/python3.13/xmlrpc/server.py", + "lib/python3.13/zipapp.py", + "lib/python3.13/zipfile/__init__.py", + "lib/python3.13/zipfile/__main__.py", + "lib/python3.13/zipfile/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/zipfile/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/zipfile/_path/__init__.py", + "lib/python3.13/zipfile/_path/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/zipfile/_path/__pycache__/glob.cpython-313.pyc", + "lib/python3.13/zipfile/_path/glob.py", + "lib/python3.13/zipimport.py", + "lib/python3.13/zoneinfo/__init__.py", + "lib/python3.13/zoneinfo/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/zoneinfo/__pycache__/_common.cpython-313.pyc", + "lib/python3.13/zoneinfo/__pycache__/_tzpath.cpython-313.pyc", + "lib/python3.13/zoneinfo/__pycache__/_zoneinfo.cpython-313.pyc", + "lib/python3.13/zoneinfo/_common.py", + "lib/python3.13/zoneinfo/_tzpath.py", + "lib/python3.13/zoneinfo/_zoneinfo.py", + "share/man/man1/python3.1", + "share/man/man1/python3.13.1" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/idle3.13", + "prefix_placeholder": "/home/task_177194891265482/croot/python-split_1771948977002/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "31f5f9ea8d7be83a90f65e3dd900a13746e03ed4b1a5e9e025d16576313696d4", + "size_in_bytes": 345, + "sha256_in_prefix": "ea0d4fb2e9e6328410e9b652b7487aaf406b1f90dc4b85e6f079f1d039e0f935" + }, + { + "_path": "bin/pydoc3.13", + "prefix_placeholder": "/home/task_177194891265482/croot/python-split_1771948977002/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "3f3ed7fc04cbd86be389954beb5d3bc6a76a433d3c5745cb26127a1dc4ac5fd3", + "size_in_bytes": 330, + "sha256_in_prefix": "3082814e816df1e55fbb73c4d524232f1e29e5bd375c6f2d69fd9a5e22035ce8" + }, + { + "_path": "bin/python3.13", + "prefix_placeholder": "/home/task_177194891265482/croot/python-split_1771948977002/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "769d834e5a949bc5c6d8562855d7050cf259dfc7c30da1b07770f591910727e8", + "size_in_bytes": 32010488, + "sha256_in_prefix": "c799bc743bfc207b650e4fb0cb7a813b321f03e85de6db89bf814f72e17375c9" + }, + { + "_path": "bin/python3.13-config", + "prefix_placeholder": "/home/task_177194891265482/croot/python-split_1771948977002/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "c07b80508b10288cce602d47fe9c512152a4b94abb5bacbc8e116b3dba86c367", + "size_in_bytes": 4287, + "sha256_in_prefix": "939ada774678c7eff95b5b745c7460aa688e437040840105ab26e2b8853f2eb0" + }, + { + "_path": "lib/libpython3.13.so.1.0", + "prefix_placeholder": "/home/task_177194891265482/croot/python-split_1771948977002/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "file_mode": "binary", + "path_type": "hardlink", + "sha256": "03d70ad22a7a821f1c95d55c8f5ba1da9de2096e9f1647476313906c4f55c210", + "size_in_bytes": 31949680, + "sha256_in_prefix": "e9222b82cdbcf2ef306083d223579cb7d36c55b6d7e29451e22b4384c7143ebb" + }, + { + "_path": "lib/pkgconfig/python-3.13-embed.pc", + "prefix_placeholder": "/home/task_177194891265482/croot/python-split_1771948977002/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "ed16d0ce66289173d9b2355efb3ac9abc67c7989de0b64e6737988a255a78ef3", + "size_in_bytes": 549, + "sha256_in_prefix": "0aa854eeb442f7acba7158b6d5bb6bc6a0badc277276f2667fb2984bae3f5cd4" + }, + { + "_path": "lib/pkgconfig/python-3.13.pc", + "prefix_placeholder": "/home/task_177194891265482/croot/python-split_1771948977002/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "4faa7acc4c40a2bd81f6082f05e4cb0fedd25552f20ccea87ba9ab3a59813ed3", + "size_in_bytes": 535, + "sha256_in_prefix": "929bf091b2642385f3aeece5e624e90df303c359ac8b9a951f0bd480e79da0b0" + }, + { + "_path": "lib/python3.13/_sysconfigdata__linux_x86_64-linux-gnu.py", + "prefix_placeholder": "/home/task_177194891265482/croot/python-split_1771948977002/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "47f337bd65dc940693f72fd65e1271cd0f17d848040cadb098c526bab2703f83", + "size_in_bytes": 102619, + "sha256_in_prefix": "52871e26004831027b17f737051fadae3aac6b826c63ac87da9a8a96679200fc" + }, + { + "_path": "lib/python3.13/_sysconfigdata__linux_x86_64-linux-gnu.py.orig", + "prefix_placeholder": "/home/task_177194891265482/croot/python-split_1771948977002/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "013b1d0ec8712aaf9e1cdce3940e5bc60bb893a265c3663c2fc443e9e5de122d", + "size_in_bytes": 111837, + "sha256_in_prefix": "2dabf4cad1058ab2887fa9e44961900598d05ca3473491d5202a2091595cff71" + }, + { + "_path": "lib/python3.13/_sysconfigdata_x86_64_conda_cos6_linux_gnu.py", + "prefix_placeholder": "/home/task_177194891265482/croot/python-split_1771948977002/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "e132e2d570b6fcfae1b09484337b9a0c53f36779b458191fb259304b26e9cf8c", + "size_in_bytes": 104876, + "sha256_in_prefix": "a16b5fe4bd1427673cd9b3ed10060f62bab01db0f38c212520973a364944264f" + }, + { + "_path": "lib/python3.13/_sysconfigdata_x86_64_conda_linux_gnu.py", + "prefix_placeholder": "/home/task_177194891265482/croot/python-split_1771948977002/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "7966779152ac26d5436ad0334139d44ef3c39757fdd88e5cccc625af031c80ef", + "size_in_bytes": 104796, + "sha256_in_prefix": "039f328098fb716bf82299d49bb1a69b69a594cb214700a546ac6be6a6557bdf" + }, + { + "_path": "lib/python3.13/config-3.13-x86_64-linux-gnu/Makefile", + "prefix_placeholder": "/home/task_177194891265482/croot/python-split_1771948977002/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "0f63d27f913ae52db6944d0222382f35bef18131666c467a0a0a959413d3cdcd", + "size_in_bytes": 220580, + "sha256_in_prefix": "bb6c983db88bd6fc0b204d27e2bee2590cc1a0c28a74f82910484c5091ba218f" + }, + { + "_path": "lib/python3.13/config-3.13-x86_64-linux-gnu/python-config.py", + "prefix_placeholder": "/home/task_177194891265482/croot/python-split_1771948977002/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "b46868447679c629a16c00cfce867b926d0bdf33f89aa9d0a7a900a229fe38e6", + "size_in_bytes": 2316, + "sha256_in_prefix": "aaa3e19e1b1408dcbd492090188cd0f46d879130c7fa77c4a77c57f8c15f95d8" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/python-3.13.12-hb7b561f_100_cp313", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/python-dotenv-1.2.1-py313h06a4308_0.json b/miniconda3/conda-meta/python-dotenv-1.2.1-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..fdd254bc8901b087562015c08d8441d4f91a13c6 --- /dev/null +++ b/miniconda3/conda-meta/python-dotenv-1.2.1-py313h06a4308_0.json @@ -0,0 +1,75 @@ +{ + "name": "python-dotenv", + "version": "1.2.1", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "python-dotenv-1.2.1-py313h06a4308_0.conda", + "md5": "6aa550906f91d13d1371c07e9cb5c5c3", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/python-dotenv-1.2.1-py313h06a4308_0.conda", + "sha256": "0b9592d613f10c12d18ef188e3eec0f7ff94ebbdab8ee77f73ddc02d3c77051a", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [ + "click >=5.0" + ], + "license": "BSD-3-Clause", + "license_family": "BSD", + "timestamp": 1768559707000, + "size": 51623, + "requested_spec": "pkgs/main/linux-64::python-dotenv==1.2.1=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/python-dotenv-1.2.1-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/python-dotenv-1.2.1-py313h06a4308_0", + "files": [ + "bin/dotenv", + "lib/python3.13/site-packages/dotenv/__init__.py", + "lib/python3.13/site-packages/dotenv/__main__.py", + "lib/python3.13/site-packages/dotenv/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/dotenv/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/site-packages/dotenv/__pycache__/cli.cpython-313.pyc", + "lib/python3.13/site-packages/dotenv/__pycache__/ipython.cpython-313.pyc", + "lib/python3.13/site-packages/dotenv/__pycache__/main.cpython-313.pyc", + "lib/python3.13/site-packages/dotenv/__pycache__/parser.cpython-313.pyc", + "lib/python3.13/site-packages/dotenv/__pycache__/variables.cpython-313.pyc", + "lib/python3.13/site-packages/dotenv/__pycache__/version.cpython-313.pyc", + "lib/python3.13/site-packages/dotenv/cli.py", + "lib/python3.13/site-packages/dotenv/ipython.py", + "lib/python3.13/site-packages/dotenv/main.py", + "lib/python3.13/site-packages/dotenv/parser.py", + "lib/python3.13/site-packages/dotenv/py.typed", + "lib/python3.13/site-packages/dotenv/variables.py", + "lib/python3.13/site-packages/dotenv/version.py", + "lib/python3.13/site-packages/python_dotenv-1.2.1.dist-info/INSTALLER", + "lib/python3.13/site-packages/python_dotenv-1.2.1.dist-info/METADATA", + "lib/python3.13/site-packages/python_dotenv-1.2.1.dist-info/RECORD", + "lib/python3.13/site-packages/python_dotenv-1.2.1.dist-info/REQUESTED", + "lib/python3.13/site-packages/python_dotenv-1.2.1.dist-info/WHEEL", + "lib/python3.13/site-packages/python_dotenv-1.2.1.dist-info/direct_url.json", + "lib/python3.13/site-packages/python_dotenv-1.2.1.dist-info/entry_points.txt", + "lib/python3.13/site-packages/python_dotenv-1.2.1.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/python_dotenv-1.2.1.dist-info/top_level.txt" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "bin/dotenv", + "prefix_placeholder": "/home/task_176855885656798/croot/python-dotenv_1768559688221/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "142c90a0ce1b16fbed1443352a5865efc5c59de32af6a9e16e97f7c923cf24bd", + "size_in_bytes": 466, + "sha256_in_prefix": "a530d4ee367c2b11ad4ba373d47b99556e1adc76fdc9231913a475de3cfebb52" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/python-dotenv-1.2.1-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/python_abi-3.13-3_cp313.json b/miniconda3/conda-meta/python_abi-3.13-3_cp313.json new file mode 100644 index 0000000000000000000000000000000000000000..e5602ebd38f44a10718a79c9b475153c07708e3d --- /dev/null +++ b/miniconda3/conda-meta/python_abi-3.13-3_cp313.json @@ -0,0 +1,34 @@ +{ + "name": "python_abi", + "version": "3.13", + "build": "3_cp313", + "build_number": 3, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "python_abi-3.13-3_cp313.conda", + "md5": "5af1bf885def2fa779b0bb002e53651b", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/python_abi-3.13-3_cp313.conda", + "sha256": "2d5e8d21633aa763912fbae5a2f3ffd8c1f3c363b66b0397ad0e25f325460112", + "arch": "x86_64", + "platform": "linux", + "depends": [], + "constrains": [ + "python 3.13.* *_cp313" + ], + "license": "BSD-3-Clause", + "license_family": "BSD", + "timestamp": 1764349599000, + "size": 6157, + "requested_spec": "pkgs/main/linux-64::python_abi==3.13=3_cp313", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/python_abi-3.13-3_cp313.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/python_abi-3.13-3_cp313", + "files": [], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/python_abi-3.13-3_cp313", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/readchar-4.2.1-py313h06a4308_0.json b/miniconda3/conda-meta/readchar-4.2.1-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..75c2248366912af5aa068765a7e947fbd4892b77 --- /dev/null +++ b/miniconda3/conda-meta/readchar-4.2.1-py313h06a4308_0.json @@ -0,0 +1,61 @@ +{ + "name": "readchar", + "version": "4.2.1", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "readchar-4.2.1-py313h06a4308_0.conda", + "md5": "33b7455bfa1462c42bbc9a0535070313", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/readchar-4.2.1-py313h06a4308_0.conda", + "sha256": "e1c9e9a33eb6d5a47bdc4ada2379e51419633e237674ca69a0a0676c17b15e0c", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1760613452000, + "size": 19959, + "requested_spec": "pkgs/main/linux-64::readchar==4.2.1=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/readchar-4.2.1-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/readchar-4.2.1-py313h06a4308_0", + "files": [ + "lib/python3.13/site-packages/readchar-4.2.1.dist-info/INSTALLER", + "lib/python3.13/site-packages/readchar-4.2.1.dist-info/METADATA", + "lib/python3.13/site-packages/readchar-4.2.1.dist-info/RECORD", + "lib/python3.13/site-packages/readchar-4.2.1.dist-info/REQUESTED", + "lib/python3.13/site-packages/readchar-4.2.1.dist-info/WHEEL", + "lib/python3.13/site-packages/readchar-4.2.1.dist-info/direct_url.json", + "lib/python3.13/site-packages/readchar-4.2.1.dist-info/licenses/LICENCE", + "lib/python3.13/site-packages/readchar-4.2.1.dist-info/top_level.txt", + "lib/python3.13/site-packages/readchar/__init__.py", + "lib/python3.13/site-packages/readchar/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/readchar/__pycache__/_base_key.cpython-313.pyc", + "lib/python3.13/site-packages/readchar/__pycache__/_config.cpython-313.pyc", + "lib/python3.13/site-packages/readchar/__pycache__/_posix_key.cpython-313.pyc", + "lib/python3.13/site-packages/readchar/__pycache__/_posix_read.cpython-313.pyc", + "lib/python3.13/site-packages/readchar/__pycache__/_win_key.cpython-313.pyc", + "lib/python3.13/site-packages/readchar/__pycache__/_win_read.cpython-313.pyc", + "lib/python3.13/site-packages/readchar/__pycache__/key.cpython-313.pyc", + "lib/python3.13/site-packages/readchar/_base_key.py", + "lib/python3.13/site-packages/readchar/_config.py", + "lib/python3.13/site-packages/readchar/_posix_key.py", + "lib/python3.13/site-packages/readchar/_posix_read.py", + "lib/python3.13/site-packages/readchar/_win_key.py", + "lib/python3.13/site-packages/readchar/_win_read.py", + "lib/python3.13/site-packages/readchar/key.py", + "lib/python3.13/site-packages/readchar/py.typed" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/readchar-4.2.1-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/readline-8.3-hc2a1206_0.json b/miniconda3/conda-meta/readline-8.3-hc2a1206_0.json new file mode 100644 index 0000000000000000000000000000000000000000..8d34f6649e9c718f5cc4dd9786c5efd1c87d7fc6 --- /dev/null +++ b/miniconda3/conda-meta/readline-8.3-hc2a1206_0.json @@ -0,0 +1,85 @@ +{ + "name": "readline", + "version": "8.3", + "build": "hc2a1206_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "readline-8.3-hc2a1206_0.conda", + "md5": "8578e006d4ef5cb98a6cda232b3490f6", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/readline-8.3-hc2a1206_0.conda", + "sha256": "0a438fa74f2776bde137017d6c18214b5da65b557f6a59f877fa4e091582f789", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "__glibc >=2.17,<3.0.a0", + "libgcc-ng >=11.2.0", + "ncurses >=6.5,<7.0a0" + ], + "constrains": [], + "license": "GPL-3.0-only", + "license_family": "GPL", + "timestamp": 1754485653000, + "size": 481826, + "requested_spec": "pkgs/main/linux-64::readline==8.3=hc2a1206_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/readline-8.3-hc2a1206_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/readline-8.3-hc2a1206_0", + "files": [ + "include/readline/chardefs.h", + "include/readline/history.h", + "include/readline/keymaps.h", + "include/readline/readline.h", + "include/readline/rlconf.h", + "include/readline/rlstdc.h", + "include/readline/rltypedefs.h", + "include/readline/tilde.h", + "lib/libhistory.a", + "lib/libhistory.so", + "lib/libhistory.so.8", + "lib/libhistory.so.8.3", + "lib/libreadline.a", + "lib/libreadline.so", + "lib/libreadline.so.8", + "lib/libreadline.so.8.3", + "lib/pkgconfig/history.pc", + "lib/pkgconfig/readline.pc", + "share/doc/readline/CHANGES", + "share/doc/readline/INSTALL", + "share/doc/readline/README", + "share/doc/readline/history.html", + "share/doc/readline/readline.html", + "share/doc/readline/rluserman.html", + "share/info/history.info", + "share/info/readline.info", + "share/info/rluserman.info", + "share/man/man3/history.3", + "share/man/man3/readline.3" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/pkgconfig/history.pc", + "prefix_placeholder": "/croot/readline_1754485605901/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "96ae678a723fec65a477316b3458775627693596c0548115e7b8594fc3c8a12a", + "size_in_bytes": 548, + "sha256_in_prefix": "d3ffb9bf01be42c72ded22d58ebe7f122097b8af161e619e42c5a03e82f71581" + }, + { + "_path": "lib/pkgconfig/readline.pc", + "prefix_placeholder": "/croot/readline_1754485605901/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "27ae4e26e244af80d3e3d63f62c93667921577acaef82d80ddca6289260939da", + "size_in_bytes": 562, + "sha256_in_prefix": "dacb6f1e3e097cba25843533660293ff963780c83fa13ec9795ed31502533250" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/readline-8.3-hc2a1206_0", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/reproc-14.2.4-h6a678d5_2.json b/miniconda3/conda-meta/reproc-14.2.4-h6a678d5_2.json new file mode 100644 index 0000000000000000000000000000000000000000..40020ba41d3085bf9446cc75ab773dc3b46015fa --- /dev/null +++ b/miniconda3/conda-meta/reproc-14.2.4-h6a678d5_2.json @@ -0,0 +1,57 @@ +{ + "name": "reproc", + "version": "14.2.4", + "build": "h6a678d5_2", + "build_number": 2, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "reproc-14.2.4-h6a678d5_2.conda", + "md5": "3c6dbc6c60b3897222d79359343e90fa", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/reproc-14.2.4-h6a678d5_2.conda", + "sha256": "3c9233dc26c1e4264966c5b95ab7cb80748153ae1c3de688a503d9f84c888210", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "libgcc-ng >=11.2.0" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1714680903000, + "size": 29681, + "requested_spec": "pkgs/main/linux-64::reproc==14.2.4=h6a678d5_2", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/reproc-14.2.4-h6a678d5_2.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/reproc-14.2.4-h6a678d5_2", + "files": [ + "include/reproc/drain.h", + "include/reproc/export.h", + "include/reproc/reproc.h", + "include/reproc/run.h", + "lib/cmake/reproc/reproc-config-version.cmake", + "lib/cmake/reproc/reproc-config.cmake", + "lib/cmake/reproc/reproc-targets-release.cmake", + "lib/cmake/reproc/reproc-targets.cmake", + "lib/libreproc.so", + "lib/libreproc.so.14", + "lib/libreproc.so.14.2.4", + "lib/pkgconfig/reproc.pc" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/pkgconfig/reproc.pc", + "prefix_placeholder": "/croot/reproc_1714680872521/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "f9d9c337f7ab5b33adb32052e8565634c47818fe7878262696085ee25c5e2259", + "size_in_bytes": 545, + "sha256_in_prefix": "02024f223d707c8b27557d7fe40f02c7beae4bd0ff0f552775337c9f75ebd398" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/reproc-14.2.4-h6a678d5_2", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/reproc-cpp-14.2.4-h6a678d5_2.json b/miniconda3/conda-meta/reproc-cpp-14.2.4-h6a678d5_2.json new file mode 100644 index 0000000000000000000000000000000000000000..74df90949ac2e3c06771b3dd8c7acb05aef92dc5 --- /dev/null +++ b/miniconda3/conda-meta/reproc-cpp-14.2.4-h6a678d5_2.json @@ -0,0 +1,64 @@ +{ + "name": "reproc-cpp", + "version": "14.2.4", + "build": "h6a678d5_2", + "build_number": 2, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "reproc-cpp-14.2.4-h6a678d5_2.conda", + "md5": "b03aa4903158279f003e7032ab9f5601", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/reproc-cpp-14.2.4-h6a678d5_2.conda", + "sha256": "7211f85590295c8dc29622fe02514f081a3a25dcc2dafcc741365ddb5aedee95", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "libgcc-ng >=11.2.0", + "libstdcxx-ng >=11.2.0", + "reproc 14.2.4 h6a678d5_2" + ], + "constrains": [], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1714680919000, + "size": 21248, + "requested_spec": "pkgs/main/linux-64::reproc-cpp==14.2.4=h6a678d5_2", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/reproc-cpp-14.2.4-h6a678d5_2.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/reproc-cpp-14.2.4-h6a678d5_2", + "files": [ + "include/reproc++/arguments.hpp", + "include/reproc++/detail/array.hpp", + "include/reproc++/detail/type_traits.hpp", + "include/reproc++/drain.hpp", + "include/reproc++/env.hpp", + "include/reproc++/export.hpp", + "include/reproc++/input.hpp", + "include/reproc++/reproc.hpp", + "include/reproc++/run.hpp", + "lib/cmake/reproc++/reproc++-config-version.cmake", + "lib/cmake/reproc++/reproc++-config.cmake", + "lib/cmake/reproc++/reproc++-targets-release.cmake", + "lib/cmake/reproc++/reproc++-targets.cmake", + "lib/libreproc++.so", + "lib/libreproc++.so.14", + "lib/libreproc++.so.14.2.4", + "lib/pkgconfig/reproc++.pc" + ], + "paths_data": { + "paths_version": 1, + "paths": [ + { + "_path": "lib/pkgconfig/reproc++.pc", + "prefix_placeholder": "/croot/reproc_1714680872521/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "file_mode": "text", + "path_type": "hardlink", + "sha256": "fc6da3aa7959395fd9ef40addb7f20becabd1b3cbb62d63c7f6dfd796ece270e", + "size_in_bytes": 579, + "sha256_in_prefix": "0f552698700161d1577c4342fe1b8bacf43c55adf3aefc106140a8854aa1a8cc" + } + ] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/reproc-cpp-14.2.4-h6a678d5_2", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/requests-2.32.5-py313h06a4308_1.json b/miniconda3/conda-meta/requests-2.32.5-py313h06a4308_1.json new file mode 100644 index 0000000000000000000000000000000000000000..5f96a5570d2f02cc856e36c51469a08c178885e6 --- /dev/null +++ b/miniconda3/conda-meta/requests-2.32.5-py313h06a4308_1.json @@ -0,0 +1,87 @@ +{ + "name": "requests", + "version": "2.32.5", + "build": "py313h06a4308_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "requests-2.32.5-py313h06a4308_1.conda", + "md5": "fad2ba22ead9ddf78230e158ef8eac5b", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/requests-2.32.5-py313h06a4308_1.conda", + "sha256": "4f29e92b850f997c5b02a819b8d7419e42539ecc6d38279b3ab4cd86f5721e3b", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "certifi >=2017.4.17", + "charset-normalizer >=2,<4", + "idna >=2.5,<4", + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313", + "urllib3 >=1.21.1,<3" + ], + "constrains": [ + "chardet >=3.0.2,<6", + "pysocks >=1.5.6,!=1.5.7" + ], + "license": "Apache-2.0", + "license_family": "Apache", + "timestamp": 1762359610000, + "size": 170202, + "requested_spec": "pkgs/main/linux-64::requests==2.32.5=py313h06a4308_1", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/requests-2.32.5-py313h06a4308_1.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/requests-2.32.5-py313h06a4308_1", + "files": [ + "lib/python3.13/site-packages/requests-2.32.5.dist-info/INSTALLER", + "lib/python3.13/site-packages/requests-2.32.5.dist-info/METADATA", + "lib/python3.13/site-packages/requests-2.32.5.dist-info/RECORD", + "lib/python3.13/site-packages/requests-2.32.5.dist-info/REQUESTED", + "lib/python3.13/site-packages/requests-2.32.5.dist-info/WHEEL", + "lib/python3.13/site-packages/requests-2.32.5.dist-info/direct_url.json", + "lib/python3.13/site-packages/requests-2.32.5.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/requests-2.32.5.dist-info/top_level.txt", + "lib/python3.13/site-packages/requests/__init__.py", + "lib/python3.13/site-packages/requests/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/requests/__pycache__/__version__.cpython-313.pyc", + "lib/python3.13/site-packages/requests/__pycache__/_internal_utils.cpython-313.pyc", + "lib/python3.13/site-packages/requests/__pycache__/adapters.cpython-313.pyc", + "lib/python3.13/site-packages/requests/__pycache__/api.cpython-313.pyc", + "lib/python3.13/site-packages/requests/__pycache__/auth.cpython-313.pyc", + "lib/python3.13/site-packages/requests/__pycache__/certs.cpython-313.pyc", + "lib/python3.13/site-packages/requests/__pycache__/compat.cpython-313.pyc", + "lib/python3.13/site-packages/requests/__pycache__/cookies.cpython-313.pyc", + "lib/python3.13/site-packages/requests/__pycache__/exceptions.cpython-313.pyc", + "lib/python3.13/site-packages/requests/__pycache__/help.cpython-313.pyc", + "lib/python3.13/site-packages/requests/__pycache__/hooks.cpython-313.pyc", + "lib/python3.13/site-packages/requests/__pycache__/models.cpython-313.pyc", + "lib/python3.13/site-packages/requests/__pycache__/packages.cpython-313.pyc", + "lib/python3.13/site-packages/requests/__pycache__/sessions.cpython-313.pyc", + "lib/python3.13/site-packages/requests/__pycache__/status_codes.cpython-313.pyc", + "lib/python3.13/site-packages/requests/__pycache__/structures.cpython-313.pyc", + "lib/python3.13/site-packages/requests/__pycache__/utils.cpython-313.pyc", + "lib/python3.13/site-packages/requests/__version__.py", + "lib/python3.13/site-packages/requests/_internal_utils.py", + "lib/python3.13/site-packages/requests/adapters.py", + "lib/python3.13/site-packages/requests/api.py", + "lib/python3.13/site-packages/requests/auth.py", + "lib/python3.13/site-packages/requests/certs.py", + "lib/python3.13/site-packages/requests/compat.py", + "lib/python3.13/site-packages/requests/cookies.py", + "lib/python3.13/site-packages/requests/exceptions.py", + "lib/python3.13/site-packages/requests/help.py", + "lib/python3.13/site-packages/requests/hooks.py", + "lib/python3.13/site-packages/requests/models.py", + "lib/python3.13/site-packages/requests/packages.py", + "lib/python3.13/site-packages/requests/sessions.py", + "lib/python3.13/site-packages/requests/status_codes.py", + "lib/python3.13/site-packages/requests/structures.py", + "lib/python3.13/site-packages/requests/utils.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/requests-2.32.5-py313h06a4308_1", + "type": 1 + } +} \ No newline at end of file diff --git a/miniconda3/conda-meta/rich-14.2.0-py313h06a4308_0.json b/miniconda3/conda-meta/rich-14.2.0-py313h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..4f260a2e27b2dd78dee79b1a897d7a69f8871056 --- /dev/null +++ b/miniconda3/conda-meta/rich-14.2.0-py313h06a4308_0.json @@ -0,0 +1,204 @@ +{ + "name": "rich", + "version": "14.2.0", + "build": "py313h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/linux-64", + "subdir": "linux-64", + "fn": "rich-14.2.0-py313h06a4308_0.conda", + "md5": "f4775d8f7f987cff7f067c7a47c66723", + "url": "https://repo.anaconda.com/pkgs/main/linux-64/rich-14.2.0-py313h06a4308_0.conda", + "sha256": "4006abedbb05553a7f667566d23afbac4beea2097a96d0508c629b044affde0c", + "arch": "x86_64", + "platform": "linux", + "depends": [ + "markdown-it-py >=2.2.0", + "pygments >=2.13.0,<3.0.0", + "python >=3.13,<3.14.0a0", + "python_abi 3.13.* *_cp313" + ], + "constrains": [ + "ipywidgets >=7.5.1,<9" + ], + "license": "MIT", + "license_family": "MIT", + "timestamp": 1760375652000, + "size": 604815, + "requested_spec": "pkgs/main/linux-64::rich==14.2.0=py313h06a4308_0", + "package_tarball_full_path": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/rich-14.2.0-py313h06a4308_0.conda", + "extracted_package_dir": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/rich-14.2.0-py313h06a4308_0", + "files": [ + "lib/python3.13/site-packages/rich-14.2.0.dist-info/INSTALLER", + "lib/python3.13/site-packages/rich-14.2.0.dist-info/METADATA", + "lib/python3.13/site-packages/rich-14.2.0.dist-info/RECORD", + "lib/python3.13/site-packages/rich-14.2.0.dist-info/REQUESTED", + "lib/python3.13/site-packages/rich-14.2.0.dist-info/WHEEL", + "lib/python3.13/site-packages/rich-14.2.0.dist-info/direct_url.json", + "lib/python3.13/site-packages/rich-14.2.0.dist-info/licenses/LICENSE", + "lib/python3.13/site-packages/rich/__init__.py", + "lib/python3.13/site-packages/rich/__main__.py", + "lib/python3.13/site-packages/rich/__pycache__/__init__.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/__main__.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/_cell_widths.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/_emoji_codes.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/_emoji_replace.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/_export_format.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/_extension.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/_fileno.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/_inspect.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/_log_render.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/_loop.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/_null_file.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/_palettes.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/_pick.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/_ratio.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/_spinners.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/_stack.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/_timer.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/_win32_console.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/_windows.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/_windows_renderer.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/_wrap.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/abc.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/align.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/ansi.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/bar.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/box.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/cells.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/color.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/color_triplet.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/columns.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/console.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/constrain.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/containers.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/control.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/default_styles.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/diagnose.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/emoji.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/errors.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/file_proxy.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/filesize.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/highlighter.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/json.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/jupyter.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/layout.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/live.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/live_render.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/logging.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/markdown.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/markup.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/measure.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/padding.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/pager.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/palette.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/panel.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/pretty.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/progress.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/progress_bar.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/prompt.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/protocol.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/region.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/repr.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/rule.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/scope.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/screen.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/segment.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/spinner.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/status.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/style.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/styled.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/syntax.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/table.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/terminal_theme.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/text.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/theme.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/themes.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/traceback.cpython-313.pyc", + "lib/python3.13/site-packages/rich/__pycache__/tree.cpython-313.pyc", + "lib/python3.13/site-packages/rich/_cell_widths.py", + "lib/python3.13/site-packages/rich/_emoji_codes.py", + "lib/python3.13/site-packages/rich/_emoji_replace.py", + "lib/python3.13/site-packages/rich/_export_format.py", + "lib/python3.13/site-packages/rich/_extension.py", + "lib/python3.13/site-packages/rich/_fileno.py", + "lib/python3.13/site-packages/rich/_inspect.py", + "lib/python3.13/site-packages/rich/_log_render.py", + "lib/python3.13/site-packages/rich/_loop.py", + "lib/python3.13/site-packages/rich/_null_file.py", + "lib/python3.13/site-packages/rich/_palettes.py", + "lib/python3.13/site-packages/rich/_pick.py", + "lib/python3.13/site-packages/rich/_ratio.py", + "lib/python3.13/site-packages/rich/_spinners.py", + "lib/python3.13/site-packages/rich/_stack.py", + "lib/python3.13/site-packages/rich/_timer.py", + "lib/python3.13/site-packages/rich/_win32_console.py", + "lib/python3.13/site-packages/rich/_windows.py", + "lib/python3.13/site-packages/rich/_windows_renderer.py", + "lib/python3.13/site-packages/rich/_wrap.py", + "lib/python3.13/site-packages/rich/abc.py", + "lib/python3.13/site-packages/rich/align.py", + "lib/python3.13/site-packages/rich/ansi.py", + "lib/python3.13/site-packages/rich/bar.py", + "lib/python3.13/site-packages/rich/box.py", + "lib/python3.13/site-packages/rich/cells.py", + "lib/python3.13/site-packages/rich/color.py", + "lib/python3.13/site-packages/rich/color_triplet.py", + "lib/python3.13/site-packages/rich/columns.py", + "lib/python3.13/site-packages/rich/console.py", + "lib/python3.13/site-packages/rich/constrain.py", + "lib/python3.13/site-packages/rich/containers.py", + "lib/python3.13/site-packages/rich/control.py", + "lib/python3.13/site-packages/rich/default_styles.py", + "lib/python3.13/site-packages/rich/diagnose.py", + "lib/python3.13/site-packages/rich/emoji.py", + "lib/python3.13/site-packages/rich/errors.py", + "lib/python3.13/site-packages/rich/file_proxy.py", + "lib/python3.13/site-packages/rich/filesize.py", + "lib/python3.13/site-packages/rich/highlighter.py", + "lib/python3.13/site-packages/rich/json.py", + "lib/python3.13/site-packages/rich/jupyter.py", + "lib/python3.13/site-packages/rich/layout.py", + "lib/python3.13/site-packages/rich/live.py", + "lib/python3.13/site-packages/rich/live_render.py", + "lib/python3.13/site-packages/rich/logging.py", + "lib/python3.13/site-packages/rich/markdown.py", + "lib/python3.13/site-packages/rich/markup.py", + "lib/python3.13/site-packages/rich/measure.py", + "lib/python3.13/site-packages/rich/padding.py", + "lib/python3.13/site-packages/rich/pager.py", + "lib/python3.13/site-packages/rich/palette.py", + "lib/python3.13/site-packages/rich/panel.py", + "lib/python3.13/site-packages/rich/pretty.py", + "lib/python3.13/site-packages/rich/progress.py", + "lib/python3.13/site-packages/rich/progress_bar.py", + "lib/python3.13/site-packages/rich/prompt.py", + "lib/python3.13/site-packages/rich/protocol.py", + "lib/python3.13/site-packages/rich/py.typed", + "lib/python3.13/site-packages/rich/region.py", + "lib/python3.13/site-packages/rich/repr.py", + "lib/python3.13/site-packages/rich/rule.py", + "lib/python3.13/site-packages/rich/scope.py", + "lib/python3.13/site-packages/rich/screen.py", + "lib/python3.13/site-packages/rich/segment.py", + "lib/python3.13/site-packages/rich/spinner.py", + "lib/python3.13/site-packages/rich/status.py", + "lib/python3.13/site-packages/rich/style.py", + "lib/python3.13/site-packages/rich/styled.py", + "lib/python3.13/site-packages/rich/syntax.py", + "lib/python3.13/site-packages/rich/table.py", + "lib/python3.13/site-packages/rich/terminal_theme.py", + "lib/python3.13/site-packages/rich/text.py", + "lib/python3.13/site-packages/rich/theme.py", + "lib/python3.13/site-packages/rich/themes.py", + "lib/python3.13/site-packages/rich/traceback.py", + "lib/python3.13/site-packages/rich/tree.py" + ], + "paths_data": { + "paths_version": 1, + "paths": [] + }, + "link": { + "source": "/mnt/bn/bohanzhainas1/jiashuo/miniconda3/pkgs/rich-14.2.0-py313h06a4308_0", + "type": 1 + } +} \ No newline at end of file