Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Previously working Dataflow jobs started crashing when sharding #10971

Open
carlthome opened this issue Jan 7, 2025 · 8 comments
Open

Previously working Dataflow jobs started crashing when sharding #10971

carlthome opened this issue Jan 7, 2025 · 8 comments
Assignees
Labels
bug Something isn't working

Comments

@carlthome
Copy link
Contributor

I have a DatasetBuilder for terrabytes of audio that used to work and ran to completion on Dataflow, but have stopped working. The code is unchanged. The data shouldn't have changed. We've been unable to debug this so I'm looking for whether there's unexpected changes in how tensorflow-datasets rely on Beam.

We're using Apache Beam Python 3.10 SDK 2.60.0 on Dataflow V2 and strangely the test and validation completes but not training. Is there some size limitation for the sharding logic (433,890 serialized_examples, 1,024 NumberOfShards, 512 written_shards)?

train_write/GroupShards
Workflow failed. Causes: S65:train_write/GroupShards/Read+train_write/GetIdsOfNonEmptyShards/Keys+train_write/CollectIdsOfNonEmptyShards/CollectIdsOfNonEmptyShards/KeyWithVoid+train_write/CollectIdsOfNonEmptyShards/CollectIdsOfNonEmptyShards/CombinePerKey/GroupByKey+train_write/CollectIdsOfNonEmptyShards/CollectIdsOfNonEmptyShards/CombinePerKey/Combine/Partial+train_write/CollectIdsOfNonEmptyShards/CollectIdsOfNonEmptyShards/CombinePerKey/GroupByKey/Write failed., The job failed because a work item has failed 4 times. Look in previous log entries for the cause of each one of the 4 failures. If the logs only contain generic timeout errors related to accessing external resources, such as MongoDB, verify that the worker service account has permission to access the resource's subnetwork. For more information, see https://cloud.google.com/dataflow/docs/guides/common-errors. The work item was attempted on these workers: 

      Root cause: Timed out waiting for an update from the worker.
      Worker ID: ...
@carlthome carlthome added the bug Something isn't working label Jan 7, 2025
@carlthome
Copy link
Contributor Author

The validation/test is only 52,880 examples and also 512 shards, so maybe the training shards get really big and down a Dataflow worker somehow?

@fineguy
Copy link
Collaborator

fineguy commented Jan 8, 2025

@carlthome could you provide more details so that I could look into it?

  • When was the last time that preparation of your dataset worked and the first time you noticed that it doesn't?
  • What versions of tensorflow-datasets were you using?
  • Did you change any other libraries?

@fineguy fineguy self-assigned this Jan 8, 2025
@carlthome
Copy link
Contributor Author

Last known time the DatasetBuilder worked on Dataflow was Dec 6, 2023, with the following requirements.txt

apache-beam[gcp]==2.48.0
google-cloud-bigquery[pandas]==3.11.3
google-cloud-storage==2.10.0
librosa==0.8.0
pandas==2.0.3
pandas-gbq==0.19.2
Pillow==9.5.0
tensorflow==2.12.0
tensorflow-datasets==4.9.3
tensorflow-hub==0.14.0
transformers==4.32.1

Running the same today results in

Workflow failed. Causes: S65:train_write/GroupShards/Read+train_write/GetIdsOfNonEmptyShards/Keys+train_write/CollectIdsOfNonEmptyShards/CollectIdsOfNonEmptyShards/KeyWithVoid+train_write/CollectIdsOfNonEmptyShards/CollectIdsOfNonEmptyShards/CombinePerKey/GroupByKey+train_write/CollectIdsOfNonEmptyShards/CollectIdsOfNonEmptyShards/CombinePerKey/Combine/Partial+train_write/CollectIdsOfNonEmptyShards/CollectIdsOfNonEmptyShards/CombinePerKey/GroupByKey/Write failed., The job failed because a work item has failed 4 times. Look in previous log entries for the cause of each one of the 4 failures. If the logs only contain generic timeout errors related to accessing external resources, such as MongoDB, verify that the worker service account has permission to access the resource's subnetwork. For more information, see https://cloud.google.com/dataflow/docs/guides/common-errors. The work item was attempted on these workers:

Perhaps there has been unintended changes on the Dataflow side, rather than in the Beam pipeline. This is in the Dataflow job logs:

*** SIGSEGV (@0x100), see go/stacktraces#s15 received by PID 15 (TID 54) on cpu 1; stack trace: ***

PC: @     0x57aff4c24be0  (unknown)  absl::Mutex::Lock()
    @     0x57aff749b55f       2304  FailureSignalHandler()
    @     0x7a0ed308c9a0    3144200  (unknown)
    @     0x57aff4c24be0          8  (unknown)
    @     0x57aff65d4704        208  dist_proc::dax::workflow::FnApiProcessBundleOperator::EncodeAndOutputElement()
    @     0x57aff662e8ea         16  dist_proc::dax::workflow::TrivialFetchAndFilterSideInputsFn::ProcessInput()
    @     0x57aff65d87db         96  dist_proc::dax::workflow::FnApiProcessBundleOperator::EncodeAndOutputElementIfSideInputIsReady()
    @     0x57aff65d8613        432  dist_proc::dax::workflow::FnApiProcessBundleOperator::Process()
    @     0x57aff52904c1         80  dist_proc::dax::workflow::FanOutOperator::Process()
    @     0x57aff65cbd38        208  dist_proc::dax::workflow::FnApiReadOperator::Read()
    @     0x57aff528d236        304  dist_proc::dax::workflow::ReadOperator::Process()
    @     0x57aff5cfc72f        192  dist_proc::dax::workflow::GraphWorkExecutor::Execute()
    @     0x57aff663da53        496  dist_proc::dax::workflow::InstructionGraphExecutor::Run()
    @     0x57aff52f7eba        560  dist_proc::dax::workflow::ParallelWorkflowWorkerTask::ProcessWork()
    @     0x57aff521bdae         64  std::__u::__function::__policy_invoker<>::__call_impl<>()
    @     0x57aff6864983         80  absl::internal_any_invocable::LocalInvoker<>()
    @     0x57aff59034cd        272  Thread::ThreadBody()
    @     0x7a0ed30844e8        176  start_thread
    @     0x7a0ed2ef922d  (unknown)  clone

@carlthome
Copy link
Contributor Author

@fineguy
Copy link
Collaborator

fineguy commented Jan 9, 2025

Thanks for providing this information! I think you're right that this could be an issue with DataFlow. I'm particularly suspicious of apache-beam[gcp]==2.48.0, since it's been deprecated: https://cloud.google.com/dataflow/docs/support/sdk-version-support-status#python

I suggest that you try:

  1. Update apache-beam dependency and potentially tensorflow-datasets==4.9.7.
  2. [Optionally] Build a custom Docker image with these dependencies pre-installed: https://cloud.google.com/dataflow/docs/guides/build-container-image

@carlthome
Copy link
Contributor Author

We get the same error with 2.60.0 and 4.9.7 unfortunately.

@fineguy
Copy link
Collaborator

fineguy commented Jan 10, 2025

Have you also updated google-cloud-storage? From what I see it's conflicting with apache-beam: https://github.com/apache/beam/blob/02208fc59887f22d5130310c902bb422f1f0be33/sdks/python/setup.py#L443

At this point I recommend to create a minimum reproducible example that fails locally, otherwise it seems that you need to resolve dependency conflicts in your environment and make sure that it's compatible with DataFlow.

@carlthome
Copy link
Contributor Author

Good point!

I tried now with latest PyPI versions and Beam 2.61.0 yet experience the same crash. Here's the Dataflow image SBOM:

NAME                                                                                 VERSION                               TYPE                        
Simple Launcher                                                                      1.1.0.14                              dotnet     �[38;2;119;119;119m(+11 duplicates)�[0m  
absl-py                                                                              2.1.0                                 python     �[38;2;119;119;119m�[0m                  
adduser                                                                              3.134                                 deb        �[38;2;119;119;119m�[0m                  
aiohappyeyeballs                                                                     2.4.4                                 python     �[38;2;119;119;119m�[0m                  
aiohttp                                                                              3.11.11                               python     �[38;2;119;119;119m�[0m                  
aiosignal                                                                            1.3.2                                 python     �[38;2;119;119;119m�[0m                  
annotated-types                                                                      0.7.0                                 python     �[38;2;119;119;119m�[0m                  
apache-beam                                                                          2.61.0                                python     �[38;2;119;119;119m�[0m                  
apt                                                                                  2.6.1                                 deb        �[38;2;119;119;119m�[0m                  
array-record                                                                         0.6.0                                 python     �[38;2;119;119;119m�[0m                  
astunparse                                                                           1.6.3                                 python     �[38;2;119;119;119m�[0m                  
async-timeout                                                                        4.0.3                                 python     �[38;2;119;119;119m�[0m                  
attrs                                                                                24.2.0                                python     �[38;2;119;119;119m�[0m                  
audioread                                                                            3.0.1                                 python     �[38;2;119;119;119m�[0m                  
autocommand                                                                          2.2.2                                 python     �[38;2;119;119;119m�[0m                  
autoconf                                                                             2.71-3                                deb        �[38;2;119;119;119m�[0m                  
automake                                                                             1:1.16.5-1.3                          deb        �[38;2;119;119;119m�[0m                  
autotools-dev                                                                        20220109.1                            deb        �[38;2;119;119;119m�[0m                  
backports-tarfile                                                                    1.2.0                                 python     �[38;2;119;119;119m(+1 duplicate)�[0m    
base-files                                                                           12.4+deb12u8                          deb        �[38;2;119;119;119m�[0m                  
base-passwd                                                                          3.6.1                                 deb        �[38;2;119;119;119m�[0m                  
bash                                                                                 5.2.15-2+b7                           deb        �[38;2;119;119;119m�[0m                  
beautifulsoup4                                                                       4.12.3                                python     �[38;2;119;119;119m�[0m                  
binutils                                                                             2.40-2                                deb        �[38;2;119;119;119m�[0m                  
binutils-common                                                                      2.40-2                                deb        �[38;2;119;119;119m�[0m                  
binutils-x86-64-linux-gnu                                                            2.40-2                                deb        �[38;2;119;119;119m�[0m                  
braceexpand                                                                          0.1.7                                 python     �[38;2;119;119;119m�[0m                  
bs4                                                                                  0.0.2                                 python     �[38;2;119;119;119m�[0m                  
bsdutils                                                                             1:2.38.1-5+deb12u2                    deb        �[38;2;119;119;119m�[0m                  
build                                                                                1.2.2                                 python     �[38;2;119;119;119m�[0m                  
bzip2                                                                                1.0.8-5+b1                            deb        �[38;2;119;119;119m�[0m                  
ca-certificates                                                                      20230311                              deb        �[38;2;119;119;119m�[0m                  
cachetools                                                                           5.5.0                                 python     �[38;2;119;119;119m�[0m                  
ccache                                                                               4.8+really4.7.5-1                     deb        �[38;2;119;119;119m�[0m                  
cel.dev/expr                                                                         v0.19.1                               go-module  �[38;2;119;119;119m�[0m                  
certifi                                                                              2024.8.30                             python     �[38;2;119;119;119m�[0m                  
cffi                                                                                 1.16.0                                python     �[38;2;119;119;119m�[0m                  
cffi                                                                                 1.17.1                                python     �[38;2;119;119;119m�[0m                  
charset-normalizer                                                                   3.3.2                                 python     �[38;2;119;119;119m�[0m                  
click                                                                                8.1.7                                 python     �[38;2;119;119;119m�[0m                  
cloud.google.com/go                                                                  v0.117.0                              go-module  �[38;2;119;119;119m�[0m                  
cloud.google.com/go/auth                                                             v0.13.0                               go-module  �[38;2;119;119;119m�[0m                  
cloud.google.com/go/auth/oauth2adapt                                                 v0.2.6                                go-module  �[38;2;119;119;119m�[0m                  
cloud.google.com/go/compute/metadata                                                 v0.6.0                                go-module  �[38;2;119;119;119m�[0m                  
cloud.google.com/go/iam                                                              v1.3.0                                go-module  �[38;2;119;119;119m�[0m                  
cloud.google.com/go/monitoring                                                       v1.22.0                               go-module  �[38;2;119;119;119m�[0m                  
cloud.google.com/go/storage                                                          v1.49.0                               go-module  �[38;2;119;119;119m�[0m                  
cloudpickle                                                                          2.2.1                                 python     �[38;2;119;119;119m�[0m                  
comerr-dev                                                                           2.1-1.47.0-2                          deb        �[38;2;119;119;119m�[0m                  
command-line-arguments                                                               (devel)                               go-module  �[38;2;119;119;119m�[0m                  
coreutils                                                                            9.1-1                                 deb        �[38;2;119;119;119m�[0m                  
cpp                                                                                  4:12.2.0-3                            deb        �[38;2;119;119;119m�[0m                  
cpp-12                                                                               12.2.0-14                             deb        �[38;2;119;119;119m�[0m                  
cramjam                                                                              2.8.4                                 python     �[38;2;119;119;119m�[0m                  
crcmod                                                                               1.7                                   python     �[38;2;119;119;119m(+1 duplicate)�[0m    
cryptography                                                                         43.0.1                                python     �[38;2;119;119;119m(+1 duplicate)�[0m    
curl                                                                                 7.88.1-10+deb12u8                     deb        �[38;2;119;119;119m�[0m                  
cython                                                                               3.0.11                                python     �[38;2;119;119;119m�[0m                  
dario.cat/mergo                                                                      v1.0.1                                go-module  �[38;2;119;119;119m�[0m                  
dash                                                                                 0.5.12-2                              deb        �[38;2;119;119;119m�[0m                  
db-dtypes                                                                            1.3.1                                 python     �[38;2;119;119;119m�[0m                  
debconf                                                                              1.5.82                                deb        �[38;2;119;119;119m�[0m                  
debian-archive-keyring                                                               2023.3+deb12u1                        deb        �[38;2;119;119;119m�[0m                  
debianutils                                                                          5.7-0.5~deb12u1                       deb        �[38;2;119;119;119m�[0m                  
decorator                                                                            5.1.1                                 python     �[38;2;119;119;119m�[0m                  
default-libmysqlclient-dev                                                           1.1.0                                 deb        �[38;2;119;119;119m�[0m                  
deprecated                                                                           1.2.14                                python     �[38;2;119;119;119m�[0m                  
deprecation                                                                          2.1.0                                 python     �[38;2;119;119;119m�[0m                  
diffutils                                                                            1:3.8-4                               deb        �[38;2;119;119;119m�[0m                  
dill                                                                                 0.3.1.1                               python     �[38;2;119;119;119m�[0m                  
dirmngr                                                                              2.2.40-1.1                            deb        �[38;2;119;119;119m�[0m                  
dm-tree                                                                              0.1.8                                 python     �[38;2;119;119;119m�[0m                  
dnspython                                                                            2.7.0                                 python     �[38;2;119;119;119m�[0m                  
docker                                                                               7.1.0                                 python     �[38;2;119;119;119m�[0m                  
docker-pycreds                                                                       0.4.0                                 python     �[38;2;119;119;119m�[0m                  
docopt                                                                               0.6.2                                 python     �[38;2;119;119;119m�[0m                  
docstring-parser                                                                     0.16                                  python     �[38;2;119;119;119m�[0m                  
dpkg                                                                                 1.21.22                               deb        �[38;2;119;119;119m�[0m                  
dpkg-dev                                                                             1.21.22                               deb        �[38;2;119;119;119m�[0m                  
e2fsprogs                                                                            1.47.0-2                              deb        �[38;2;119;119;119m�[0m                  
etils                                                                                1.11.0                                python     �[38;2;119;119;119m�[0m                  
exceptiongroup                                                                       1.2.2                                 python     �[38;2;119;119;119m�[0m                  
execnet                                                                              2.1.1                                 python     �[38;2;119;119;119m�[0m                  
fastavro                                                                             1.9.7                                 python     �[38;2;119;119;119m�[0m                  
fasteners                                                                            0.19                                  python     �[38;2;119;119;119m�[0m                  
ffmpeg                                                                               7:5.1.6-0+deb12u1                     deb        �[38;2;119;119;119m�[0m                  
file                                                                                 1:5.44-3                              deb        �[38;2;119;119;119m�[0m                  
filelock                                                                             3.16.1                                python     �[38;2;119;119;119m�[0m                  
findutils                                                                            4.9.0-4                               deb        �[38;2;119;119;119m�[0m                  
flatbuffers                                                                          24.12.23                              python     �[38;2;119;119;119m�[0m                  
fontconfig                                                                           2.14.1-4                              deb        �[38;2;119;119;119m�[0m                  
fontconfig-config                                                                    2.14.1-4                              deb        �[38;2;119;119;119m�[0m                  
fonts-dejavu-core                                                                    2.37-6                                deb        �[38;2;119;119;119m�[0m                  
freezegun                                                                            1.5.1                                 python     �[38;2;119;119;119m�[0m                  
frozenlist                                                                           1.5.0                                 python     �[38;2;119;119;119m�[0m                  
fsspec                                                                               2024.12.0                             python     �[38;2;119;119;119m�[0m                  
ftfy                                                                                 6.3.1                                 python     �[38;2;119;119;119m�[0m                  
future                                                                               1.0.0                                 python     �[38;2;119;119;119m�[0m                  
g++                                                                                  4:12.2.0-3                            deb        �[38;2;119;119;119m�[0m                  
g++-12                                                                               12.2.0-14                             deb        �[38;2;119;119;119m�[0m                  
gast                                                                                 0.6.0                                 python     �[38;2;119;119;119m�[0m                  
gcc                                                                                  4:12.2.0-3                            deb        �[38;2;119;119;119m�[0m                  
gcc-12                                                                               12.2.0-14                             deb        �[38;2;119;119;119m�[0m                  
gcc-12-base                                                                          12.2.0-14                             deb        �[38;2;119;119;119m�[0m                  
gcsfs                                                                                2024.12.0                             python     �[38;2;119;119;119m�[0m                  
gir1.2-freedesktop                                                                   1.74.0-3                              deb        �[38;2;119;119;119m�[0m                  
gir1.2-gdkpixbuf-2.0                                                                 2.42.10+dfsg-1+deb12u1                deb        �[38;2;119;119;119m�[0m                  
gir1.2-glib-2.0                                                                      1.74.0-3                              deb        �[38;2;119;119;119m�[0m                  
gir1.2-rsvg-2.0                                                                      2.54.7+dfsg-1~deb12u1                 deb        �[38;2;119;119;119m�[0m                  
git                                                                                  1:2.39.5-0+deb12u1                    deb        �[38;2;119;119;119m�[0m                  
git-man                                                                              1:2.39.5-0+deb12u1                    deb        �[38;2;119;119;119m�[0m                  
gitdb                                                                                4.0.12                                python     �[38;2;119;119;119m�[0m                  
github.com/Azure/azure-sdk-for-go/sdk/azcore                                         v1.16.0                               go-module  �[38;2;119;119;119m�[0m                  
github.com/Azure/azure-sdk-for-go/sdk/azidentity                                     v1.8.0                                go-module  �[38;2;119;119;119m�[0m                  
github.com/Azure/azure-sdk-for-go/sdk/internal                                       v1.10.0                               go-module  �[38;2;119;119;119m�[0m                  
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob                                 v1.5.0                                go-module  �[38;2;119;119;119m�[0m                  
github.com/AzureAD/microsoft-authentication-library-for-go                           v1.3.2                                go-module  �[38;2;119;119;119m�[0m                  
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp             v1.25.0                               go-module  �[38;2;119;119;119m�[0m                  
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric           v0.49.0                               go-module  �[38;2;119;119;119m�[0m                  
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping  v0.49.0                               go-module  �[38;2;119;119;119m�[0m                  
github.com/Khan/genqlient                                                            v0.7.0                                go-module  �[38;2;119;119;119m�[0m                  
github.com/ProtonMail/go-crypto                                                      v1.1.3                                go-module  �[38;2;119;119;119m�[0m                  
github.com/apache/beam/sdks/v2                                                       (devel)                               go-module  �[38;2;119;119;119m�[0m                  
github.com/aws/aws-sdk-go-v2                                                         v1.32.7                               go-module  �[38;2;119;119;119m�[0m                  
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream                                v1.6.7                                go-module  �[38;2;119;119;119m�[0m                  
github.com/aws/aws-sdk-go-v2/config                                                  v1.28.7                               go-module  �[38;2;119;119;119m�[0m                  
github.com/aws/aws-sdk-go-v2/credentials                                             v1.17.48                              go-module  �[38;2;119;119;119m�[0m                  
github.com/aws/aws-sdk-go-v2/feature/ec2/imds                                        v1.16.22                              go-module  �[38;2;119;119;119m�[0m                  
github.com/aws/aws-sdk-go-v2/internal/configsources                                  v1.3.26                               go-module  �[38;2;119;119;119m�[0m                  
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2                                   v2.6.26                               go-module  �[38;2;119;119;119m�[0m                  
github.com/aws/aws-sdk-go-v2/internal/ini                                            v1.8.1                                go-module  �[38;2;119;119;119m�[0m                  
github.com/aws/aws-sdk-go-v2/internal/v4a                                            v1.3.26                               go-module  �[38;2;119;119;119m�[0m                  
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding                        v1.12.1                               go-module  �[38;2;119;119;119m�[0m                  
github.com/aws/aws-sdk-go-v2/service/internal/checksum                               v1.4.7                                go-module  �[38;2;119;119;119m�[0m                  
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url                          v1.12.7                               go-module  �[38;2;119;119;119m�[0m                  
github.com/aws/aws-sdk-go-v2/service/internal/s3shared                               v1.18.7                               go-module  �[38;2;119;119;119m�[0m                  
github.com/aws/aws-sdk-go-v2/service/s3                                              v1.72.0                               go-module  �[38;2;119;119;119m�[0m                  
github.com/aws/aws-sdk-go-v2/service/sso                                             v1.24.8                               go-module  �[38;2;119;119;119m�[0m                  
github.com/aws/aws-sdk-go-v2/service/ssooidc                                         v1.28.7                               go-module  �[38;2;119;119;119m�[0m                  
github.com/aws/aws-sdk-go-v2/service/sts                                             v1.33.3                               go-module  �[38;2;119;119;119m�[0m                  
github.com/aws/smithy-go                                                             v1.22.1                               go-module  �[38;2;119;119;119m�[0m                  
github.com/census-instrumentation/opencensus-proto                                   v0.4.1                                go-module  �[38;2;119;119;119m�[0m                  
github.com/cespare/xxhash/v2                                                         v2.3.0                                go-module  �[38;2;119;119;119m�[0m                  
github.com/cloudflare/circl                                                          v1.5.0                                go-module  �[38;2;119;119;119m�[0m                  
github.com/cncf/xds/go                                                               v0.0.0-20241213214725-57cfbe6fad57    go-module  �[38;2;119;119;119m�[0m                  
github.com/cyphar/filepath-securejoin                                                v0.3.6                                go-module  �[38;2;119;119;119m�[0m                  
github.com/emirpasic/gods                                                            v1.18.1                               go-module  �[38;2;119;119;119m�[0m                  
github.com/envoyproxy/go-control-plane                                               v0.13.1                               go-module  �[38;2;119;119;119m�[0m                  
github.com/envoyproxy/protoc-gen-validate                                            v1.1.0                                go-module  �[38;2;119;119;119m�[0m                  
github.com/felixge/httpsnoop                                                         v1.0.4                                go-module  �[38;2;119;119;119m�[0m                  
github.com/getsentry/sentry-go                                                       v0.31.1                               go-module  �[38;2;119;119;119m�[0m                  
github.com/go-git/gcfg                                                               v1.5.1-0.20230307220236-3a3c6141e376  go-module  �[38;2;119;119;119m�[0m                  
github.com/go-git/go-billy/v5                                                        v5.6.1                                go-module  �[38;2;119;119;119m�[0m                  
github.com/go-git/go-git/v5                                                          v5.13.1                               go-module  �[38;2;119;119;119m�[0m                  
github.com/go-logr/logr                                                              v1.4.2                                go-module  �[38;2;119;119;119m�[0m                  
github.com/go-logr/stdr                                                              v1.2.2                                go-module  �[38;2;119;119;119m�[0m                  
github.com/golang-jwt/jwt/v5                                                         v5.2.1                                go-module  �[38;2;119;119;119m�[0m                  
github.com/golang/groupcache                                                         v0.0.0-20241129210726-2c02b8208cf8    go-module  �[38;2;119;119;119m�[0m                  
github.com/google/s2a-go                                                             v0.1.8                                go-module  �[38;2;119;119;119m�[0m                  
github.com/google/uuid                                                               v1.6.0                                go-module  �[38;2;119;119;119m�[0m                  
github.com/googleapis/enterprise-certificate-proxy                                   v0.3.4                                go-module  �[38;2;119;119;119m�[0m                  
github.com/googleapis/gax-go/v2                                                      v2.14.1                               go-module  �[38;2;119;119;119m�[0m                  
github.com/hashicorp/go-cleanhttp                                                    v0.5.2                                go-module  �[38;2;119;119;119m�[0m                  
github.com/hashicorp/go-retryablehttp                                                v0.7.7                                go-module  �[38;2;119;119;119m�[0m                  
github.com/hashicorp/golang-lru                                                      v1.0.2                                go-module  �[38;2;119;119;119m�[0m                  
github.com/jbenet/go-context                                                         v0.0.0-20150711004518-d14ea06fba99    go-module  �[38;2;119;119;119m�[0m                  
github.com/kevinburke/ssh_config                                                     v1.2.0                                go-module  �[38;2;119;119;119m�[0m                  
github.com/kylelemons/godebug                                                        v1.1.0                                go-module  �[38;2;119;119;119m�[0m                  
github.com/munnerz/goautoneg                                                         v0.0.0-20191010083416-a7dc8b61c822    go-module  �[38;2;119;119;119m�[0m                  
github.com/pjbgf/sha1cd                                                              v0.3.0                                go-module  �[38;2;119;119;119m�[0m                  
github.com/pkg/browser                                                               v0.0.0-20240102092130-5ac0b6a4141c    go-module  �[38;2;119;119;119m�[0m                  
github.com/prometheus/client_model                                                   v0.6.1                                go-module  �[38;2;119;119;119m�[0m                  
github.com/prometheus/common                                                         v0.61.0                               go-module  �[38;2;119;119;119m�[0m                  
github.com/radovskyb/watcher                                                         v1.0.7                                go-module  �[38;2;119;119;119m�[0m                  
github.com/sergi/go-diff                                                             v1.3.2-0.20230802210424-5b0b94c5c0d3  go-module  �[38;2;119;119;119m�[0m                  
github.com/shirou/gopsutil/v4                                                        v4.24.12                              go-module  �[38;2;119;119;119m�[0m                  
github.com/skeema/knownhosts                                                         v1.3.0                                go-module  �[38;2;119;119;119m�[0m                  
github.com/tklauser/go-sysconf                                                       v0.3.14                               go-module  �[38;2;119;119;119m�[0m                  
github.com/tklauser/numcpus                                                          v0.9.0                                go-module  �[38;2;119;119;119m�[0m                  
github.com/vektah/gqlparser/v2                                                       v2.5.20                               go-module  �[38;2;119;119;119m�[0m                  
github.com/wandb/simplejsonext                                                       v0.0.0-20241203202201-90635f1d8677    go-module  �[38;2;119;119;119m�[0m                  
github.com/wandb/wandb/core                                                          (devel)                               go-module  �[38;2;119;119;119m�[0m                  
github.com/xanzy/ssh-agent                                                           v0.3.3                                go-module  �[38;2;119;119;119m�[0m                  
gitpython                                                                            3.1.44                                python     �[38;2;119;119;119m�[0m                  
gnupg                                                                                2.2.40-1.1                            deb        �[38;2;119;119;119m�[0m                  
gnupg-l10n                                                                           2.2.40-1.1                            deb        �[38;2;119;119;119m�[0m                  
gnupg-utils                                                                          2.2.40-1.1                            deb        �[38;2;119;119;119m�[0m                  
go.opentelemetry.io/auto/sdk                                                         v1.1.0                                go-module  �[38;2;119;119;119m�[0m                  
go.opentelemetry.io/contrib/detectors/gcp                                            v1.33.0                               go-module  �[38;2;119;119;119m�[0m                  
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc          v0.58.0                               go-module  �[38;2;119;119;119m�[0m                  
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp                        v0.58.0                               go-module  �[38;2;119;119;119m�[0m                  
go.opentelemetry.io/otel                                                             v1.33.0                               go-module  �[38;2;119;119;119m�[0m                  
go.opentelemetry.io/otel/metric                                                      v1.33.0                               go-module  �[38;2;119;119;119m�[0m                  
go.opentelemetry.io/otel/sdk                                                         v1.33.0                               go-module  �[38;2;119;119;119m�[0m                  
go.opentelemetry.io/otel/sdk/metric                                                  v1.33.0                               go-module  �[38;2;119;119;119m�[0m                  
go.opentelemetry.io/otel/trace                                                       v1.33.0                               go-module  �[38;2;119;119;119m�[0m                  
golang.org/x/crypto                                                                  v0.31.0                               go-module  �[38;2;119;119;119m�[0m                  
golang.org/x/net                                                                     v0.30.0                               go-module  �[38;2;119;119;119m�[0m                  
golang.org/x/net                                                                     v0.33.0                               go-module  �[38;2;119;119;119m�[0m                  
golang.org/x/oauth2                                                                  v0.24.0                               go-module  �[38;2;119;119;119m�[0m                  
golang.org/x/sync                                                                    v0.10.0                               go-module  �[38;2;119;119;119m�[0m                  
golang.org/x/sys                                                                     v0.27.0                               go-module  �[38;2;119;119;119m�[0m                  
golang.org/x/sys                                                                     v0.28.0                               go-module  �[38;2;119;119;119m�[0m                  
golang.org/x/text                                                                    v0.19.0                               go-module  �[38;2;119;119;119m�[0m                  
golang.org/x/text                                                                    v0.21.0                               go-module  �[38;2;119;119;119m�[0m                  
golang.org/x/time                                                                    v0.9.0                                go-module  �[38;2;119;119;119m�[0m                  
google-api-core                                                                      2.20.0                                python     �[38;2;119;119;119m�[0m                  
google-api-python-client                                                             2.147.0                               python     �[38;2;119;119;119m�[0m                  
google-apitools                                                                      0.5.31                                python     �[38;2;119;119;119m�[0m                  
google-auth                                                                          2.35.0                                python     �[38;2;119;119;119m�[0m                  
google-auth-httplib2                                                                 0.2.0                                 python     �[38;2;119;119;119m�[0m                  
google-auth-oauthlib                                                                 1.2.1                                 python     �[38;2;119;119;119m�[0m                  
google-cloud-aiplatform                                                              1.69.0                                python     �[38;2;119;119;119m�[0m                  
google-cloud-bigquery                                                                3.26.0                                python     �[38;2;119;119;119m�[0m                  
google-cloud-bigquery-storage                                                        2.26.0                                python     �[38;2;119;119;119m�[0m                  
google-cloud-bigtable                                                                2.26.0                                python     �[38;2;119;119;119m�[0m                  
google-cloud-core                                                                    2.4.1                                 python     �[38;2;119;119;119m�[0m                  
google-cloud-datastore                                                               2.20.1                                python     �[38;2;119;119;119m�[0m                  
google-cloud-dlp                                                                     3.23.0                                python     �[38;2;119;119;119m�[0m                  
google-cloud-language                                                                2.14.0                                python     �[38;2;119;119;119m�[0m                  
google-cloud-profiler                                                                4.1.0                                 python     �[38;2;119;119;119m�[0m                  
google-cloud-pubsub                                                                  2.25.2                                python     �[38;2;119;119;119m�[0m                  
google-cloud-pubsublite                                                              1.11.1                                python     �[38;2;119;119;119m�[0m                  
google-cloud-recommendations-ai                                                      0.10.12                               python     �[38;2;119;119;119m�[0m                  
google-cloud-resource-manager                                                        1.12.5                                python     �[38;2;119;119;119m�[0m                  
google-cloud-spanner                                                                 3.49.1                                python     �[38;2;119;119;119m�[0m                  
google-cloud-storage                                                                 2.18.2                                python     �[38;2;119;119;119m�[0m                  
google-cloud-videointelligence                                                       2.13.5                                python     �[38;2;119;119;119m�[0m                  
google-cloud-vision                                                                  3.7.4                                 python     �[38;2;119;119;119m�[0m                  
google-crc32c                                                                        1.6.0                                 python     �[38;2;119;119;119m(+1 duplicate)�[0m    
google-pasta                                                                         0.2.0                                 python     �[38;2;119;119;119m�[0m                  
google-resumable-media                                                               2.7.2                                 python     �[38;2;119;119;119m�[0m                  
google.golang.org/api                                                                v0.214.0                              go-module  �[38;2;119;119;119m�[0m                  
google.golang.org/genproto                                                           v0.0.0-20241219192143-6b3ec007d9bb    go-module  �[38;2;119;119;119m�[0m                  
google.golang.org/genproto/googleapis/api                                            v0.0.0-20241219192143-6b3ec007d9bb    go-module  �[38;2;119;119;119m�[0m                  
google.golang.org/genproto/googleapis/rpc                                            v0.0.0-20241015192408-796eee8c2d53    go-module  �[38;2;119;119;119m�[0m                  
google.golang.org/genproto/googleapis/rpc                                            v0.0.0-20241219192143-6b3ec007d9bb    go-module  �[38;2;119;119;119m�[0m                  
google.golang.org/grpc                                                               v1.67.1                               go-module  �[38;2;119;119;119m�[0m                  
google.golang.org/grpc                                                               v1.69.2                               go-module  �[38;2;119;119;119m�[0m                  
google.golang.org/protobuf                                                           v1.35.1                               go-module  �[38;2;119;119;119m�[0m                  
google.golang.org/protobuf                                                           v1.36.1                               go-module  �[38;2;119;119;119m�[0m                  
googleapis-common-protos                                                             1.65.0                                python     �[38;2;119;119;119m�[0m                  
gopkg.in/warnings.v0                                                                 v0.1.2                                go-module  �[38;2;119;119;119m�[0m                  
gopkg.in/yaml.v3                                                                     v3.0.1                                go-module  �[38;2;119;119;119m�[0m                  
gpg                                                                                  2.2.40-1.1                            deb        �[38;2;119;119;119m�[0m                  
gpg-agent                                                                            2.2.40-1.1                            deb        �[38;2;119;119;119m�[0m                  
gpg-wks-client                                                                       2.2.40-1.1                            deb        �[38;2;119;119;119m�[0m                  
gpg-wks-server                                                                       2.2.40-1.1                            deb        �[38;2;119;119;119m�[0m                  
gpgconf                                                                              2.2.40-1.1                            deb        �[38;2;119;119;119m�[0m                  
gpgsm                                                                                2.2.40-1.1                            deb        �[38;2;119;119;119m�[0m                  
gpgv                                                                                 2.2.40-1.1                            deb        �[38;2;119;119;119m�[0m                  
greenlet                                                                             3.1.1                                 python     �[38;2;119;119;119m�[0m                  
grep                                                                                 3.8-5                                 deb        �[38;2;119;119;119m�[0m                  
grpc-google-iam-v1                                                                   0.13.1                                python     �[38;2;119;119;119m�[0m                  
grpc-interceptor                                                                     0.15.4                                python     �[38;2;119;119;119m�[0m                  
grpcio                                                                               1.65.5                                python     �[38;2;119;119;119m�[0m                  
grpcio                                                                               1.66.1                                python     �[38;2;119;119;119m�[0m                  
grpcio-status                                                                        1.48.2                                python     �[38;2;119;119;119m�[0m                  
guppy3                                                                               3.1.4.post1                           python     �[38;2;119;119;119m�[0m                  
gzip                                                                                 1.12-1                                deb        �[38;2;119;119;119m�[0m                  
h5py                                                                                 3.12.1                                python     �[38;2;119;119;119m�[0m                  
hdfs                                                                                 2.7.3                                 python     �[38;2;119;119;119m�[0m                  
hicolor-icon-theme                                                                   0.17-2                                deb        �[38;2;119;119;119m�[0m                  
hostname                                                                             3.23+nmu1                             deb        �[38;2;119;119;119m�[0m                  
httplib2                                                                             0.22.0                                python     �[38;2;119;119;119m�[0m                  
huggingface-hub                                                                      0.27.1                                python     �[38;2;119;119;119m�[0m                  
hypothesis                                                                           6.112.3                               python     �[38;2;119;119;119m�[0m                  
icu-devtools                                                                         72.1-3                                deb        �[38;2;119;119;119m�[0m                  
idna                                                                                 3.10                                  python     �[38;2;119;119;119m�[0m                  
imagemagick                                                                          8:6.9.11.60+dfsg-1.6+deb12u2          deb        �[38;2;119;119;119m�[0m                  
imagemagick-6-common                                                                 8:6.9.11.60+dfsg-1.6+deb12u2          deb        �[38;2;119;119;119m�[0m                  
imagemagick-6.q16                                                                    8:6.9.11.60+dfsg-1.6+deb12u2          deb        �[38;2;119;119;119m�[0m                  
immutabledict                                                                        4.2.1                                 python     �[38;2;119;119;119m�[0m                  
importlib-metadata                                                                   8.0.0                                 python     �[38;2;119;119;119m�[0m                  
importlib-metadata                                                                   8.4.0                                 python     �[38;2;119;119;119m�[0m                  
importlib-resources                                                                  6.5.2                                 python     �[38;2;119;119;119m�[0m                  
inflect                                                                              7.3.1                                 python     �[38;2;119;119;119m�[0m                  
iniconfig                                                                            2.0.0                                 python     �[38;2;119;119;119m�[0m                  
init-system-helpers                                                                  1.65.2                                deb        �[38;2;119;119;119m�[0m                  
isodate                                                                              0.7.2                                 python     �[38;2;119;119;119m�[0m                  
jaraco-classes                                                                       3.4.0                                 python     �[38;2;119;119;119m�[0m                  
jaraco-collections                                                                   5.1.0                                 python     �[38;2;119;119;119m�[0m                  
jaraco-context                                                                       5.3.0                                 python     �[38;2;119;119;119m�[0m                  
jaraco-context                                                                       6.0.1                                 python     �[38;2;119;119;119m�[0m                  
jaraco-functools                                                                     4.0.1                                 python     �[38;2;119;119;119m�[0m                  
jaraco-functools                                                                     4.1.0                                 python     �[38;2;119;119;119m�[0m                  
jaraco-text                                                                          3.12.1                                python     �[38;2;119;119;119m�[0m                  
jeepney                                                                              0.8.0                                 python     �[38;2;119;119;119m�[0m                  
jinja2                                                                               3.1.4                                 python     �[38;2;119;119;119m�[0m                  
joblib                                                                               1.4.2                                 python     �[38;2;119;119;119m�[0m                  
jsonpath-rw                                                                          1.4.0                                 python     �[38;2;119;119;119m�[0m                  
jsonpickle                                                                           3.3.0                                 python     �[38;2;119;119;119m�[0m                  
jsonschema                                                                           4.23.0                                python     �[38;2;119;119;119m�[0m                  
jsonschema-specifications                                                            2023.12.1                             python     �[38;2;119;119;119m�[0m                  
keras                                                                                3.8.0                                 python     �[38;2;119;119;119m�[0m                  
keyring                                                                              25.4.1                                python     �[38;2;119;119;119m�[0m                  
keyrings-google-artifactregistry-auth                                                1.1.2                                 python     �[38;2;119;119;119m�[0m                  
krb5-multidev                                                                        1.20.1-2+deb12u2                      deb        �[38;2;119;119;119m�[0m                  
laion-clap                                                                           1.1.6                                 python     �[38;2;119;119;119m�[0m                  
lazy-loader                                                                          0.4                                   python     �[38;2;119;119;119m�[0m                  
libacl1                                                                              2.3.1-3                               deb        �[38;2;119;119;119m�[0m                  
libaom3                                                                              3.6.0-1+deb12u1                       deb        �[38;2;119;119;119m�[0m                  
libapr1                                                                              1.7.2-3+deb12u1                       deb        �[38;2;119;119;119m�[0m                  
libaprutil1                                                                          1.6.3-1                               deb        �[38;2;119;119;119m�[0m                  
libapt-pkg6.0                                                                        2.6.1                                 deb        �[38;2;119;119;119m�[0m                  
libasan8                                                                             12.2.0-14                             deb        �[38;2;119;119;119m�[0m                  
libasound2                                                                           1.2.8-1+b1                            deb        �[38;2;119;119;119m�[0m                  
libasound2-data                                                                      1.2.8-1                               deb        �[38;2;119;119;119m�[0m                  
libass9                                                                              1:0.17.1-1                            deb        �[38;2;119;119;119m�[0m                  
libassuan0                                                                           2.5.5-5                               deb        �[38;2;119;119;119m�[0m                  
libasyncns0                                                                          0.8-6+b3                              deb        �[38;2;119;119;119m�[0m                  
libatomic1                                                                           12.2.0-14                             deb        �[38;2;119;119;119m�[0m                  
libattr1                                                                             1:2.5.1-4                             deb        �[38;2;119;119;119m�[0m                  
libaudit-common                                                                      1:3.0.9-1                             deb        �[38;2;119;119;119m�[0m                  
libaudit1                                                                            1:3.0.9-1                             deb        �[38;2;119;119;119m�[0m                  
libavc1394-0                                                                         0.5.4-5                               deb        �[38;2;119;119;119m�[0m                  
libavcodec59                                                                         7:5.1.6-0+deb12u1                     deb        �[38;2;119;119;119m�[0m                  
libavdevice59                                                                        7:5.1.6-0+deb12u1                     deb        �[38;2;119;119;119m�[0m                  
libavfilter8                                                                         7:5.1.6-0+deb12u1                     deb        �[38;2;119;119;119m�[0m                  
libavformat59                                                                        7:5.1.6-0+deb12u1                     deb        �[38;2;119;119;119m�[0m                  
libavutil57                                                                          7:5.1.6-0+deb12u1                     deb        �[38;2;119;119;119m�[0m                  
libbinutils                                                                          2.40-2                                deb        �[38;2;119;119;119m�[0m                  
libblas3                                                                             3.11.0-2                              deb        �[38;2;119;119;119m�[0m                  
libblkid-dev                                                                         2.38.1-5+deb12u2                      deb        �[38;2;119;119;119m�[0m                  
libblkid1                                                                            2.38.1-5+deb12u2                      deb        �[38;2;119;119;119m�[0m                  
libbluetooth-dev                                                                     5.66-1+deb12u2                        deb        �[38;2;119;119;119m�[0m                  
libbluetooth3                                                                        5.66-1+deb12u2                        deb        �[38;2;119;119;119m�[0m                  
libbluray2                                                                           1:1.3.4-1                             deb        �[38;2;119;119;119m�[0m                  
libbrotli-dev                                                                        1.0.9-2+b6                            deb        �[38;2;119;119;119m�[0m                  
libbrotli1                                                                           1.0.9-2+b6                            deb        �[38;2;119;119;119m�[0m                  
libbs2b0                                                                             3.1.0+dfsg-7                          deb        �[38;2;119;119;119m�[0m                  
libbsd0                                                                              0.11.7-2                              deb        �[38;2;119;119;119m�[0m                  
libbz2-1.0                                                                           1.0.8-5+b1                            deb        �[38;2;119;119;119m�[0m                  
libbz2-dev                                                                           1.0.8-5+b1                            deb        �[38;2;119;119;119m�[0m                  
libc-bin                                                                             2.36-9+deb12u9                        deb        �[38;2;119;119;119m�[0m                  
libc-dev-bin                                                                         2.36-9+deb12u9                        deb        �[38;2;119;119;119m�[0m                  
libc6                                                                                2.36-9+deb12u9                        deb        �[38;2;119;119;119m�[0m                  
libc6-dev                                                                            2.36-9+deb12u9                        deb        �[38;2;119;119;119m�[0m                  
libcaca0                                                                             0.99.beta20-3                         deb        �[38;2;119;119;119m�[0m                  
libcairo-gobject2                                                                    1.16.0-7                              deb        �[38;2;119;119;119m�[0m                  
libcairo-script-interpreter2                                                         1.16.0-7                              deb        �[38;2;119;119;119m�[0m                  
libcairo2                                                                            1.16.0-7                              deb        �[38;2;119;119;119m�[0m                  
libcairo2-dev                                                                        1.16.0-7                              deb        �[38;2;119;119;119m�[0m                  
libcap-ng0                                                                           0.8.3-1+b3                            deb        �[38;2;119;119;119m�[0m                  
libcap2                                                                              1:2.66-4                              deb        �[38;2;119;119;119m�[0m                  
libcbor0.8                                                                           0.8.0-2+b1                            deb        �[38;2;119;119;119m�[0m                  
libcc1-0                                                                             12.2.0-14                             deb        �[38;2;119;119;119m�[0m                  
libcdio-cdda2                                                                        10.2+2.0.1-1                          deb        �[38;2;119;119;119m�[0m                  
libcdio-paranoia2                                                                    10.2+2.0.1-1                          deb        �[38;2;119;119;119m�[0m                  
libcdio19                                                                            2.1.0-4                               deb        �[38;2;119;119;119m�[0m                  
libchromaprint1                                                                      1.5.1-2+b1                            deb        �[38;2;119;119;119m�[0m                  
libcjson1                                                                            1.7.15-1+deb12u2                      deb        �[38;2;119;119;119m�[0m                  
libclang                                                                             18.1.1                                python     �[38;2;119;119;119m�[0m                  
libcodec2-1.0                                                                        1.0.5-1                               deb        �[38;2;119;119;119m�[0m                  
libcom-err2                                                                          1.47.0-2                              deb        �[38;2;119;119;119m�[0m                  
libcrypt-dev                                                                         1:4.4.33-2                            deb        �[38;2;119;119;119m�[0m                  
libcrypt1                                                                            1:4.4.33-2                            deb        �[38;2;119;119;119m�[0m                  
libctf-nobfd0                                                                        2.40-2                                deb        �[38;2;119;119;119m�[0m                  
libctf0                                                                              2.40-2                                deb        �[38;2;119;119;119m�[0m                  
libcurl3-gnutls                                                                      7.88.1-10+deb12u8                     deb        �[38;2;119;119;119m�[0m                  
libcurl4                                                                             7.88.1-10+deb12u8                     deb        �[38;2;119;119;119m�[0m                  
libcurl4-openssl-dev                                                                 7.88.1-10+deb12u8                     deb        �[38;2;119;119;119m�[0m                  
libdatrie1                                                                           0.2.13-2+b1                           deb        �[38;2;119;119;119m�[0m                  
libdav1d6                                                                            1.0.0-2+deb12u1                       deb        �[38;2;119;119;119m�[0m                  
libdb-dev                                                                            5.3.2                                 deb        �[38;2;119;119;119m�[0m                  
libdb5.3                                                                             5.3.28+dfsg2-1                        deb        �[38;2;119;119;119m�[0m                  
libdb5.3-dev                                                                         5.3.28+dfsg2-1                        deb        �[38;2;119;119;119m�[0m                  
libdbus-1-3                                                                          1.14.10-1~deb12u1                     deb        �[38;2;119;119;119m�[0m                  
libdc1394-25                                                                         2.2.6-4                               deb        �[38;2;119;119;119m�[0m                  
libde265-0                                                                           1.0.11-1+deb12u2                      deb        �[38;2;119;119;119m�[0m                  
libdebconfclient0                                                                    0.270                                 deb        �[38;2;119;119;119m�[0m                  
libdecor-0-0                                                                         0.1.1-2                               deb        �[38;2;119;119;119m�[0m                  
libdeflate-dev                                                                       1.14-1                                deb        �[38;2;119;119;119m�[0m                  
libdeflate0                                                                          1.14-1                                deb        �[38;2;119;119;119m�[0m                  
libdjvulibre-dev                                                                     3.5.28-2+b1                           deb        �[38;2;119;119;119m�[0m                  
libdjvulibre-text                                                                    3.5.28-2                              deb        �[38;2;119;119;119m�[0m                  
libdjvulibre21                                                                       3.5.28-2+b1                           deb        �[38;2;119;119;119m�[0m                  
libdpkg-perl                                                                         1.21.22                               deb        �[38;2;119;119;119m�[0m                  
libdrm-amdgpu1                                                                       2.4.114-1+b1                          deb        �[38;2;119;119;119m�[0m                  
libdrm-common                                                                        2.4.114-1                             deb        �[38;2;119;119;119m�[0m                  
libdrm-intel1                                                                        2.4.114-1+b1                          deb        �[38;2;119;119;119m�[0m                  
libdrm-nouveau2                                                                      2.4.114-1+b1                          deb        �[38;2;119;119;119m�[0m                  
libdrm-radeon1                                                                       2.4.114-1+b1                          deb        �[38;2;119;119;119m�[0m                  
libdrm2                                                                              2.4.114-1+b1                          deb        �[38;2;119;119;119m�[0m                  
libedit2                                                                             3.1-20221030-2                        deb        �[38;2;119;119;119m�[0m                  
libelf1                                                                              0.188-2.1                             deb        �[38;2;119;119;119m�[0m                  
libepoxy0                                                                            1.5.10-1                              deb        �[38;2;119;119;119m�[0m                  
liberror-perl                                                                        0.17029-2                             deb        �[38;2;119;119;119m�[0m                  
libevent-2.1-7                                                                       2.1.12-stable-8                       deb        �[38;2;119;119;119m�[0m                  
libevent-core-2.1-7                                                                  2.1.12-stable-8                       deb        �[38;2;119;119;119m�[0m                  
libevent-dev                                                                         2.1.12-stable-8                       deb        �[38;2;119;119;119m�[0m                  
libevent-extra-2.1-7                                                                 2.1.12-stable-8                       deb        �[38;2;119;119;119m�[0m                  
libevent-openssl-2.1-7                                                               2.1.12-stable-8                       deb        �[38;2;119;119;119m�[0m                  
libevent-pthreads-2.1-7                                                              2.1.12-stable-8                       deb        �[38;2;119;119;119m�[0m                  
libexif-dev                                                                          0.6.24-1+b1                           deb        �[38;2;119;119;119m�[0m                  
libexif12                                                                            0.6.24-1+b1                           deb        �[38;2;119;119;119m�[0m                  
libexpat1                                                                            2.5.0-1+deb12u1                       deb        �[38;2;119;119;119m�[0m                  
libexpat1-dev                                                                        2.5.0-1+deb12u1                       deb        �[38;2;119;119;119m�[0m                  
libext2fs2                                                                           1.47.0-2                              deb        �[38;2;119;119;119m�[0m                  
libffi-dev                                                                           3.4.4-1                               deb        �[38;2;119;119;119m�[0m                  
libffi8                                                                              3.4.4-1                               deb        �[38;2;119;119;119m�[0m                  
libfftw3-double3                                                                     3.3.10-1                              deb        �[38;2;119;119;119m�[0m                  
libfido2-1                                                                           1.12.0-2+b1                           deb        �[38;2;119;119;119m�[0m                  
libflac12                                                                            1.4.2+ds-2                            deb        �[38;2;119;119;119m�[0m                  
libflite1                                                                            2.2-5                                 deb        �[38;2;119;119;119m�[0m                  
libfontconfig-dev                                                                    2.14.1-4                              deb        �[38;2;119;119;119m�[0m                  
libfontconfig1                                                                       2.14.1-4                              deb        �[38;2;119;119;119m�[0m                  
libfreetype-dev                                                                      2.12.1+dfsg-5+deb12u3                 deb        �[38;2;119;119;119m�[0m                  
libfreetype6                                                                         2.12.1+dfsg-5+deb12u3                 deb        �[38;2;119;119;119m�[0m                  
libfreetype6-dev                                                                     2.12.1+dfsg-5+deb12u3                 deb        �[38;2;119;119;119m�[0m                  
libfribidi0                                                                          1.0.8-2.1                             deb        �[38;2;119;119;119m�[0m                  
libgbm1                                                                              22.3.6-1+deb12u1                      deb        �[38;2;119;119;119m�[0m                  
libgcc-12-dev                                                                        12.2.0-14                             deb        �[38;2;119;119;119m�[0m                  
libgcc-s1                                                                            12.2.0-14                             deb        �[38;2;119;119;119m�[0m                  
libgcrypt20                                                                          1.10.1-3                              deb        �[38;2;119;119;119m�[0m                  
libgdbm-compat4                                                                      1.23-3                                deb        �[38;2;119;119;119m�[0m                  
libgdbm-dev                                                                          1.23-3                                deb        �[38;2;119;119;119m�[0m                  
libgdbm6                                                                             1.23-3                                deb        �[38;2;119;119;119m�[0m                  
libgdk-pixbuf-2.0-0                                                                  2.42.10+dfsg-1+deb12u1                deb        �[38;2;119;119;119m�[0m                  
libgdk-pixbuf-2.0-dev                                                                2.42.10+dfsg-1+deb12u1                deb        �[38;2;119;119;119m�[0m                  
libgdk-pixbuf2.0-bin                                                                 2.42.10+dfsg-1+deb12u1                deb        �[38;2;119;119;119m�[0m                  
libgdk-pixbuf2.0-common                                                              2.42.10+dfsg-1+deb12u1                deb        �[38;2;119;119;119m�[0m                  
libgeos-c1v5                                                                         3.11.1-1                              deb        �[38;2;119;119;119m�[0m                  
libgeos-dev                                                                          3.11.1-1                              deb        �[38;2;119;119;119m�[0m                  
libgeos3.11.1                                                                        3.11.1-1                              deb        �[38;2;119;119;119m�[0m                  
libgfortran5                                                                         12.2.0-14                             deb        �[38;2;119;119;119m�[0m                  
libgirepository-1.0-1                                                                1.74.0-3                              deb        �[38;2;119;119;119m�[0m                  
libgl1                                                                               1.6.0-1                               deb        �[38;2;119;119;119m�[0m                  
libgl1-mesa-dri                                                                      22.3.6-1+deb12u1                      deb        �[38;2;119;119;119m�[0m                  
libglapi-mesa                                                                        22.3.6-1+deb12u1                      deb        �[38;2;119;119;119m�[0m                  
libglib2.0-0                                                                         2.74.6-2+deb12u4                      deb        �[38;2;119;119;119m�[0m                  
libglib2.0-bin                                                                       2.74.6-2+deb12u4                      deb        �[38;2;119;119;119m�[0m                  
libglib2.0-data                                                                      2.74.6-2+deb12u4                      deb        �[38;2;119;119;119m�[0m                  
libglib2.0-dev                                                                       2.74.6-2+deb12u4                      deb        �[38;2;119;119;119m�[0m                  
libglib2.0-dev-bin                                                                   2.74.6-2+deb12u4                      deb        �[38;2;119;119;119m�[0m                  
libglvnd0                                                                            1.6.0-1                               deb        �[38;2;119;119;119m�[0m                  
libglx-mesa0                                                                         22.3.6-1+deb12u1                      deb        �[38;2;119;119;119m�[0m                  
libglx0                                                                              1.6.0-1                               deb        �[38;2;119;119;119m�[0m                  
libgme0                                                                              0.6.3-6                               deb        �[38;2;119;119;119m�[0m                  
libgmp-dev                                                                           2:6.2.1+dfsg1-1.1                     deb        �[38;2;119;119;119m�[0m                  
libgmp10                                                                             2:6.2.1+dfsg1-1.1                     deb        �[38;2;119;119;119m�[0m                  
libgmpxx4ldbl                                                                        2:6.2.1+dfsg1-1.1                     deb        �[38;2;119;119;119m�[0m                  
libgnutls30                                                                          3.7.9-2+deb12u3                       deb        �[38;2;119;119;119m�[0m                  
libgomp1                                                                             12.2.0-14                             deb        �[38;2;119;119;119m�[0m                  
libgpg-error0                                                                        1.46-1                                deb        �[38;2;119;119;119m�[0m                  
libgprofng0                                                                          2.40-2                                deb        �[38;2;119;119;119m�[0m                  
libgraphite2-3                                                                       1.3.14-1                              deb        �[38;2;119;119;119m�[0m                  
libgsm1                                                                              1.0.22-1                              deb        �[38;2;119;119;119m�[0m                  
libgssapi-krb5-2                                                                     1.20.1-2+deb12u2                      deb        �[38;2;119;119;119m�[0m                  
libgssrpc4                                                                           1.20.1-2+deb12u2                      deb        �[38;2;119;119;119m�[0m                  
libharfbuzz0b                                                                        6.0.0+dfsg-3                          deb        �[38;2;119;119;119m�[0m                  
libheif1                                                                             1.15.1-1+deb12u1                      deb        �[38;2;119;119;119m�[0m                  
libhiredis0.14                                                                       0.14.1-3                              deb        �[38;2;119;119;119m�[0m                  
libhogweed6                                                                          3.8.1-2                               deb        �[38;2;119;119;119m�[0m                  
libhwy1                                                                              1.0.3-3+deb12u1                       deb        �[38;2;119;119;119m�[0m                  
libice-dev                                                                           2:1.0.10-1                            deb        �[38;2;119;119;119m�[0m                  
libice6                                                                              2:1.0.10-1                            deb        �[38;2;119;119;119m�[0m                  
libicu-dev                                                                           72.1-3                                deb        �[38;2;119;119;119m�[0m                  
libicu72                                                                             72.1-3                                deb        �[38;2;119;119;119m�[0m                  
libidn2-0                                                                            2.3.3-1+b1                            deb        �[38;2;119;119;119m�[0m                  
libiec61883-0                                                                        1.2.0-6+b1                            deb        �[38;2;119;119;119m�[0m                  
libimath-3-1-29                                                                      3.1.6-1                               deb        �[38;2;119;119;119m�[0m                  
libimath-dev                                                                         3.1.6-1                               deb        �[38;2;119;119;119m�[0m                  
libisl23                                                                             0.25-1.1                              deb        �[38;2;119;119;119m�[0m                  
libitm1                                                                              12.2.0-14                             deb        �[38;2;119;119;119m�[0m                  
libjack-jackd2-0                                                                     1.9.21~dfsg-3                         deb        �[38;2;119;119;119m�[0m                  
libjansson4                                                                          2.14-2                                deb        �[38;2;119;119;119m�[0m                  
libjbig-dev                                                                          2.1-6.1                               deb        �[38;2;119;119;119m�[0m                  
libjbig0                                                                             2.1-6.1                               deb        �[38;2;119;119;119m�[0m                  
libjpeg-dev                                                                          1:2.1.5-2                             deb        �[38;2;119;119;119m�[0m                  
libjpeg62-turbo                                                                      1:2.1.5-2                             deb        �[38;2;119;119;119m�[0m                  
libjpeg62-turbo-dev                                                                  1:2.1.5-2                             deb        �[38;2;119;119;119m�[0m                  
libjs-jquery                                                                         3.6.1+dfsg+~3.5.14-1                  deb        �[38;2;119;119;119m�[0m                  
libjs-sphinxdoc                                                                      5.3.0-4                               deb        �[38;2;119;119;119m�[0m                  
libjs-underscore                                                                     1.13.4~dfsg+~1.11.4-3                 deb        �[38;2;119;119;119m�[0m                  
libjxl0.7                                                                            0.7.0-10                              deb        �[38;2;119;119;119m�[0m                  
libk5crypto3                                                                         1.20.1-2+deb12u2                      deb        �[38;2;119;119;119m�[0m                  
libkadm5clnt-mit12                                                                   1.20.1-2+deb12u2                      deb        �[38;2;119;119;119m�[0m                  
libkadm5srv-mit12                                                                    1.20.1-2+deb12u2                      deb        �[38;2;119;119;119m�[0m                  
libkdb5-10                                                                           1.20.1-2+deb12u2                      deb        �[38;2;119;119;119m�[0m                  
libkeyutils1                                                                         1.6.3-2                               deb        �[38;2;119;119;119m�[0m                  
libkrb5-3                                                                            1.20.1-2+deb12u2                      deb        �[38;2;119;119;119m�[0m                  
libkrb5-dev                                                                          1.20.1-2+deb12u2                      deb        �[38;2;119;119;119m�[0m                  
libkrb5support0                                                                      1.20.1-2+deb12u2                      deb        �[38;2;119;119;119m�[0m                  
libksba8                                                                             1.6.3-2                               deb        �[38;2;119;119;119m�[0m                  
liblapack3                                                                           3.11.0-2                              deb        �[38;2;119;119;119m�[0m                  
liblcms2-2                                                                           2.14-2                                deb        �[38;2;119;119;119m�[0m                  
liblcms2-dev                                                                         2.14-2                                deb        �[38;2;119;119;119m�[0m                  
libldap-2.5-0                                                                        2.5.13+dfsg-5                         deb        �[38;2;119;119;119m�[0m                  
liblerc-dev                                                                          4.0.0+ds-2                            deb        �[38;2;119;119;119m�[0m                  
liblerc4                                                                             4.0.0+ds-2                            deb        �[38;2;119;119;119m�[0m                  
liblilv-0-0                                                                          0.24.14-1                             deb        �[38;2;119;119;119m�[0m                  
libllvm15                                                                            1:15.0.6-4+b1                         deb        �[38;2;119;119;119m�[0m                  
liblqr-1-0                                                                           0.4.2-2.1                             deb        �[38;2;119;119;119m�[0m                  
liblqr-1-0-dev                                                                       0.4.2-2.1                             deb        �[38;2;119;119;119m�[0m                  
liblsan0                                                                             12.2.0-14                             deb        �[38;2;119;119;119m�[0m                  
libltdl-dev                                                                          2.4.7-7~deb12u1                       deb        �[38;2;119;119;119m�[0m                  
libltdl7                                                                             2.4.7-7~deb12u1                       deb        �[38;2;119;119;119m�[0m                  
liblz4-1                                                                             1.9.4-1                               deb        �[38;2;119;119;119m�[0m                  
liblzma-dev                                                                          5.4.1-0.2                             deb        �[38;2;119;119;119m�[0m                  
liblzma5                                                                             5.4.1-0.2                             deb        �[38;2;119;119;119m�[0m                  
liblzo2-2                                                                            2.10-2                                deb        �[38;2;119;119;119m�[0m                  
libmagic-mgc                                                                         1:5.44-3                              deb        �[38;2;119;119;119m�[0m                  
libmagic1                                                                            1:5.44-3                              deb        �[38;2;119;119;119m�[0m                  
libmagickcore-6-arch-config                                                          8:6.9.11.60+dfsg-1.6+deb12u2          deb        �[38;2;119;119;119m�[0m                  
libmagickcore-6-headers                                                              8:6.9.11.60+dfsg-1.6+deb12u2          deb        �[38;2;119;119;119m�[0m                  
libmagickcore-6.q16-6                                                                8:6.9.11.60+dfsg-1.6+deb12u2          deb        �[38;2;119;119;119m�[0m                  
libmagickcore-6.q16-6-extra                                                          8:6.9.11.60+dfsg-1.6+deb12u2          deb        �[38;2;119;119;119m�[0m                  
libmagickcore-6.q16-dev                                                              8:6.9.11.60+dfsg-1.6+deb12u2          deb        �[38;2;119;119;119m�[0m                  
libmagickcore-dev                                                                    8:6.9.11.60+dfsg-1.6+deb12u2          deb        �[38;2;119;119;119m�[0m                  
libmagickwand-6-headers                                                              8:6.9.11.60+dfsg-1.6+deb12u2          deb        �[38;2;119;119;119m�[0m                  
libmagickwand-6.q16-6                                                                8:6.9.11.60+dfsg-1.6+deb12u2          deb        �[38;2;119;119;119m�[0m                  
libmagickwand-6.q16-dev                                                              8:6.9.11.60+dfsg-1.6+deb12u2          deb        �[38;2;119;119;119m�[0m                  
libmagickwand-dev                                                                    8:6.9.11.60+dfsg-1.6+deb12u2          deb        �[38;2;119;119;119m�[0m                  
libmariadb-dev                                                                       1:10.11.6-0+deb12u1                   deb        �[38;2;119;119;119m�[0m                  
libmariadb-dev-compat                                                                1:10.11.6-0+deb12u1                   deb        �[38;2;119;119;119m�[0m                  
libmariadb3                                                                          1:10.11.6-0+deb12u1                   deb        �[38;2;119;119;119m�[0m                  
libmaxminddb-dev                                                                     1.7.1-1                               deb        �[38;2;119;119;119m�[0m                  
libmaxminddb0                                                                        1.7.1-1                               deb        �[38;2;119;119;119m�[0m                  
libmbedcrypto7                                                                       2.28.3-1                              deb        �[38;2;119;119;119m�[0m                  
libmd0                                                                               1.0.4-2                               deb        �[38;2;119;119;119m�[0m                  
libmfx1                                                                              22.5.4-1                              deb        �[38;2;119;119;119m�[0m                  
libmount-dev                                                                         2.38.1-5+deb12u2                      deb        �[38;2;119;119;119m�[0m                  
libmount1                                                                            2.38.1-5+deb12u2                      deb        �[38;2;119;119;119m�[0m                  
libmp3lame0                                                                          3.100-6                               deb        �[38;2;119;119;119m�[0m                  
libmpc3                                                                              1.3.1-1                               deb        �[38;2;119;119;119m�[0m                  
libmpfr6                                                                             4.2.0-1                               deb        �[38;2;119;119;119m�[0m                  
libmpg123-0                                                                          1.31.2-1+deb12u1                      deb        �[38;2;119;119;119m�[0m                  
libmysofa1                                                                           1.3.1~dfsg0-1                         deb        �[38;2;119;119;119m�[0m                  
libncurses-dev                                                                       6.4-4                                 deb        �[38;2;119;119;119m�[0m                  
libncurses5-dev                                                                      6.4-4                                 deb        �[38;2;119;119;119m�[0m                  
libncurses6                                                                          6.4-4                                 deb        �[38;2;119;119;119m�[0m                  
libncursesw5-dev                                                                     6.4-4                                 deb        �[38;2;119;119;119m�[0m                  
libncursesw6                                                                         6.4-4                                 deb        �[38;2;119;119;119m�[0m                  
libnettle8                                                                           3.8.1-2                               deb        �[38;2;119;119;119m�[0m                  
libnghttp2-14                                                                        1.52.0-1+deb12u2                      deb        �[38;2;119;119;119m�[0m                  
libnorm1                                                                             1.5.9+dfsg-2                          deb        �[38;2;119;119;119m�[0m                  
libnpth0                                                                             1.6-3                                 deb        �[38;2;119;119;119m�[0m                  
libnsl-dev                                                                           1.3.0-2                               deb        �[38;2;119;119;119m�[0m                  
libnsl2                                                                              1.3.0-2                               deb        �[38;2;119;119;119m�[0m                  
libnuma1                                                                             2.0.16-1                              deb        �[38;2;119;119;119m�[0m                  
libogg0                                                                              1.3.5-3                               deb        �[38;2;119;119;119m�[0m                  
libopenal-data                                                                       1:1.19.1-2                            deb        �[38;2;119;119;119m�[0m                  
libopenal1                                                                           1:1.19.1-2                            deb        �[38;2;119;119;119m�[0m                  
libopenexr-3-1-30                                                                    3.1.5-5                               deb        �[38;2;119;119;119m�[0m                  
libopenexr-dev                                                                       3.1.5-5                               deb        �[38;2;119;119;119m�[0m                  
libopenjp2-7                                                                         2.5.0-2                               deb        �[38;2;119;119;119m�[0m                  
libopenjp2-7-dev                                                                     2.5.0-2                               deb        �[38;2;119;119;119m�[0m                  
libopenmpt0                                                                          0.6.9-1                               deb        �[38;2;119;119;119m�[0m                  
libopus0                                                                             1.3.1-3                               deb        �[38;2;119;119;119m�[0m                  
libp11-kit0                                                                          0.24.1-2                              deb        �[38;2;119;119;119m�[0m                  
libpam-modules                                                                       1.5.2-6+deb12u1                       deb        �[38;2;119;119;119m�[0m                  
libpam-modules-bin                                                                   1.5.2-6+deb12u1                       deb        �[38;2;119;119;119m�[0m                  
libpam-runtime                                                                       1.5.2-6+deb12u1                       deb        �[38;2;119;119;119m�[0m                  
libpam0g                                                                             1.5.2-6+deb12u1                       deb        �[38;2;119;119;119m�[0m                  
libpango-1.0-0                                                                       1.50.12+ds-1                          deb        �[38;2;119;119;119m�[0m                  
libpangocairo-1.0-0                                                                  1.50.12+ds-1                          deb        �[38;2;119;119;119m�[0m                  
libpangoft2-1.0-0                                                                    1.50.12+ds-1                          deb        �[38;2;119;119;119m�[0m                  
libpciaccess0                                                                        0.17-2                                deb        �[38;2;119;119;119m�[0m                  
libpcre2-16-0                                                                        10.42-1                               deb        �[38;2;119;119;119m�[0m                  
libpcre2-32-0                                                                        10.42-1                               deb        �[38;2;119;119;119m�[0m                  
libpcre2-8-0                                                                         10.42-1                               deb        �[38;2;119;119;119m�[0m                  
libpcre2-dev                                                                         10.42-1                               deb        �[38;2;119;119;119m�[0m                  
libpcre2-posix3                                                                      10.42-1                               deb        �[38;2;119;119;119m�[0m                  
libperl5.36                                                                          5.36.0-7+deb12u1                      deb        �[38;2;119;119;119m�[0m                  
libpgm-5.3-0                                                                         5.3.128~dfsg-2                        deb        �[38;2;119;119;119m�[0m                  
libpixman-1-0                                                                        0.42.2-1                              deb        �[38;2;119;119;119m�[0m                  
libpixman-1-dev                                                                      0.42.2-1                              deb        �[38;2;119;119;119m�[0m                  
libpkgconf3                                                                          1.8.1-1                               deb        �[38;2;119;119;119m�[0m                  
libplacebo208                                                                        4.208.0-3                             deb        �[38;2;119;119;119m�[0m                  
libpng-dev                                                                           1.6.39-2                              deb        �[38;2;119;119;119m�[0m                  
libpng16-16                                                                          1.6.39-2                              deb        �[38;2;119;119;119m�[0m                  
libpocketsphinx3                                                                     0.8+5prealpha+1-15                    deb        �[38;2;119;119;119m�[0m                  
libpostproc56                                                                        7:5.1.6-0+deb12u1                     deb        �[38;2;119;119;119m�[0m                  
libpq-dev                                                                            15.8-0+deb12u1                        deb        �[38;2;119;119;119m�[0m                  
libpq5                                                                               15.8-0+deb12u1                        deb        �[38;2;119;119;119m�[0m                  
libproc2-0                                                                           2:4.0.2-3                             deb        �[38;2;119;119;119m�[0m                  
libpsl5                                                                              0.21.2-1                              deb        �[38;2;119;119;119m�[0m                  
libpthread-stubs0-dev                                                                0.4-1                                 deb        �[38;2;119;119;119m�[0m                  
libpulse0                                                                            16.1+dfsg1-2+b1                       deb        �[38;2;119;119;119m�[0m                  
libpython3-dev                                                                       3.11.2-1+b1                           deb        �[38;2;119;119;119m�[0m                  
libpython3-stdlib                                                                    3.11.2-1+b1                           deb        �[38;2;119;119;119m�[0m                  
libpython3.11                                                                        3.11.2-6+deb12u4                      deb        �[38;2;119;119;119m�[0m                  
libpython3.11-dev                                                                    3.11.2-6+deb12u4                      deb        �[38;2;119;119;119m�[0m                  
libpython3.11-minimal                                                                3.11.2-6+deb12u4                      deb        �[38;2;119;119;119m�[0m                  
libpython3.11-stdlib                                                                 3.11.2-6+deb12u4                      deb        �[38;2;119;119;119m�[0m                  
libquadmath0                                                                         12.2.0-14                             deb        �[38;2;119;119;119m�[0m                  
librabbitmq4                                                                         0.11.0-1+b1                           deb        �[38;2;119;119;119m�[0m                  
librav1e0                                                                            0.5.1-6                               deb        �[38;2;119;119;119m�[0m                  
libraw1394-11                                                                        2.1.2-2                               deb        �[38;2;119;119;119m�[0m                  
libreadline-dev                                                                      8.2-1.3                               deb        �[38;2;119;119;119m�[0m                  
libreadline8                                                                         8.2-1.3                               deb        �[38;2;119;119;119m�[0m                  
librist4                                                                             0.2.7+dfsg-1                          deb        �[38;2;119;119;119m�[0m                  
librosa                                                                              0.10.2.post1                          python     �[38;2;119;119;119m�[0m                  
librsvg2-2                                                                           2.54.7+dfsg-1~deb12u1                 deb        �[38;2;119;119;119m�[0m                  
librsvg2-common                                                                      2.54.7+dfsg-1~deb12u1                 deb        �[38;2;119;119;119m�[0m                  
librsvg2-dev                                                                         2.54.7+dfsg-1~deb12u1                 deb        �[38;2;119;119;119m�[0m                  
librtmp1                                                                             2.4+20151223.gitfa8646d.1-2+b2        deb        �[38;2;119;119;119m�[0m                  
librubberband2                                                                       3.1.2+dfsg0-1                         deb        �[38;2;119;119;119m�[0m                  
libsamplerate0                                                                       0.2.2-3                               deb        �[38;2;119;119;119m�[0m                  
libsasl2-2                                                                           2.1.28+dfsg-10                        deb        �[38;2;119;119;119m�[0m                  
libsasl2-modules-db                                                                  2.1.28+dfsg-10                        deb        �[38;2;119;119;119m�[0m                  
libsdl2-2.0-0                                                                        2.26.5+dfsg-1                         deb        �[38;2;119;119;119m�[0m                  
libseccomp2                                                                          2.5.4-1+deb12u1                       deb        �[38;2;119;119;119m�[0m                  
libselinux1                                                                          3.4-1+b6                              deb        �[38;2;119;119;119m�[0m                  
libselinux1-dev                                                                      3.4-1+b6                              deb        �[38;2;119;119;119m�[0m                  
libsemanage-common                                                                   3.4-1                                 deb        �[38;2;119;119;119m�[0m                  
libsemanage2                                                                         3.4-1+b5                              deb        �[38;2;119;119;119m�[0m                  
libsensors-config                                                                    1:3.6.0-7.1                           deb        �[38;2;119;119;119m�[0m                  
libsensors5                                                                          1:3.6.0-7.1                           deb        �[38;2;119;119;119m�[0m                  
libsepol-dev                                                                         3.4-2.1                               deb        �[38;2;119;119;119m�[0m                  
libsepol2                                                                            3.4-2.1                               deb        �[38;2;119;119;119m�[0m                  
libserd-0-0                                                                          0.30.16-1                             deb        �[38;2;119;119;119m�[0m                  
libserf-1-1                                                                          1.3.9-11                              deb        �[38;2;119;119;119m�[0m                  
libshine3                                                                            3.1.1-2                               deb        �[38;2;119;119;119m�[0m                  
libslang2                                                                            2.3.3-3                               deb        �[38;2;119;119;119m�[0m                  
libsm-dev                                                                            2:1.2.3-1                             deb        �[38;2;119;119;119m�[0m                  
libsm6                                                                               2:1.2.3-1                             deb        �[38;2;119;119;119m�[0m                  
libsmartcols1                                                                        2.38.1-5+deb12u2                      deb        �[38;2;119;119;119m�[0m                  
libsnappy-dev                                                                        1.1.9-3                               deb        �[38;2;119;119;119m�[0m                  
libsnappy1v5                                                                         1.1.9-3                               deb        �[38;2;119;119;119m�[0m                  
libsndfile1                                                                          1.2.0-1                               deb        �[38;2;119;119;119m�[0m                  
libsndio7.0                                                                          1.9.0-0.3+b2                          deb        �[38;2;119;119;119m�[0m                  
libsodium23                                                                          1.0.18-1                              deb        �[38;2;119;119;119m�[0m                  
libsord-0-0                                                                          0.16.14+git221008-1                   deb        �[38;2;119;119;119m�[0m                  
libsoxr0                                                                             0.1.3-4                               deb        �[38;2;119;119;119m�[0m                  
libspeex1                                                                            1.2.1-2                               deb        �[38;2;119;119;119m�[0m                  
libsphinxbase3                                                                       0.8+5prealpha+1-16                    deb        �[38;2;119;119;119m�[0m                  
libsqlite3-0                                                                         3.40.1-2+deb12u1                      deb        �[38;2;119;119;119m�[0m                  
libsqlite3-dev                                                                       3.40.1-2+deb12u1                      deb        �[38;2;119;119;119m�[0m                  
libsratom-0-0                                                                        0.6.14-1                              deb        �[38;2;119;119;119m�[0m                  
libsrt1.5-gnutls                                                                     1.5.1-1                               deb        �[38;2;119;119;119m�[0m                  
libss2                                                                               1.47.0-2                              deb        �[38;2;119;119;119m�[0m                  
libssh-gcrypt-4                                                                      0.10.6-0+deb12u1                      deb        �[38;2;119;119;119m�[0m                  
libssh2-1                                                                            1.10.0-3+b1                           deb        �[38;2;119;119;119m�[0m                  
libssl-dev                                                                           3.0.15-1~deb12u1                      deb        �[38;2;119;119;119m�[0m                  
libssl3                                                                              3.0.15-1~deb12u1                      deb        �[38;2;119;119;119m�[0m                  
libstdc++-12-dev                                                                     12.2.0-14                             deb        �[38;2;119;119;119m�[0m                  
libstdc++6                                                                           12.2.0-14                             deb        �[38;2;119;119;119m�[0m                  
libsvn1                                                                              1.14.2-4+b2                           deb        �[38;2;119;119;119m�[0m                  
libsvtav1enc1                                                                        1.4.1+dfsg-1                          deb        �[38;2;119;119;119m�[0m                  
libswresample4                                                                       7:5.1.6-0+deb12u1                     deb        �[38;2;119;119;119m�[0m                  
libswscale6                                                                          7:5.1.6-0+deb12u1                     deb        �[38;2;119;119;119m�[0m                  
libsystemd0                                                                          252.31-1~deb12u1                      deb        �[38;2;119;119;119m�[0m                  
libtasn1-6                                                                           4.19.0-2                              deb        �[38;2;119;119;119m�[0m                  
libtcl8.6                                                                            8.6.13+dfsg-2                         deb        �[38;2;119;119;119m�[0m                  
libthai-data                                                                         0.1.29-1                              deb        �[38;2;119;119;119m�[0m                  
libthai0                                                                             0.1.29-1                              deb        �[38;2;119;119;119m�[0m                  
libtheora0                                                                           1.1.1+dfsg.1-16.1+b1                  deb        �[38;2;119;119;119m�[0m                  
libtiff-dev                                                                          4.5.0-6+deb12u1                       deb        �[38;2;119;119;119m�[0m                  
libtiff6                                                                             4.5.0-6+deb12u1                       deb        �[38;2;119;119;119m�[0m                  
libtiffxx6                                                                           4.5.0-6+deb12u1                       deb        �[38;2;119;119;119m�[0m                  
libtinfo6                                                                            6.4-4                                 deb        �[38;2;119;119;119m�[0m                  
libtirpc-common                                                                      1.3.3+ds-1                            deb        �[38;2;119;119;119m�[0m                  
libtirpc-dev                                                                         1.3.3+ds-1                            deb        �[38;2;119;119;119m�[0m                  
libtirpc3                                                                            1.3.3+ds-1                            deb        �[38;2;119;119;119m�[0m                  
libtk8.6                                                                             8.6.13-2                              deb        �[38;2;119;119;119m�[0m                  
libtool                                                                              2.4.7-7~deb12u1                       deb        �[38;2;119;119;119m�[0m                  
libtsan2                                                                             12.2.0-14                             deb        �[38;2;119;119;119m�[0m                  
libtwolame0                                                                          0.4.0-2                               deb        �[38;2;119;119;119m�[0m                  
libubsan1                                                                            12.2.0-14                             deb        �[38;2;119;119;119m�[0m                  
libudev1                                                                             252.31-1~deb12u1                      deb        �[38;2;119;119;119m�[0m                  
libudfread0                                                                          1.1.2-1                               deb        �[38;2;119;119;119m�[0m                  
libunistring2                                                                        1.0-2                                 deb        �[38;2;119;119;119m�[0m                  
libusb-1.0-0                                                                         2:1.0.26-1                            deb        �[38;2;119;119;119m�[0m                  
libutf8proc2                                                                         2.8.0-1                               deb        �[38;2;119;119;119m�[0m                  
libuuid1                                                                             2.38.1-5+deb12u2                      deb        �[38;2;119;119;119m�[0m                  
libva-drm2                                                                           2.17.0-1                              deb        �[38;2;119;119;119m�[0m                  
libva-x11-2                                                                          2.17.0-1                              deb        �[38;2;119;119;119m�[0m                  
libva2                                                                               2.17.0-1                              deb        �[38;2;119;119;119m�[0m                  
libvdpau1                                                                            1.5-2                                 deb        �[38;2;119;119;119m�[0m                  
libvidstab1.1                                                                        1.1.0-2+b1                            deb        �[38;2;119;119;119m�[0m                  
libvorbis0a                                                                          1.3.7-1                               deb        �[38;2;119;119;119m�[0m                  
libvorbisenc2                                                                        1.3.7-1                               deb        �[38;2;119;119;119m�[0m                  
libvorbisfile3                                                                       1.3.7-1                               deb        �[38;2;119;119;119m�[0m                  
libvpx7                                                                              1.12.0-1+deb12u3                      deb        �[38;2;119;119;119m�[0m                  
libvulkan1                                                                           1.3.239.0-1                           deb        �[38;2;119;119;119m�[0m                  
libwayland-client0                                                                   1.21.0-1                              deb        �[38;2;119;119;119m�[0m                  
libwayland-cursor0                                                                   1.21.0-1                              deb        �[38;2;119;119;119m�[0m                  
libwayland-egl1                                                                      1.21.0-1                              deb        �[38;2;119;119;119m�[0m                  
libwayland-server0                                                                   1.21.0-1                              deb        �[38;2;119;119;119m�[0m                  
libwebp-dev                                                                          1.2.4-0.2+deb12u1                     deb        �[38;2;119;119;119m�[0m                  
libwebp7                                                                             1.2.4-0.2+deb12u1                     deb        �[38;2;119;119;119m�[0m                  
libwebpdemux2                                                                        1.2.4-0.2+deb12u1                     deb        �[38;2;119;119;119m�[0m                  
libwebpmux3                                                                          1.2.4-0.2+deb12u1                     deb        �[38;2;119;119;119m�[0m                  
libwmf-0.2-7                                                                         0.2.12-5.1                            deb        �[38;2;119;119;119m�[0m                  
libwmf-dev                                                                           0.2.12-5.1                            deb        �[38;2;119;119;119m�[0m                  
libwmflite-0.2-7                                                                     0.2.12-5.1                            deb        �[38;2;119;119;119m�[0m                  
libx11-6                                                                             2:1.8.4-2+deb12u2                     deb        �[38;2;119;119;119m�[0m                  
libx11-data                                                                          2:1.8.4-2+deb12u2                     deb        �[38;2;119;119;119m�[0m                  
libx11-dev                                                                           2:1.8.4-2+deb12u2                     deb        �[38;2;119;119;119m�[0m                  
libx11-xcb1                                                                          2:1.8.4-2+deb12u2                     deb        �[38;2;119;119;119m�[0m                  
libx264-164                                                                          2:0.164.3095+gitbaee400-3             deb        �[38;2;119;119;119m�[0m                  
libx265-199                                                                          3.5-2+b1                              deb        �[38;2;119;119;119m�[0m                  
libxau-dev                                                                           1:1.0.9-1                             deb        �[38;2;119;119;119m�[0m                  
libxau6                                                                              1:1.0.9-1                             deb        �[38;2;119;119;119m�[0m                  
libxcb-dri2-0                                                                        1.15-1                                deb        �[38;2;119;119;119m�[0m                  
libxcb-dri3-0                                                                        1.15-1                                deb        �[38;2;119;119;119m�[0m                  
libxcb-glx0                                                                          1.15-1                                deb        �[38;2;119;119;119m�[0m                  
libxcb-present0                                                                      1.15-1                                deb        �[38;2;119;119;119m�[0m                  
libxcb-randr0                                                                        1.15-1                                deb        �[38;2;119;119;119m�[0m                  
libxcb-render0                                                                       1.15-1                                deb        �[38;2;119;119;119m�[0m                  
libxcb-render0-dev                                                                   1.15-1                                deb        �[38;2;119;119;119m�[0m                  
libxcb-shape0                                                                        1.15-1                                deb        �[38;2;119;119;119m�[0m                  
libxcb-shm0                                                                          1.15-1                                deb        �[38;2;119;119;119m�[0m                  
libxcb-shm0-dev                                                                      1.15-1                                deb        �[38;2;119;119;119m�[0m                  
libxcb-sync1                                                                         1.15-1                                deb        �[38;2;119;119;119m�[0m                  
libxcb-xfixes0                                                                       1.15-1                                deb        �[38;2;119;119;119m�[0m                  
libxcb1                                                                              1.15-1                                deb        �[38;2;119;119;119m�[0m                  
libxcb1-dev                                                                          1.15-1                                deb        �[38;2;119;119;119m�[0m                  
libxcursor1                                                                          1:1.2.1-1                             deb        �[38;2;119;119;119m�[0m                  
libxdmcp-dev                                                                         1:1.1.2-3                             deb        �[38;2;119;119;119m�[0m                  
libxdmcp6                                                                            1:1.1.2-3                             deb        �[38;2;119;119;119m�[0m                  
libxext-dev                                                                          2:1.3.4-1+b1                          deb        �[38;2;119;119;119m�[0m                  
libxext6                                                                             2:1.3.4-1+b1                          deb        �[38;2;119;119;119m�[0m                  
libxfixes3                                                                           1:6.0.0-2                             deb        �[38;2;119;119;119m�[0m                  
libxft-dev                                                                           2.3.6-1                               deb        �[38;2;119;119;119m�[0m                  
libxft2                                                                              2.3.6-1                               deb        �[38;2;119;119;119m�[0m                  
libxi6                                                                               2:1.8-1+b1                            deb        �[38;2;119;119;119m�[0m                  
libxkbcommon0                                                                        1.5.0-1                               deb        �[38;2;119;119;119m�[0m                  
libxml2                                                                              2.9.14+dfsg-1.3~deb12u1               deb        �[38;2;119;119;119m�[0m                  
libxml2-dev                                                                          2.9.14+dfsg-1.3~deb12u1               deb        �[38;2;119;119;119m�[0m                  
libxrandr2                                                                           2:1.5.2-2+b1                          deb        �[38;2;119;119;119m�[0m                  
libxrender-dev                                                                       1:0.9.10-1.1                          deb        �[38;2;119;119;119m�[0m                  
libxrender1                                                                          1:0.9.10-1.1                          deb        �[38;2;119;119;119m�[0m                  
libxshmfence1                                                                        1.3-1                                 deb        �[38;2;119;119;119m�[0m                  
libxslt1-dev                                                                         1.1.35-1                              deb        �[38;2;119;119;119m�[0m                  
libxslt1.1                                                                           1.1.35-1                              deb        �[38;2;119;119;119m�[0m                  
libxss-dev                                                                           1:1.2.3-1                             deb        �[38;2;119;119;119m�[0m                  
libxss1                                                                              1:1.2.3-1                             deb        �[38;2;119;119;119m�[0m                  
libxt-dev                                                                            1:1.2.1-1.1                           deb        �[38;2;119;119;119m�[0m                  
libxt6                                                                               1:1.2.1-1.1                           deb        �[38;2;119;119;119m�[0m                  
libxv1                                                                               2:1.0.11-1.1                          deb        �[38;2;119;119;119m�[0m                  
libxvidcore4                                                                         2:1.3.7-1                             deb        �[38;2;119;119;119m�[0m                  
libxxf86vm1                                                                          1:1.1.4-1+b2                          deb        �[38;2;119;119;119m�[0m                  
libxxhash0                                                                           0.8.1-1                               deb        �[38;2;119;119;119m�[0m                  
libyaml-0-2                                                                          0.2.5-1                               deb        �[38;2;119;119;119m�[0m                  
libyaml-dev                                                                          0.2.5-1                               deb        �[38;2;119;119;119m�[0m                  
libz3-4                                                                              4.8.12-3.1                            deb        �[38;2;119;119;119m�[0m                  
libzimg2                                                                             3.0.4+ds1-1                           deb        �[38;2;119;119;119m�[0m                  
libzmq5                                                                              4.3.4-6                               deb        �[38;2;119;119;119m�[0m                  
libzstd-dev                                                                          1.5.4+dfsg2-5                         deb        �[38;2;119;119;119m�[0m                  
libzstd1                                                                             1.5.4+dfsg2-5                         deb        �[38;2;119;119;119m�[0m                  
libzvbi-common                                                                       0.2.41-1                              deb        �[38;2;119;119;119m�[0m                  
libzvbi0                                                                             0.2.41-1                              deb        �[38;2;119;119;119m�[0m                  
linux-libc-dev                                                                       6.1.115-1                             deb        �[38;2;119;119;119m�[0m                  
llvmlite                                                                             0.43.0                                python     �[38;2;119;119;119m�[0m                  
login                                                                                1:4.13+dfsg1-1+b1                     deb        �[38;2;119;119;119m�[0m                  
logsave                                                                              1.47.0-2                              deb        �[38;2;119;119;119m�[0m                  
m4                                                                                   1.4.19-3                              deb        �[38;2;119;119;119m�[0m                  
make                                                                                 4.3-4.1                               deb        �[38;2;119;119;119m�[0m                  
mariadb-common                                                                       1:10.11.6-0+deb12u1                   deb        �[38;2;119;119;119m�[0m                  
markdown                                                                             3.7                                   python     �[38;2;119;119;119m�[0m                  
markdown-it-py                                                                       3.0.0                                 python     �[38;2;119;119;119m�[0m                  
markupsafe                                                                           2.1.5                                 python     �[38;2;119;119;119m�[0m                  
mawk                                                                                 1.3.4.20200120-3.1                    deb        �[38;2;119;119;119m�[0m                  
mdurl                                                                                0.1.2                                 python     �[38;2;119;119;119m�[0m                  
media-types                                                                          10.0.0                                deb        �[38;2;119;119;119m�[0m                  
mercurial                                                                            6.3.2                                 python     �[38;2;119;119;119m�[0m                  
mercurial                                                                            6.3.2-1                               deb        �[38;2;119;119;119m�[0m                  
mercurial-common                                                                     6.3.2-1                               deb        �[38;2;119;119;119m�[0m                  
ml-dtypes                                                                            0.4.1                                 python     �[38;2;119;119;119m�[0m                  
mlcroissant                                                                          1.0.12                                python     �[38;2;119;119;119m�[0m                  
mmh3                                                                                 5.0.1                                 python     �[38;2;119;119;119m�[0m                  
mock                                                                                 5.1.0                                 python     �[38;2;119;119;119m�[0m                  
more-itertools                                                                       10.3.0                                python     �[38;2;119;119;119m�[0m                  
more-itertools                                                                       10.5.0                                python     �[38;2;119;119;119m�[0m                  
mount                                                                                2.38.1-5+deb12u2                      deb        �[38;2;119;119;119m�[0m                  
mpmath                                                                               1.3.0                                 python     �[38;2;119;119;119m�[0m                  
msgpack                                                                              1.1.0                                 python     �[38;2;119;119;119m�[0m                  
multidict                                                                            6.1.0                                 python     �[38;2;119;119;119m�[0m                  
my-test-package                                                                      1.0                                   python     �[38;2;119;119;119m�[0m                  
mysql-common                                                                         5.8+1.1.0                             deb        �[38;2;119;119;119m�[0m                  
namex                                                                                0.0.8                                 python     �[38;2;119;119;119m�[0m                  
ncurses-base                                                                         6.4-4                                 deb        �[38;2;119;119;119m�[0m                  
ncurses-bin                                                                          6.4-4                                 deb        �[38;2;119;119;119m�[0m                  
netbase                                                                              6.4                                   deb        �[38;2;119;119;119m�[0m                  
networkx                                                                             3.4.2                                 python     �[38;2;119;119;119m�[0m                  
nltk                                                                                 3.9.1                                 python     �[38;2;119;119;119m�[0m                  
nose                                                                                 1.3.7                                 python     �[38;2;119;119;119m�[0m                  
numba                                                                                0.60.0                                python     �[38;2;119;119;119m�[0m                  
numpy                                                                                1.23.5                                python     �[38;2;119;119;119m�[0m                  
nvidia-cublas-cu12                                                                   12.4.5.8                              python     �[38;2;119;119;119m�[0m                  
nvidia-cuda-cupti-cu12                                                               12.4.127                              python     �[38;2;119;119;119m�[0m                  
nvidia-cuda-nvrtc-cu12                                                               12.4.127                              python     �[38;2;119;119;119m�[0m                  
nvidia-cuda-runtime-cu12                                                             12.4.127                              python     �[38;2;119;119;119m�[0m                  
nvidia-cudnn-cu12                                                                    9.1.0.70                              python     �[38;2;119;119;119m�[0m                  
nvidia-cufft-cu12                                                                    11.2.1.3                              python     �[38;2;119;119;119m�[0m                  
nvidia-curand-cu12                                                                   10.3.5.147                            python     �[38;2;119;119;119m�[0m                  
nvidia-cusolver-cu12                                                                 11.6.1.9                              python     �[38;2;119;119;119m�[0m                  
nvidia-cusparse-cu12                                                                 12.3.1.170                            python     �[38;2;119;119;119m�[0m                  
nvidia-nccl-cu12                                                                     2.21.5                                python     �[38;2;119;119;119m�[0m                  
nvidia-nvjitlink-cu12                                                                12.4.127                              python     �[38;2;119;119;119m�[0m                  
nvidia-nvtx-cu12                                                                     12.4.127                              python     �[38;2;119;119;119m�[0m                  
oauth2client                                                                         4.1.3                                 python     �[38;2;119;119;119m�[0m                  
oauthlib                                                                             3.2.2                                 python     �[38;2;119;119;119m�[0m                  
objsize                                                                              0.7.0                                 python     �[38;2;119;119;119m�[0m                  
ocl-icd-libopencl1                                                                   2.3.1-1                               deb        �[38;2;119;119;119m�[0m                  
openssh-client                                                                       1:9.2p1-2+deb12u3                     deb        �[38;2;119;119;119m�[0m                  
openssl                                                                              3.0.15-1~deb12u1                      deb        �[38;2;119;119;119m�[0m                  
opentelemetry-api                                                                    1.27.0                                python     �[38;2;119;119;119m�[0m                  
opentelemetry-sdk                                                                    1.27.0                                python     �[38;2;119;119;119m�[0m                  
opentelemetry-semantic-conventions                                                   0.48b0                                python     �[38;2;119;119;119m�[0m                  
opt-einsum                                                                           3.4.0                                 python     �[38;2;119;119;119m�[0m                  
optree                                                                               0.13.1                                python     �[38;2;119;119;119m�[0m                  
orjson                                                                               3.10.7                                python     �[38;2;119;119;119m�[0m                  
overrides                                                                            7.7.0                                 python     �[38;2;119;119;119m�[0m                  
packaging                                                                            24.1                                  python     �[38;2;119;119;119m�[0m                  
packaging                                                                            24.2                                  python     �[38;2;119;119;119m�[0m                  
pandas                                                                               2.1.4                                 python     �[38;2;119;119;119m�[0m                  
pandas-gbq                                                                           0.26.1                                python     �[38;2;119;119;119m�[0m                  
pandas-stubs                                                                         2.2.3.241126                          python     �[38;2;119;119;119m�[0m                  
parameterized                                                                        0.9.0                                 python     �[38;2;119;119;119m�[0m                  
passwd                                                                               1:4.13+dfsg1-1+b1                     deb        �[38;2;119;119;119m�[0m                  
patch                                                                                2.7.6-7                               deb        �[38;2;119;119;119m�[0m                  
perl                                                                                 5.36.0-7+deb12u1                      deb        �[38;2;119;119;119m�[0m                  
perl-base                                                                            5.36.0-7+deb12u1                      deb        �[38;2;119;119;119m�[0m                  
perl-modules-5.36                                                                    5.36.0-7+deb12u1                      deb        �[38;2;119;119;119m�[0m                  
pillow                                                                               11.1.0                                python     �[38;2;119;119;119m�[0m                  
pinentry-curses                                                                      1.2.1-1                               deb        �[38;2;119;119;119m�[0m                  
pip                                                                                  23.0.1                                python     �[38;2;119;119;119m�[0m                  
pip                                                                                  24.1.2                                python     �[38;2;119;119;119m�[0m                  
pip                                                                                  24.3.1                                python     �[38;2;119;119;119m�[0m                  
pkg-config                                                                           1.8.1-1                               deb        �[38;2;119;119;119m�[0m                  
pkgconf                                                                              1.8.1-1                               deb        �[38;2;119;119;119m�[0m                  
pkgconf-bin                                                                          1.8.1-1                               deb        �[38;2;119;119;119m�[0m                  
platformdirs                                                                         4.2.2                                 python     �[38;2;119;119;119m�[0m                  
platformdirs                                                                         4.3.6                                 python     �[38;2;119;119;119m�[0m                  
pluggy                                                                               1.5.0                                 python     �[38;2;119;119;119m�[0m                  
ply                                                                                  3.11                                  python     �[38;2;119;119;119m�[0m                  
pooch                                                                                1.8.2                                 python     �[38;2;119;119;119m�[0m                  
procps                                                                               2:4.0.2-3                             deb        �[38;2;119;119;119m�[0m                  
progressbar                                                                          2.5                                   python     �[38;2;119;119;119m�[0m                  
promise                                                                              2.3                                   python     �[38;2;119;119;119m�[0m                  
propcache                                                                            0.2.1                                 python     �[38;2;119;119;119m�[0m                  
proto-plus                                                                           1.24.0                                python     �[38;2;119;119;119m�[0m                  
protobuf                                                                             3.20.3                                python     �[38;2;119;119;119m�[0m                  
psutil                                                                               6.1.1                                 python     �[38;2;119;119;119m�[0m                  
psycopg2-binary                                                                      2.9.9                                 python     �[38;2;119;119;119m�[0m                  
pyarrow                                                                              16.1.0                                python     �[38;2;119;119;119m�[0m                  
pyarrow-hotfix                                                                       0.6                                   python     �[38;2;119;119;119m�[0m                  
pyasn1                                                                               0.6.1                                 python     �[38;2;119;119;119m�[0m                  
pyasn1-modules                                                                       0.4.1                                 python     �[38;2;119;119;119m�[0m                  
pycparser                                                                            2.22                                  python     �[38;2;119;119;119m(+1 duplicate)�[0m    
pydantic                                                                             2.9.2                                 python     �[38;2;119;119;119m�[0m                  
pydantic-core                                                                        2.23.4                                python     �[38;2;119;119;119m�[0m                  
pydata-google-auth                                                                   1.9.0                                 python     �[38;2;119;119;119m�[0m                  
pydot                                                                                1.4.2                                 python     �[38;2;119;119;119m�[0m                  
pygments                                                                             2.19.1                                python     �[38;2;119;119;119m�[0m                  
pyhamcrest                                                                           2.1.0                                 python     �[38;2;119;119;119m�[0m                  
pymongo                                                                              4.10.1                                python     �[38;2;119;119;119m�[0m                  
pymysql                                                                              1.1.1                                 python     �[38;2;119;119;119m�[0m                  
pyopenssl                                                                            24.2.1                                python     �[38;2;119;119;119m�[0m                  
pyparsing                                                                            3.2.1                                 python     �[38;2;119;119;119m�[0m                  
pyproject-hooks                                                                      1.2.0                                 python     �[38;2;119;119;119m�[0m                  
pytest                                                                               7.4.4                                 python     �[38;2;119;119;119m�[0m                  
pytest-timeout                                                                       2.3.1                                 python     �[38;2;119;119;119m�[0m                  
pytest-xdist                                                                         3.6.1                                 python     �[38;2;119;119;119m�[0m                  
python                                                                               3.10.15                               binary     �[38;2;119;119;119m�[0m                  
python                                                                               3.11.9                                binary     �[38;2;119;119;119m�[0m                  
python-dateutil                                                                      2.9.0.post0                           python     �[38;2;119;119;119m�[0m                  
python-is-python3                                                                    3.11.2-1+deb12u1                      deb        �[38;2;119;119;119m�[0m                  
python-snappy                                                                        0.7.3                                 python     �[38;2;119;119;119m�[0m                  
python3                                                                              3.11.2-1+b1                           deb        �[38;2;119;119;119m�[0m                  
python3-dev                                                                          3.11.2-1+b1                           deb        �[38;2;119;119;119m�[0m                  
python3-distutils                                                                    3.11.2-3                              deb        �[38;2;119;119;119m�[0m                  
python3-lib2to3                                                                      3.11.2-3                              deb        �[38;2;119;119;119m�[0m                  
python3-minimal                                                                      3.11.2-1+b1                           deb        �[38;2;119;119;119m�[0m                  
python3-pip                                                                          23.0.1+dfsg-1                         deb        �[38;2;119;119;119m�[0m                  
python3-pip-whl                                                                      23.0.1+dfsg-1                         deb        �[38;2;119;119;119m�[0m                  
python3-pkg-resources                                                                66.1.1-1                              deb        �[38;2;119;119;119m�[0m                  
python3-setuptools                                                                   66.1.1-1                              deb        �[38;2;119;119;119m�[0m                  
python3-setuptools-whl                                                               66.1.1-1                              deb        �[38;2;119;119;119m�[0m                  
python3-venv                                                                         3.11.2-1+b1                           deb        �[38;2;119;119;119m�[0m                  
python3-wheel                                                                        0.38.4-2                              deb        �[38;2;119;119;119m�[0m                  
python3.11                                                                           3.11.2-6+deb12u4                      deb        �[38;2;119;119;119m�[0m                  
python3.11-dev                                                                       3.11.2-6+deb12u4                      deb        �[38;2;119;119;119m�[0m                  
python3.11-minimal                                                                   3.11.2-6+deb12u4                      deb        �[38;2;119;119;119m�[0m                  
python3.11-venv                                                                      3.11.2-6+deb12u4                      deb        �[38;2;119;119;119m�[0m                  
pytz                                                                                 2024.2                                python     �[38;2;119;119;119m�[0m                  
pyyaml                                                                               6.0.2                                 python     �[38;2;119;119;119m�[0m                  
rdflib                                                                               7.1.2                                 python     �[38;2;119;119;119m�[0m                  
readline-common                                                                      8.2-1.3                               deb        �[38;2;119;119;119m�[0m                  
redis                                                                                5.1.1                                 python     �[38;2;119;119;119m�[0m                  
referencing                                                                          0.35.1                                python     �[38;2;119;119;119m�[0m                  
regex                                                                                2024.9.11                             python     �[38;2;119;119;119m�[0m                  
requests                                                                             2.32.3                                python     �[38;2;119;119;119m�[0m                  
requests-mock                                                                        1.12.1                                python     �[38;2;119;119;119m�[0m                  
requests-oauthlib                                                                    2.0.0                                 python     �[38;2;119;119;119m�[0m                  
rich                                                                                 13.9.4                                python     �[38;2;119;119;119m�[0m                  
rpcsvc-proto                                                                         1.4.3-1                               deb        �[38;2;119;119;119m�[0m                  
rpds-py                                                                              0.20.0                                python     �[38;2;119;119;119m�[0m                  
rsa                                                                                  4.9                                   python     �[38;2;119;119;119m�[0m                  
safetensors                                                                          0.5.2                                 python     �[38;2;119;119;119m�[0m                  
scikit-learn                                                                         1.5.2                                 python     �[38;2;119;119;119m�[0m                  
scipy                                                                                1.14.1                                python     �[38;2;119;119;119m�[0m                  
secretstorage                                                                        3.3.3                                 python     �[38;2;119;119;119m�[0m                  
sed                                                                                  4.9-1                                 deb        �[38;2;119;119;119m�[0m                  
sensible-utils                                                                       0.0.17+nmu1                           deb        �[38;2;119;119;119m�[0m                  
sentry-sdk                                                                           2.19.2                                python     �[38;2;119;119;119m�[0m                  
setproctitle                                                                         1.3.4                                 python     �[38;2;119;119;119m�[0m                  
setuptools                                                                           66.1.1                                python     �[38;2;119;119;119m�[0m                  
setuptools                                                                           70.3.0                                python     �[38;2;119;119;119m�[0m                  
setuptools                                                                           75.6.0                                python     �[38;2;119;119;119m�[0m                  
shapely                                                                              2.0.6                                 python     �[38;2;119;119;119m�[0m                  
shared-mime-info                                                                     2.2-1                                 deb        �[38;2;119;119;119m�[0m                  
simple-parsing                                                                       0.1.6                                 python     �[38;2;119;119;119m�[0m                  
six                                                                                  1.16.0                                python     �[38;2;119;119;119m�[0m                  
smmap                                                                                5.0.2                                 python     �[38;2;119;119;119m�[0m                  
sortedcontainers                                                                     2.4.0                                 python     �[38;2;119;119;119m�[0m                  
soundfile                                                                            0.13.0                                python     �[38;2;119;119;119m�[0m                  
soupsieve                                                                            2.6                                   python     �[38;2;119;119;119m�[0m                  
soxr                                                                                 0.5.0.post1                           python     �[38;2;119;119;119m�[0m                  
sq                                                                                   0.27.0-2+b1                           deb        �[38;2;119;119;119m�[0m                  
sqlalchemy                                                                           2.0.35                                python     �[38;2;119;119;119m�[0m                  
sqlparse                                                                             0.5.1                                 python     �[38;2;119;119;119m�[0m                  
stdlib                                                                               go1.22.4                              go-module  �[38;2;119;119;119m�[0m                  
stdlib                                                                               go1.23.2                              go-module  �[38;2;119;119;119m�[0m                  
stdlib                                                                               go1.23.4                              go-module  �[38;2;119;119;119m�[0m                  
subversion                                                                           1.14.2-4+b2                           deb        �[38;2;119;119;119m�[0m                  
sympy                                                                                1.13.1                                python     �[38;2;119;119;119m�[0m                  
sysvinit-utils                                                                       3.06-4                                deb        �[38;2;119;119;119m�[0m                  
tar                                                                                  1.34+dfsg-1.2+deb12u1                 deb        �[38;2;119;119;119m�[0m                  
tcl                                                                                  8.6.13                                deb        �[38;2;119;119;119m�[0m                  
tcl-dev                                                                              8.6.13                                deb        �[38;2;119;119;119m�[0m                  
tcl8.6                                                                               8.6.13+dfsg-2                         deb        �[38;2;119;119;119m�[0m                  
tcl8.6-dev                                                                           8.6.13+dfsg-2                         deb        �[38;2;119;119;119m�[0m                  
tenacity                                                                             8.5.0                                 python     �[38;2;119;119;119m�[0m                  
tensorboard                                                                          2.17.1                                python     �[38;2;119;119;119m�[0m                  
tensorboard-data-server                                                              0.7.2                                 python     �[38;2;119;119;119m�[0m                  
tensorflow                                                                           2.17.1                                python     �[38;2;119;119;119m�[0m                  
tensorflow-datasets                                                                  4.9.7                                 python     �[38;2;119;119;119m�[0m                  
tensorflow-hub                                                                       0.16.1                                python     �[38;2;119;119;119m�[0m                  
tensorflow-io-gcs-filesystem                                                         0.37.1                                python     �[38;2;119;119;119m�[0m                  
tensorflow-metadata                                                                  1.16.1                                python     �[38;2;119;119;119m�[0m                  
termcolor                                                                            2.5.0                                 python     �[38;2;119;119;119m�[0m                  
testcontainers                                                                       3.7.1                                 python     �[38;2;119;119;119m�[0m                  
tf-keras                                                                             2.17.0                                python     �[38;2;119;119;119m�[0m                  
threadpoolctl                                                                        3.5.0                                 python     �[38;2;119;119;119m�[0m                  
tk                                                                                   8.6.13                                deb        �[38;2;119;119;119m�[0m                  
tk-dev                                                                               8.6.13                                deb        �[38;2;119;119;119m�[0m                  
tk8.6                                                                                8.6.13-2                              deb        �[38;2;119;119;119m�[0m                  
tk8.6-dev                                                                            8.6.13-2                              deb        �[38;2;119;119;119m�[0m                  
tokenizers                                                                           0.21.0                                python     �[38;2;119;119;119m�[0m                  
toml                                                                                 0.10.2                                python     �[38;2;119;119;119m�[0m                  
tomli                                                                                2.0.1                                 python     �[38;2;119;119;119m�[0m                  
tomli                                                                                2.0.2                                 python     �[38;2;119;119;119m�[0m                  
torch                                                                                2.5.1                                 python     �[38;2;119;119;119m�[0m                  
torchlibrosa                                                                         0.1.0                                 python     �[38;2;119;119;119m�[0m                  
torchvision                                                                          0.20.1                                python     �[38;2;119;119;119m�[0m                  
tqdm                                                                                 4.66.5                                python     �[38;2;119;119;119m�[0m                  
transformers                                                                         4.48.0                                python     �[38;2;119;119;119m�[0m                  
triton                                                                               3.1.0                                 python     �[38;2;119;119;119m�[0m                  
typeguard                                                                            4.3.0                                 python     �[38;2;119;119;119m�[0m                  
types-pytz                                                                           2024.2.0.20241221                     python     �[38;2;119;119;119m�[0m                  
typing-extensions                                                                    4.12.2                                python     �[38;2;119;119;119m(+1 duplicate)�[0m    
tzdata                                                                               2024.2                                python     �[38;2;119;119;119m�[0m                  
tzdata                                                                               2024a-0+deb12u1                       deb        �[38;2;119;119;119m�[0m                  
ucf                                                                                  3.0043+nmu1                           deb        �[38;2;119;119;119m�[0m                  
unzip                                                                                6.0-28                                deb        �[38;2;119;119;119m�[0m                  
uritemplate                                                                          4.1.1                                 python     �[38;2;119;119;119m�[0m                  
urllib3                                                                              2.2.3                                 python     �[38;2;119;119;119m�[0m                  
usr-is-merged                                                                        37~deb12u1                            deb        �[38;2;119;119;119m�[0m                  
util-linux                                                                           2.38.1-5+deb12u2                      deb        �[38;2;119;119;119m�[0m                  
util-linux-extra                                                                     2.38.1-5+deb12u2                      deb        �[38;2;119;119;119m�[0m                  
uuid-dev                                                                             2.38.1-5+deb12u2                      deb        �[38;2;119;119;119m�[0m                  
wandb                                                                                0.19.2                                python     �[38;2;119;119;119m�[0m                  
wcwidth                                                                              0.2.13                                python     �[38;2;119;119;119m�[0m                  
webdataset                                                                           0.2.100                               python     �[38;2;119;119;119m�[0m                  
werkzeug                                                                             3.1.3                                 python     �[38;2;119;119;119m�[0m                  
wget                                                                                 1.21.3-1+b2                           deb        �[38;2;119;119;119m�[0m                  
wget                                                                                 3.2                                   python     �[38;2;119;119;119m�[0m                  
wheel                                                                                0.38.4                                python     �[38;2;119;119;119m�[0m                  
wheel                                                                                0.43.0                                python     �[38;2;119;119;119m�[0m                  
wheel                                                                                0.44.0                                python     �[38;2;119;119;119m�[0m                  
wheel                                                                                0.45.0                                python     �[38;2;119;119;119m�[0m                  
wrapt                                                                                1.16.0                                python     �[38;2;119;119;119m�[0m                  
x11-common                                                                           1:7.7+23                              deb        �[38;2;119;119;119m�[0m                  
x11proto-core-dev                                                                    2022.1-1                              deb        �[38;2;119;119;119m�[0m                  
x11proto-dev                                                                         2022.1-1                              deb        �[38;2;119;119;119m�[0m                  
xkb-data                                                                             2.35.1-1                              deb        �[38;2;119;119;119m�[0m                  
xorg-sgml-doctools                                                                   1:1.11-1.1                            deb        �[38;2;119;119;119m�[0m                  
xtrans-dev                                                                           1.4.0-1                               deb        �[38;2;119;119;119m�[0m                  
xz-utils                                                                             5.4.1-0.2                             deb        �[38;2;119;119;119m�[0m                  
yarl                                                                                 1.18.3                                python     �[38;2;119;119;119m�[0m                  
zipp                                                                                 3.19.2                                python     �[38;2;119;119;119m�[0m                  
zipp                                                                                 3.20.2                                python     �[38;2;119;119;119m�[0m                  
zlib1g                                                                               1:1.2.13.dfsg-1                       deb        �[38;2;119;119;119m�[0m                  
zlib1g-dev                                                                           1:1.2.13.dfsg-1                       deb        �[38;2;119;119;119m�[0m                  
zstandard                                                                            0.23.0                                python     �[38;2;119;119;119m�[0m                  

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants