From f693817d4c47dae5f9d6f341ec597cc54403c538 Mon Sep 17 00:00:00 2001 From: "Reid D. McKenzie" Date: Fri, 29 Aug 2025 02:18:12 -0600 Subject: [PATCH 1/9] Overhauling from other repos --- .bazelrc | 32 +- MODULE.bazel | 97 +----- WORKSPACE | 319 ------------------ bazel/BUILD.bazel | 6 + bazel/defaults.bazelrc | 237 +++++++++++++ bazel/include/BUILD.bazel | 0 bazel/include/llvm.MODULE.bazel | 127 +++++++ bazel/include/musl.MODULE.bazel | 6 + bazel/include/oci.MODULE.bazel | 25 ++ bazel/include/release.MODULE.bazel | 5 + bazel/include/rules-python.MODULE.bazel | 49 +++ bazel/include/rust.MODULE.bazel | 212 ++++++++++++ bazel/include/telemetry.MODULE.bazel | 3 + bazel/patches/BUILD.bazel | 0 bazel/patches/toolchains_llvm.patch | 80 +++++ bazel/platforms/BUILD.bazel | 30 ++ bazel/platforms/config/BUILD.bazel | 31 ++ bazel/platforms/config/defs.bzl | 19 ++ bazel/platforms/linkers/BUILD.bazel | 19 ++ bazel/platforms/toolchains/BUILD.bazel | 27 ++ bazel/platforms/toolchains/defs.bzl | 19 ++ bazel/release/BUILD.bazel | 17 + bazel/release/create_release.sh | 21 ++ bazel/release/hashes.bzl | 76 +++++ bazel/release/release.bzl | 26 ++ bazel/release/sha256sum/BUILD.bazel | 17 + bazel/release/sha256sum/main.go | 32 ++ bazel/rust/BUILD.bazel | 0 bazel/rust/README.md | 21 ++ bazel/rust/defs.bzl | 110 ++++++ bazel/rust/multi_platform_rust_binaries.bzl | 121 +++++++ examples/multi_version/BUILD.bazel | 4 +- examples/py_binary/BUILD.bazel | 2 +- examples/py_pex_binary/BUILD.bazel | 2 +- examples/py_venv/BUILD.bazel | 4 +- examples/pytest/BUILD.bazel | 4 +- internal_deps.bzl | 136 -------- internal_python_deps.bzl | 23 -- py/private/BUILD.bazel | 3 +- py/tests/external-deps/BUILD.bazel | 4 +- py/tests/external-deps/custom-macro/macro.bzl | 2 +- py/tests/py-binary/BUILD.bazel | 4 +- py/tests/py-external-venv/BUILD.bazel | 2 +- py/tests/py-internal-venv/BUILD.bazel | 2 +- py/tests/py-pex-binary/BUILD.bazel | 4 +- py/tests/py_image_layer/BUILD.bazel | 2 +- py/tests/py_image_layer/asserts.bzl | 2 +- py/tests/py_venv_image_layer/BUILD.bazel | 2 +- py/tests/py_venv_image_layer/asserts.bzl | 2 +- py/tools/py/BUILD.bazel | 29 +- py/tools/unpack_bin/BUILD.bazel | 12 +- py/tools/venv_bin/BUILD.bazel | 12 +- py/tools/venv_shim/BUILD.bazel | 11 +- 53 files changed, 1426 insertions(+), 626 deletions(-) delete mode 100644 WORKSPACE create mode 100644 bazel/BUILD.bazel create mode 100644 bazel/defaults.bazelrc create mode 100644 bazel/include/BUILD.bazel create mode 100644 bazel/include/llvm.MODULE.bazel create mode 100644 bazel/include/musl.MODULE.bazel create mode 100644 bazel/include/oci.MODULE.bazel create mode 100644 bazel/include/release.MODULE.bazel create mode 100644 bazel/include/rules-python.MODULE.bazel create mode 100644 bazel/include/rust.MODULE.bazel create mode 100644 bazel/include/telemetry.MODULE.bazel create mode 100644 bazel/patches/BUILD.bazel create mode 100644 bazel/patches/toolchains_llvm.patch create mode 100644 bazel/platforms/BUILD.bazel create mode 100644 bazel/platforms/config/BUILD.bazel create mode 100644 bazel/platforms/config/defs.bzl create mode 100644 bazel/platforms/linkers/BUILD.bazel create mode 100644 bazel/platforms/toolchains/BUILD.bazel create mode 100644 bazel/platforms/toolchains/defs.bzl create mode 100644 bazel/release/BUILD.bazel create mode 100755 bazel/release/create_release.sh create mode 100644 bazel/release/hashes.bzl create mode 100644 bazel/release/release.bzl create mode 100644 bazel/release/sha256sum/BUILD.bazel create mode 100644 bazel/release/sha256sum/main.go create mode 100644 bazel/rust/BUILD.bazel create mode 100644 bazel/rust/README.md create mode 100644 bazel/rust/defs.bzl create mode 100644 bazel/rust/multi_platform_rust_binaries.bzl delete mode 100644 internal_deps.bzl delete mode 100644 internal_python_deps.bzl diff --git a/.bazelrc b/.bazelrc index 3cc4c9e5..21a8fc76 100644 --- a/.bazelrc +++ b/.bazelrc @@ -1,11 +1,7 @@ -# Bazel settings that apply to this repository. -# Take care to document any settings that you expect users to apply. -# Settings that apply only to CI are in .github/workflows/ci.bazelrc +import %workspace%/bazel/defaults.bazelrc test --test_output=errors - -# TODO(alex): enable -common --noenable_bzlmod +common --enable_bzlmod # Define value used by tests build --define=SOME_VAR=SOME_VALUE @@ -15,16 +11,22 @@ common --incompatible_enable_cc_toolchain_resolution common --per_file_copt=external/.*protobuf.*@--PROTOBUF_WAS_NOT_SUPPOSED_TO_BE_BUILT common --host_per_file_copt=external/.*protobuf.*@--PROTOBUF_WAS_NOT_SUPPOSED_TO_BE_BUILT -# Use local rules_python -# Enable with --config=dev -common:dev --override_repository=rules_python=~/workspace/rules_python -# No external runfiles -common --nolegacy_external_runfiles +# Don't try and auto detect the cc toolchain, as we use our own gcc toolchains. +common --action_env=BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +common --incompatible_enable_cc_toolchain_resolution + +# Don't link against libunwind on macos as it causes linking failures (https://github.com/bazel-contrib/toolchains_llvm/pull/346) +common:macos --@toolchains_llvm//toolchain/config:libunwind=False + +common:ci --toolchain_resolution_debug='@@bazel_tools//tools/cpp:toolchain_type' + +common:release --stamp +common:release --compilation_mode=opt +common:release --@rules_rust//rust/settings:lto=fat -# Don’t want to push a rules author to update their deps if not needed. -# https://bazel.build/reference/command-line-reference#flag--check_direct_dependencies -# https://bazelbuild.slack.com/archives/C014RARENH0/p1691158021917459?thread_ts=1691156601.420349&cid=C014RARENH0 -common --check_direct_dependencies=off +# Speed up local development by using the non-hermetic CPP toolchain. +common:nollvm --action_env=BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=0 +common:nollvm --noincompatible_enable_cc_toolchain_resolution # Load any settings specific to the current user. # .bazelrc.user should appear in .gitignore so that settings are not shared with team members diff --git a/MODULE.bazel b/MODULE.bazel index 920b210c..62edcdae 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -11,24 +11,19 @@ module( # py_image_layer requires 2.x for the `tar` rule. # py_image_layer needs compute_unused_inputs attribute # py_image_layer needs repo_mapping fix. -bazel_dep(name = "aspect_bazel_lib", version = "2.16.0") -bazel_dep(name = "aspect_tools_telemetry", version = "0.2.6") bazel_dep(name = "bazel_skylib", version = "1.4.2") -bazel_dep(name = "rules_python", version = "0.29.0") bazel_dep(name = "platforms", version = "0.0.7") - -bazel_lib = use_extension("@aspect_bazel_lib//lib:extensions.bzl", "toolchains") -bazel_lib.expand_template() - -tel = use_extension("@aspect_tools_telemetry//:extension.bzl", "telemetry") -use_repo(tel, "aspect_tools_telemetry_report") - -# Custom python version for testing only -python = use_extension("@rules_python//python/extensions:python.bzl", "python", dev_dependency = True) -python.toolchain( - is_default = False, - python_version = "3.9", -) +bazel_dep(name = "buildifier_prebuilt", version = "8.2.0.2") +bazel_dep(name = "bazelrc-preset.bzl", version = "1.2.0") + +include("//bazel/include:bazel-lib.MODULE.bazel") +include("//bazel/include:llvm.MODULE.bazel") +include("//bazel/include:musl.MODULE.bazel") +include("//bazel/include:oci.MODULE.bazel") +include("//bazel/include:rust.MODULE.bazel") +include("//bazel/include:telemetry.MODULE.bazel") +include("//bazel/include:rules-python.MODULE.bazel") +include("//bazel/include:release.MODULE.bazel") tools = use_extension("//py:extensions.bzl", "py_tools") tools.rules_py_tools() @@ -44,73 +39,3 @@ register_toolchains( "@aspect_rules_py//py/private/toolchain/unpack/...", "@aspect_rules_py//py/private/toolchain/shim/...", ) - -# To allow Rust binaries in /py/tools to be built from source -# NOTE: when publishing to BCR, we patch these to be dev_dependency, as we publish pre-built binaries -# along with our releases. - -bazel_dep( - name = "rules_rust", - version = "0.53.0", - # In released versions: dev_dependency = True -) - -rust = use_extension( - "@rules_rust//rust:extensions.bzl", - "rust", - # In released versions: dev_dependency = True -) -rust.toolchain( - edition = "2021", - versions = ["1.81.0"], -) -use_repo(rust, "rust_toolchains") - -register_toolchains( - "@rust_toolchains//:all", - # In released versions: dev_dependency = True -) - -crate = use_extension( - "@rules_rust//crate_universe:extension.bzl", - "crate", - # In released versions: dev_dependency = True -) -crate.from_cargo( - name = "crate_index", - cargo_lockfile = "//:Cargo.lock", - # Apparently not needed under bzlmod? - # lockfile = "//:Cargo.Bazel.lock", - manifests = [ - "//:Cargo.toml", - "//py/tools/py:Cargo.toml", - "//py/tools/unpack_bin:Cargo.toml", - "//py/tools/venv_bin:Cargo.toml", - "//py/tools/venv_shim:Cargo.toml", - "//py/tools/runfiles:Cargo.toml", - ], -) -use_repo(crate, "crate_index") - -# For building test images with py_image_layer -bazel_dep(name = "container_structure_test", version = "1.19.3", dev_dependency = True) -git_override( - module_name = "container_structure_test", - commit = "56c7201716d770c0f820a9c19207ba2ea77c34f8", - remote = "https://github.com/GoogleContainerTools/container-structure-test.git", -) - -bazel_dep(name = "rules_oci", version = "2.0.1", dev_dependency = True) - -oci = use_extension("@rules_oci//oci:extensions.bzl", "oci", dev_dependency = True) -oci.pull( - name = "ubuntu", - digest = "sha256:80dd3c3b9c6cecb9f1667e9290b3bc61b78c2678c02cbdae5f0fea92cc6734ab", - image = "ubuntu", - platforms = [ - "linux/arm64/v8", - "linux/amd64", - ], - tag = "latest", -) -use_repo(oci, "ubuntu", "ubuntu_linux_amd64", "ubuntu_linux_arm64_v8") diff --git a/WORKSPACE b/WORKSPACE deleted file mode 100644 index 4fa5c8ec..00000000 --- a/WORKSPACE +++ /dev/null @@ -1,319 +0,0 @@ -# Declare the local Bazel workspace. -workspace(name = "aspect_rules_py") - -load("//tools/release:fetch.bzl", _release_deps = "fetch_deps") -load(":internal_deps.bzl", "rules_py_internal_deps") - -# Fetch deps needed only locally for development -rules_py_internal_deps() - -# Fetch deps needed only for a release. -_release_deps() - -load("//py:repositories.bzl", "rules_py_dependencies") - -# Fetch dependencies which users need as well -rules_py_dependencies() - -load("//py:toolchains.bzl", "rules_py_toolchains") - -rules_py_toolchains() - -load("@rules_python//python:repositories.bzl", "py_repositories", "python_register_toolchains") - -python_register_toolchains( - name = "python_toolchain_3_8", - python_version = "3.8.12", - # Setting `set_python_version_constraint` will set special constraints on the registered toolchain. - # This means that this toolchain registration will only be selected for `py_binary` / `py_test` targets - # that have the `python_version = "3.8.12"` attribute set. Targets that have no `python_attribute` will use - # the default toolchain resolved which can be seen below. - set_python_version_constraint = True, -) - -# It is important to register the default toolchain at last as it will be selected for any -# py_test/py_binary target even if it has python_version attribute set. -python_register_toolchains( - name = "python_toolchain", - python_version = "3.9", -) - -py_repositories() - -############################################ -# Aspect bazel-lib -load("@aspect_bazel_lib//lib:repositories.bzl", "register_coreutils_toolchains", "register_expand_template_toolchains") - -register_coreutils_toolchains() - -register_expand_template_toolchains() - -load("@musl_toolchains//:repositories.bzl", "load_musl_toolchains") - -load_musl_toolchains(extra_target_compatible_with = ["@//tools/linkers:musl"]) - -load("@musl_toolchains//:toolchains.bzl", "register_musl_toolchains") - -register_musl_toolchains() - -############################################ -## CC toolchain using llvm -load("@toolchains_llvm//toolchain:deps.bzl", "bazel_toolchain_dependencies") - -bazel_toolchain_dependencies() - -load("@toolchains_llvm//toolchain:rules.bzl", "llvm_toolchain") - -llvm_toolchain( - name = "llvm_toolchain", - llvm_version = "17.0.2", - sha256 = { - "darwin-aarch64": "bb5144516c94326981ec78c8b055c85b1f6780d345128cae55c5925eb65241ee", - "darwin-x86_64": "800ec8401344a95f84588815e97523a0ed31fd05b6ffa9e1b58ce20abdcf69f1", - "linux-aarch64": "49eec0202b8cd4be228c8e92878303317f660bc904cf6e6c08917a55a638917d", - "linux-x86_64": "0c5096c157e196a04fc6ac58543266caef0da3e3c921414a7c279feacc2309d9", - }, - sysroot = { - "darwin-aarch64": "@sysroot_darwin_universal//:sysroot", - "darwin-x86_64": "@sysroot_darwin_universal//:sysroot", - "linux-aarch64": "@org_chromium_sysroot_linux_arm64//:sysroot", - "linux-x86_64": "@org_chromium_sysroot_linux_x86_64//:sysroot", - }, - urls = { - "darwin-aarch64": ["https://github.com/dzbarsky/static-clang/releases/download/v17.0.2-8/darwin_arm64_minimal.tar.xz"], - "darwin-x86_64": ["https://github.com/dzbarsky/static-clang/releases/download/v17.0.2-8/darwin_amd64_minimal.tar.xz"], - "linux-aarch64": ["https://github.com/dzbarsky/static-clang/releases/download/v17.0.2-8/linux_arm64_minimal.tar.xz"], - "linux-x86_64": ["https://github.com/dzbarsky/static-clang/releases/download/v17.0.2-8/linux_amd64_minimal.tar.xz"], - }, -) - -load("@llvm_toolchain//:toolchains.bzl", "llvm_register_toolchains") - -llvm_register_toolchains() - -############################################ -# Development dependencies from pypi -load("@python_toolchain//:defs.bzl", "interpreter") -load(":internal_python_deps.bzl", "rules_py_internal_pypi_deps") - -rules_py_internal_pypi_deps( - interpreter = interpreter, -) - -load("@pypi//:requirements.bzl", "install_deps") - -install_deps() - -load("@django//:requirements.bzl", install_django_deps = "install_deps") - -install_django_deps() - -################################ -# For running our own unit tests -load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace") - -bazel_skylib_workspace() - -load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies") - -############################################ -# Gazelle, for generating bzl_library targets -load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies") - -go_rules_dependencies() - -go_register_toolchains(version = "1.19.3") - -gazelle_dependencies() - -load("@rules_python//gazelle:deps.bzl", _py_gazelle_deps = "gazelle_deps") - -_py_gazelle_deps() - -load("@bazel_skylib_gazelle_plugin//:workspace.bzl", "bazel_skylib_gazelle_plugin_workspace") - -bazel_skylib_gazelle_plugin_workspace() - -load("@bazel_skylib_gazelle_plugin//:setup.bzl", "bazel_skylib_gazelle_plugin_setup") - -bazel_skylib_gazelle_plugin_setup(register_go_toolchains = False) - -############################################ -# rules_rust dependencies for building tools -load("@rules_rust//rust:repositories.bzl", "rules_rust_dependencies", "rust_register_toolchains", "rust_repository_set") - -rules_rust_dependencies() - -RUST_EDITION = "2021" - -RUST_VERSION = "1.81.0" - -# Declare cross-compilation toolchains -rust_repository_set( - name = "apple_darwin_aarch64", - edition = RUST_EDITION, - exec_triple = "aarch64-apple-darwin", - # and cross-compile to these platforms: - extra_target_triples = { - "aarch64-apple-darwin": [ - "@platforms//cpu:arm64", - "@platforms//os:macos", - ], - "aarch64-unknown-linux-musl": [ - "@platforms//cpu:arm64", - "@platforms//os:linux", - "@//tools/linkers:musl", - ], - "x86_64-apple-darwin": [ - "@platforms//cpu:x86_64", - "@platforms//os:macos", - ], - "x86_64-unknown-linux-musl": [ - "@platforms//cpu:x86_64", - "@platforms//os:linux", - "@//tools/linkers:musl", - ], - }, - versions = [RUST_VERSION], -) - -rust_repository_set( - name = "apple_darwin_x86_64", - edition = RUST_EDITION, - exec_triple = "x86_64-apple-darwin", - # and cross-compile to these platforms: - extra_target_triples = { - "aarch64-apple-darwin": [ - "@platforms//cpu:arm64", - "@platforms//os:macos", - ], - "aarch64-unknown-linux-musl": [ - "@platforms//cpu:arm64", - "@platforms//os:linux", - "@//tools/linkers:musl", - ], - "x86_64-apple-darwin": [ - "@platforms//cpu:x86_64", - "@platforms//os:macos", - ], - "x86_64-unknown-linux-musl": [ - "@platforms//cpu:x86_64", - "@platforms//os:linux", - "@//tools/linkers:musl", - ], - }, - versions = [RUST_VERSION], -) - -rust_repository_set( - name = "rust_linux_x86_64", - edition = RUST_EDITION, - exec_triple = "x86_64-unknown-linux-gnu", - extra_target_triples = { - "aarch64-unknown-linux-gnu": [ - "@platforms//cpu:arm64", - "@platforms//os:linux", - "@//tools/linkers:unknown", - ], - "aarch64-unknown-linux-musl": [ - "@platforms//cpu:arm64", - "@platforms//os:linux", - "@//tools/linkers:musl", - ], - "x86_64-unknown-linux-gnu": [ - "@platforms//cpu:x86_64", - "@platforms//os:linux", - "@//tools/linkers:unknown", - ], - "x86_64-unknown-linux-musl": [ - "@platforms//cpu:x86_64", - "@platforms//os:linux", - "@//tools/linkers:musl", - ], - }, - versions = [RUST_VERSION], -) - -rust_repository_set( - name = "rust_linux_aarch64", - edition = RUST_EDITION, - exec_triple = "aarch64-unknown-linux-gnu", - extra_target_triples = { - "aarch64-unknown-linux-gnu": [ - "@platforms//cpu:arm64", - "@platforms//os:linux", - "@//tools/linkers:unknown", - ], - "aarch64-unknown-linux-musl": [ - "@platforms//cpu:arm64", - "@platforms//os:linux", - "@//tools/linkers:musl", - ], - "x86_64-unknown-linux-gnu": [ - "@platforms//cpu:x86_64", - "@platforms//os:linux", - "@//tools/linkers:unknown", - ], - "x86_64-unknown-linux-musl": [ - "@platforms//cpu:x86_64", - "@platforms//os:linux", - "@//tools/linkers:musl", - ], - }, - versions = [RUST_VERSION], -) - -rust_register_toolchains( - edition = RUST_EDITION, - versions = [RUST_VERSION], -) - -load("@rules_rust//crate_universe:repositories.bzl", "crate_universe_dependencies") - -crate_universe_dependencies() - -load("@rules_rust//crate_universe:defs.bzl", "crates_repository") - -crates_repository( - name = "crate_index", - cargo_lockfile = "//:Cargo.lock", - lockfile = "//:Cargo.Bazel.lock", - manifests = [ - "//:Cargo.toml", - "//py/tools/py:Cargo.toml", - "//py/tools/unpack_bin:Cargo.toml", - "//py/tools/venv_bin:Cargo.toml", - "//py/tools/venv_shim:Cargo.toml", - "//py/tools/runfiles:Cargo.toml", - ], -) - -load("@crate_index//:defs.bzl", "crate_repositories") - -crate_repositories() - -load("@rules_oci//oci:dependencies.bzl", "rules_oci_dependencies") - -rules_oci_dependencies() - -load("@rules_oci//oci:repositories.bzl", "oci_register_toolchains") - -oci_register_toolchains(name = "oci") - -# You can pull your base images using oci_pull like this: -load("@rules_oci//oci:pull.bzl", "oci_pull") - -oci_pull( - name = "ubuntu", - digest = "sha256:b59d21599a2b151e23eea5f6602f4af4d7d31c4e236d22bf0b62b86d2e386b8f", - image = "ubuntu", - platforms = [ - "linux/arm64/v8", - "linux/amd64", - ], - tag = "latest", -) - -load("@container_structure_test//:repositories.bzl", "container_structure_test_register_toolchain") - -container_structure_test_register_toolchain(name = "cst") diff --git a/bazel/BUILD.bazel b/bazel/BUILD.bazel new file mode 100644 index 00000000..d3900bae --- /dev/null +++ b/bazel/BUILD.bazel @@ -0,0 +1,6 @@ +load("@bazelrc-preset.bzl", "bazelrc_preset") + +bazelrc_preset( + name = "defaults", + strict = True, +) diff --git a/bazel/defaults.bazelrc b/bazel/defaults.bazelrc new file mode 100644 index 00000000..bdb9ee4f --- /dev/null +++ b/bazel/defaults.bazelrc @@ -0,0 +1,237 @@ +# Generated by bazelrc-preset.bzl +# To update this file, run: +# bazel run @@//bazel:defaults.update + +# On CI, announce all announces command options read from the bazelrc file(s) when starting up at the +# beginning of each Bazel invocation. This is very useful on CI to be able to inspect which flags +# are being applied on each run based on the order of overrides. +common:ci --announce_rc +# Docs: https://registry.build/flag/bazel@7.6.0?filter=announce_rc + +# Avoid creating a runfiles tree for binaries or tests until it is needed. +# See https://github.com/bazelbuild/bazel/issues/6627 +# This may break local workflows that `build` a binary target, then run the resulting program outside of `bazel run`. +# In those cases, the script will need to call `bazel build --build_runfile_links //my/binary:target` and then execute the resulting program. +common --nobuild_runfile_links +# Docs: https://registry.build/flag/bazel@7.6.0?filter=build_runfile_links + +# See https://github.com/bazelbuild/bazel/issues/20577 +coverage --build_runfile_links +# Docs: https://registry.build/flag/bazel@7.6.0?filter=build_runfile_links + +# Always run tests even if they have cached results. +# This ensures tests are executed fresh each time, useful for debugging and ensuring test reliability. +common:debug --nocache_test_results +# Docs: https://registry.build/flag/bazel@7.6.0?filter=cache_test_results + +# Don’t encourage a rules author to update their deps if not needed. +# These bazel_dep calls should indicate the minimum version constraint of the ruleset. +# If the author instead updates to the newest of any of their transitives, as this flag would suggest, +# then they'll also force their dependents to a newer version. +# Context: +# https://bazelbuild.slack.com/archives/C014RARENH0/p1691158021917459?thread_ts=1691156601.420349&cid=C014RARENH0 +common:ruleset --check_direct_dependencies="off" +# Docs: https://registry.build/flag/bazel@7.6.0?filter=check_direct_dependencies + +# On CI, use colors to highlight output on the screen. Set to `no` if your CI does not display colors. +common:ci --color="yes" +# Docs: https://registry.build/flag/bazel@7.6.0?filter=color + +# On CI, use cursor controls in screen output. +common:ci --curses="yes" +# Docs: https://registry.build/flag/bazel@7.6.0?filter=curses + +# Bazel picks up host-OS-specific config lines from bazelrc files. For example, if the host OS is +# Linux and you run bazel build, Bazel picks up lines starting with build:linux. Supported OS +# identifiers are `linux`, `macos`, `windows`, `freebsd`, and `openbsd`. Enabling this flag is +# equivalent to using `--config=linux` on Linux, `--config=windows` on Windows, etc. +common --enable_platform_specific_config +# Docs: https://registry.build/flag/bazel@7.6.0?filter=enable_platform_specific_config + +# Speed up all builds by not checking if external repository files have been modified. +# For reference: https://github.com/bazelbuild/bazel/blob/1af61b21df99edc2fc66939cdf14449c2661f873/src/main/java/com/google/devtools/build/lib/bazel/repository/RepositoryOptions.java#L244 +common --noexperimental_check_external_repository_files +# Docs: https://registry.build/flag/bazel@7.6.0?filter=experimental_check_external_repository_files + +# Always download coverage files for tests from the remote cache. By default, coverage files are not +# downloaded on test result cache hits when --remote_download_minimal is enabled, making it impossible +# to generate a full coverage report. +common --experimental_fetch_all_coverage_outputs +# Docs: https://registry.build/flag/bazel@7.6.0?filter=experimental_fetch_all_coverage_outputs + +# This flag was added in Bazel 6.2.0 with a default of zero: +# https://github.com/bazelbuild/bazel/commit/24b45890c431de98d586fdfe5777031612049135 +# For Bazel 8.0.0rc1 the default was changed to 5: +# https://github.com/bazelbuild/bazel/commit/739e37de66f4913bec1a55b2f2a162e7db6f2d0f +# Back-port the updated flag default value to older Bazel versions. +common --experimental_remote_cache_eviction_retries=5 +# Docs: https://registry.build/flag/bazel@7.6.0?filter=experimental_remote_cache_eviction_retries + +# This flag was added in Bazel 5.0.0 with a default of zero: +# https://github.com/bazelbuild/bazel/commit/a1137ec1338d9549fd34a9a74502ffa58c286a8e +# For Bazel 8.0.0 the default was changed to 5: +# https://github.com/bazelbuild/bazel/commit/9335cf989ee6a678ca10bc4da72214634cef0a57 +# Back-port the updated flag default value to older Bazel versions. +common --experimental_repository_downloader_retries=5 +# Docs: https://registry.build/flag/bazel@7.6.0?filter=experimental_repository_downloader_retries + +# Set this flag to enable re-tries of failed tests on CI. +# When any test target fails, try one or more times. This applies regardless of whether the "flaky" +# tag appears on the target definition. +# This is a tradeoff: legitimately failing tests will take longer to report, +# but we can "paper over" flaky tests that pass most of the time. +# +# An alternative is to mark every flaky test with the `flaky = True` attribute, but this requires +# the buildcop to make frequent code edits. +# This flag is not recommended for local builds: flakiness is more likely to get fixed if it is +# observed during development. +# +# Note that when passing after the first attempt, Bazel will give a special "FLAKY" status rather than "PASSED". +test:ci --flaky_test_attempts=2 +# Docs: https://registry.build/flag/bazel@7.6.0?filter=flaky_test_attempts + +# Fixes builds hanging on CI that get the TCP connection closed without sending RST packets. +common:ci --grpc_keepalive_time="30s" +# Docs: https://registry.build/flag/bazel@7.6.0?filter=grpc_keepalive_time + +# Output a heap dump if an OOM is thrown during a Bazel invocation +# (including OOMs due to `--experimental_oom_more_eagerly_threshold`). +# The dump will be written to `/.heapdump.hprof`. +# You should configure CI to upload this artifact for later inspection. +common --heap_dump_on_oom +# Docs: https://registry.build/flag/bazel@7.6.0?filter=heap_dump_on_oom + +# Allow the Bazel server to check directory sources for changes. Ensures that the Bazel server +# notices when a directory changes, if you have a directory listed in the srcs of some target. +# Recommended when using [copy_directory](https://github.com/bazel-contrib/bazel-lib/blob/main/docs/copy_directory.md) +# and [rules_js](https://github.com/aspect-build/rules_js) since npm package are source directories inputs to copy_directory actions. +startup --host_jvm_args="-DBAZEL_TRACK_SOURCE_DIRECTORIES=1" +# Docs: https://registry.build/flag/bazel@7.6.0?filter=host_jvm_args + +# By default, Bazel automatically creates __init__.py files for py_binary and py_test targets. +# From https://github.com/bazelbuild/bazel/issues/10076: +# > It is magic at a distance. +# > Python programmers are already used to creating __init__.py files in their source trees, +# > so doing it behind their backs introduces confusion and changes the semantics of imports +common --incompatible_default_to_explicit_init_py +# Docs: https://registry.build/flag/bazel@7.6.0?filter=incompatible_default_to_explicit_init_py + +# Disallow empty glob patterns. +# The glob() function tends to be error-prone, because any typo in a path will silently return an empty list. +# This flag was added in Bazel 0.27 and flipped in Bazel 8: https://github.com/bazelbuild/bazel/issues/8195 +common --incompatible_disallow_empty_glob +# Docs: https://registry.build/flag/bazel@7.6.0?filter=incompatible_disallow_empty_glob + +# Make builds more reproducible by using a static value for PATH and not inheriting LD_LIBRARY_PATH. +# Use `--action_env=ENV_VARIABLE` if you want to inherit specific variables from the environment where Bazel runs. +# Note that doing so can prevent cross-user caching if a shared cache is used. +# See https://github.com/bazelbuild/bazel/issues/2574 for more details. +common --incompatible_strict_action_env +# Docs: https://registry.build/flag/bazel@7.6.0?filter=incompatible_strict_action_env + +# Performance improvement: avoid laying out a second copy of the runfiles tree. +# See https://github.com/bazelbuild/bazel/issues/23574. +# This flag was flipped for Bazel 8. +common --nolegacy_external_runfiles +# Docs: https://registry.build/flag/bazel@7.6.0?filter=legacy_external_runfiles + +# On CI, don't download remote outputs to the local machine. +# Most CI pipelines don't need to access the files and they can remain at rest on the remote cache. +# Significant time can be spent on needless downloads, which is especially noticeable on fully-cached builds. +# +# If you do need to download files, the fastest options are: +# - (preferred) Use `remote_download_regex` to specify the files to download. +# - Use the Remote Output Service (https://blog.bazel.build/2024/07/23/remote-output-service.html) +# to lazy-materialize specific files after the build completes. +# - Perform a second bazel command with specific targets and override this flag with the `toplevel` value. +# - To copy executable targets, you can use `bazel run --run_under=cp //some:binary_target `. +common:ci --remote_download_outputs="minimal" +# Docs: https://registry.build/flag/bazel@7.6.0?filter=remote_download_outputs + +# On CI, fall back to standalone local execution strategy if remote execution fails. +# Otherwise, when a grpc remote cache connection fails, it would fail the build. +common:ci --remote_local_fallback +# Docs: https://registry.build/flag/bazel@7.6.0?filter=remote_local_fallback + +# On CI, extend the maximum amount of time to wait for remote execution and cache calls. +common:ci --remote_timeout=3600 +# Docs: https://registry.build/flag/bazel@7.6.0?filter=remote_timeout + +# Do not upload locally executed action results to the remote cache. +# This should be the default for local builds so local builds cannot poison the remote cache. +# +# Note that this flag is flipped to True under --config=ci, see below. +common --noremote_upload_local_results +# Docs: https://registry.build/flag/bazel@7.6.0?filter=remote_upload_local_results + +# On CI, upload locally executed action results to the remote cache. +common:ci --remote_upload_local_results +# Docs: https://registry.build/flag/bazel@7.6.0?filter=remote_upload_local_results + +# Repository rules, such as rules_jvm_external: put Bazel's JDK on the path. +# Avoids non-hermeticity from dependency on a JAVA_HOME pointing at a system JDK +# see https://github.com/bazelbuild/rules_jvm_external/issues/445 +common --repo_env="JAVA_HOME=../bazel_tools/jdk" +# Docs: https://registry.build/flag/bazel@7.6.0?filter=repo_env + +# Reuse sandbox directories between invocations. +# Directories used by sandboxed non-worker execution may be reused to avoid unnecessary setup costs. +# Saves time on sandbox creation and deletion when many of the same kind of action is spawned during the build. +common --reuse_sandbox_directories +# Docs: https://registry.build/flag/bazel@7.6.0?filter=reuse_sandbox_directories + +# Don't allow network access for build actions in the sandbox by default. +# Avoids accidental non-hermeticity in actions/tests which depend on remote services. +# Developers should tag targets with `tags=["requires-network"]` to be explicit that they need network access. +# Note that the sandbox cannot print a message to the console if it denies network access, +# so failures under this flag appear as application errors in the networking layer. +common --nosandbox_default_allow_network +# Docs: https://registry.build/flag/bazel@7.6.0?filter=sandbox_default_allow_network + +# Only show progress every 60 seconds on CI. +# We want to find a compromise between printing often enough to show that the build isn't stuck, +# but not so often that we produce a long log file that requires a lot of scrolling. +common:ci --show_progress_rate_limit=60 +# Docs: https://registry.build/flag/bazel@7.6.0?filter=show_progress_rate_limit + +# The printed files are convenient strings for copy+pasting to the shell, to execute them. +# This option requires an integer argument, which is the threshold number of targets above which result information is not printed. +# Show the output files created by builds that requested more than one target. +# This helps users locate the build outputs in more cases. +common --show_result=20 +# Docs: https://registry.build/flag/bazel@7.6.0?filter=show_result + +# On CI, add a timestamp to each message generated by Bazel specifying the time at which the message was displayed. +# This makes it easier to reason about what were the slowest steps on CI. +common:ci --show_timestamps +# Docs: https://registry.build/flag/bazel@7.6.0?filter=show_timestamps + +# The terminal width in columns. Configure this to override the default value based on what your CI system renders. +common:ci --terminal_columns=143 +# Docs: https://registry.build/flag/bazel@7.6.0?filter=terminal_columns + +# Output test errors to stderr so users don't have to `cat` or open test failure log files when test fail. +# This makes the log noisier in exchange for reducing the time-to-feedback on test failures for users. +common --test_output="errors" +# Docs: https://registry.build/flag/bazel@7.6.0?filter=test_output + +# Stream stdout/stderr output from each test in real-time. +# This provides immediate feedback during test execution, useful for debugging test failures. +common:debug --test_output="streamed" +# Docs: https://registry.build/flag/bazel@7.6.0?filter=test_output + +# Run one test at a time in exclusive mode. +# This prevents test interference and provides clearer output when debugging test issues. +common:debug --test_strategy="exclusive" +# Docs: https://registry.build/flag/bazel@7.6.0?filter=test_strategy + +# The default test_summary ("short") prints a result for every test target that was executed. +# In a large repo this amounts to hundreds of lines of additional log output when testing a broad wildcard pattern like //... +# This value means to print information only about unsuccessful tests that were run. +test:ci --test_summary="terse" +# Docs: https://registry.build/flag/bazel@7.6.0?filter=test_summary + +# Prevent long running tests from timing out. +# Set to a high value to allow tests to complete even if they take longer than expected. +common:debug --test_timeout=9999 +# Docs: https://registry.build/flag/bazel@7.6.0?filter=test_timeout diff --git a/bazel/include/BUILD.bazel b/bazel/include/BUILD.bazel new file mode 100644 index 00000000..e69de29b diff --git a/bazel/include/llvm.MODULE.bazel b/bazel/include/llvm.MODULE.bazel new file mode 100644 index 00000000..c2eb8151 --- /dev/null +++ b/bazel/include/llvm.MODULE.bazel @@ -0,0 +1,127 @@ +"LLVM configuration" + +bazel_dep(name = "toolchains_llvm", version = "1.4.0") +single_version_override( + module_name = "toolchains_llvm", + patch_strip = 1, + patches = [ + "//bazel/patches:toolchains_llvm.patch", + ], +) + +llvm = use_extension("@toolchains_llvm//toolchain/extensions:llvm.bzl", "llvm") + +execution_oses = [ + "macos", + "linux", +] + +execution_cpus = [ + "aarch64", + "x86_64", +] + +[ + [ + llvm.toolchain( + name = "llvm_toolchain_{}_{}".format(exec_os, exec_cpu), + exec_arch = exec_cpu, + exec_os = exec_os if exec_os != "macos" else "darwin", + llvm_version = "19.1.7" + ), + llvm.sysroot( + name = "llvm_toolchain_{}_{}".format(exec_os, exec_cpu), + label = "@org_chromium_sysroot_linux_x86_64//:sysroot", + targets = ["linux-x86_64"], + ), + llvm.sysroot( + name = "llvm_toolchain_{}_{}".format(exec_os, exec_cpu), + label = "@org_chromium_sysroot_linux_arm64//:sysroot", + targets = ["linux-aarch64"], + ), + llvm.sysroot( + name = "llvm_toolchain_{}_{}".format(exec_os, exec_cpu), + label = "@sysroot_darwin_universal//:sysroot", + targets = [ + "darwin-aarch64", + "darwin-x86_64", + ], + ), + use_repo(llvm, "llvm_toolchain_{}_{}".format(exec_os, exec_cpu)), + ] + for exec_os in execution_oses + for exec_cpu in execution_cpus +] + +http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") + +_SYSROOT_LINUX_BUILD_FILE = """\ +filegroup( + name = "sysroot", + srcs = glob(["*/**"]), + visibility = ["//visibility:public"], +) +""" + +http_archive( + name = "org_chromium_sysroot_linux_arm64", + build_file_content = _SYSROOT_LINUX_BUILD_FILE, + sha256 = "b199942a0bd9c34800e8d7b669778ef45f2054b9f106039439383dd66efcef31", + urls = ["https://github.com/DavidZbarsky-at/sysroot-min/releases/download/v0.0.20/debian_bullseye_arm64_sysroot.tar.xz"], +) + +http_archive( + name = "org_chromium_sysroot_linux_x86_64", + build_file_content = _SYSROOT_LINUX_BUILD_FILE, + sha256 = "b279dd2926e7d3860bb4e134997a45df5106f680e160a959b945580ba4ec755f", + urls = ["https://github.com/DavidZbarsky-at/sysroot-min/releases/download/v0.0.20/debian_bullseye_amd64_sysroot.tar.xz"], +) + +http_archive( + name = "sysroot_darwin_universal", + build_file_content = """ +filegroup( + name = "sysroot", + srcs = glob( + include = ["**"], + exclude = ["**/*:*"], + ), + visibility = ["//visibility:public"], +) +""", + # The ruby header has an infinite symlink that we need to remove. + patch_cmds = ["rm System/Library/Frameworks/Ruby.framework/Versions/Current/Headers/ruby/ruby"], + integrity = "sha256-9qzGIJ251Wtn/K+R7B3v5Ici6esT3CH7kc/s6xSJ5X4=", + strip_prefix = "MacOSX14.5.sdk", + urls = ["https://github.com/alexey-lysiuk/macos-sdk/releases/download/14.5/MacOSX14.5.tar.xz"], +) + +target_oses = [ + "macos", + "linux", +] + +target_cpus = [ + "aarch64", + "x86_64", +] + +platforms = [ + { + "exec_os": exec_os, + "exec_cpu": exec_cpu, + "tgt_os": tgt_os, + "tgt_cpu": tgt_cpu, + } + for exec_os in execution_oses + for exec_cpu in execution_cpus + for tgt_os in target_oses + for tgt_cpu in target_cpus +] + +[register_toolchains("//bazel/platforms/toolchains:{}_{}_{}_{}_llvm".format( + p["exec_os"], + p["exec_cpu"], + p["tgt_os"], + p["tgt_cpu"], +)) for p in platforms] diff --git a/bazel/include/musl.MODULE.bazel b/bazel/include/musl.MODULE.bazel new file mode 100644 index 00000000..8c039df0 --- /dev/null +++ b/bazel/include/musl.MODULE.bazel @@ -0,0 +1,6 @@ +"Musl configuration" + +bazel_dep(name = "toolchains_musl", version = "0.1.27") + +toolchains_musl = use_extension("@toolchains_musl//:toolchains_musl.bzl", "toolchains_musl") +toolchains_musl.config(extra_target_compatible_with = ["@//bazel/platforms/linkers:musl"]) diff --git a/bazel/include/oci.MODULE.bazel b/bazel/include/oci.MODULE.bazel new file mode 100644 index 00000000..72b42d76 --- /dev/null +++ b/bazel/include/oci.MODULE.bazel @@ -0,0 +1,25 @@ +bazel_dep(name = "rules_oci", version = "2.0.1", dev_dependency = True) + +oci = use_extension("@rules_oci//oci:extensions.bzl", "oci", dev_dependency = True) +oci.pull( + name = "ubuntu", + digest = "sha256:80dd3c3b9c6cecb9f1667e9290b3bc61b78c2678c02cbdae5f0fea92cc6734ab", + image = "ubuntu", + platforms = [ + "linux/arm64/v8", + "linux/amd64", + ], + tag = "latest", +) +use_repo(oci, "ubuntu", "ubuntu_linux_amd64", "ubuntu_linux_arm64_v8") + +# For building test images with py_image_layer +bazel_dep(name = "container_structure_test", version = "1.19.3", dev_dependency = True) +git_override( + module_name = "container_structure_test", + commit = "56c7201716d770c0f820a9c19207ba2ea77c34f8", + remote = "https://github.com/GoogleContainerTools/container-structure-test.git", +) + +# Used for testing container layers +bazel_dep(name = "tar.bzl", version = "0.5.5") diff --git a/bazel/include/release.MODULE.bazel b/bazel/include/release.MODULE.bazel new file mode 100644 index 00000000..851d270d --- /dev/null +++ b/bazel/include/release.MODULE.bazel @@ -0,0 +1,5 @@ +bazel_dep(name = "with_cfg.bzl", version = "0.11.0") +bazel_dep(name = "rules_pkg", version = "1.1.0") + +# FIXME: Ditch this +bazel_dep(name = "rules_go", version = "0.57.0") diff --git a/bazel/include/rules-python.MODULE.bazel b/bazel/include/rules-python.MODULE.bazel new file mode 100644 index 00000000..067abc77 --- /dev/null +++ b/bazel/include/rules-python.MODULE.bazel @@ -0,0 +1,49 @@ +bazel_dep(name = "rules_python", version = "1.0.0") +bazel_dep(name = "rules_python_gazelle_plugin", version = "1.0.0") + +python = use_extension("@rules_python//python/extensions:python.bzl", "python", dev_dependency = True) +python.toolchain( + is_default = True, + python_version = "3.9", +) + +python.toolchain( + is_default = False, + python_version = "3.12", +) + +pip = use_extension("@rules_python//python/extensions:pip.bzl", "pip", dev_dependency = True) +pip.parse( + hub_name = "django", + requirements_lock = "//py/tests/virtual/django:requirements.txt", + python_version = "3.9", +) +pip.parse( + hub_name = "pypi", + requirements_lock = "//:requirements.txt", + python_version = "3.9", +) +use_repo(pip, "django", "pypi") + +http_file = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_file") + +http_file( + name = "django_4_2_4", + urls = ["https://files.pythonhosted.org/packages/7f/9e/fc6bab255ae10bc57fa2f65646eace3d5405fbb7f5678b90140052d1db0f/Django-4.2.4-py3-none-any.whl"], + sha256 = "860ae6a138a238fc4f22c99b52f3ead982bb4b1aad8c0122bcd8c8a3a02e409d", + downloaded_file_path = "Django-4.2.4-py3-none-any.whl", +) + +http_file( + name = "django_4_1_10", + urls = ["https://files.pythonhosted.org/packages/34/25/8a218de57fc9853297a1a8e4927688eff8107d5bc6dcf6c964c59801f036/Django-4.1.10-py3-none-any.whl"], + sha256 = "26d0260c2fb8121009e62ffc548b2398dea2522b6454208a852fb0ef264c206c", + downloaded_file_path = "Django-4.1.10-py3-none-any.whl", +) + +http_file( + name = "sqlparse_0_4_0", + urls = ["https://files.pythonhosted.org/packages/10/96/36c136013c4a6ecb8c6aa3eed66e6dcea838f85fd80e1446499f1dabfac7/sqlparse-0.4.0-py3-none-any.whl"], + sha256 = "0523026398aea9c8b5f7a4a6d5c0829c285b4fbd960c17b5967a369342e21e01", + downloaded_file_path = "sqlparse-0.4.0-py3-none-any.whl", +) diff --git a/bazel/include/rust.MODULE.bazel b/bazel/include/rust.MODULE.bazel new file mode 100644 index 00000000..c2d022eb --- /dev/null +++ b/bazel/include/rust.MODULE.bazel @@ -0,0 +1,212 @@ +"Rust configuration" + +bazel_dep(name = "rules_rust", version = "0.63.0") +bazel_dep(name = "openssl", version = "3.3.1.bcr.6") + +RUST_EDITION = "2024" + +RUST_VERSION = "1.88.0" + +rust = use_extension( + "@rules_rust//rust:extensions.bzl", + "rust", +) + +crate = use_extension( + "@rules_rust//crate_universe:extension.bzl", + "crate", +) +crate.from_cargo( + name = "crates", + cargo_lockfile = "//:Cargo.lock", + # Apparently not needed under bzlmod? + # lockfile = "//:Cargo.Bazel.lock", + manifests = [ + "//:Cargo.toml", + "//py/tools/py:Cargo.toml", + "//py/tools/unpack_bin:Cargo.toml", + "//py/tools/venv_bin:Cargo.toml", + "//py/tools/venv_shim:Cargo.toml", + ], + supported_platform_triples = [ + "aarch64-apple-darwin", + "aarch64-unknown-linux-gnu", + "x86_64-apple-darwin", + "x86_64-unknown-linux-gnu", + ], +) +use_repo(crate, "crates") + +# These override the default rust_repository_sets created by rust_register_toolchain. They must be named exactly as follows. +# NB: The first call for a particular name may set the `edition`, `exec_triple`, and `versions` attributes, the subsequent calls shoud not set it or else Bazel will fail with, +# "Error in fail: You must only set edition on the first call to repository_set for a particular name but it was set multiple times for rust_linux_x86_64" +# "Error in fail: You must only set exec_triple on the first call to repository_set for a particular name but it was set multiple times for rust_linux_x86_64" +# "Error in fail: You must only set versions on the first call to repository_set for a particular name but it was set multiple times for rust_linux_x86_64" + +# Execution platform : linux x86 (x86_64-unknown-linux-gnu) +# -> linux x86_64 (gnu) +rust.repository_set( + name = "rust_linux_x86_64", + edition = RUST_EDITION, # "edition" only set in first instance of "rust_linux_x86_64" repository_set (see comment above) + exec_triple = "x86_64-unknown-linux-gnu", # "exec_triple" only set in first instance of "rust_linux_x86_64" repository_set (see comment above) + target_compatible_with = [ + "@//bazel/platforms/linkers:unknown", + "@platforms//cpu:x86_64", + "@platforms//os:linux", + ], + target_triple = "x86_64-unknown-linux-gnu", + versions = [RUST_VERSION], # "versions" only set in first instance of "rust_linux_x86_64" repository_set (see comment above) +) +# -> linux x86_64 (musl) +rust.repository_set( + name = "rust_linux_x86_64", + target_compatible_with = [ + "@//bazel/platforms/linkers:musl", + "@platforms//cpu:x86_64", + "@platforms//os:linux", + ], + target_triple = "x86_64-unknown-linux-musl", +) +# -> linux arm (musl) +rust.repository_set( + name = "rust_linux_x86_64", + target_compatible_with = [ + "@//bazel/platforms/linkers:musl", + "@platforms//cpu:arm64", + "@platforms//os:linux", + ], + target_triple = "aarch64-unknown-linux-musl", +) +# -> darwin x86 +rust.repository_set( + name = "rust_linux_x86_64", + target_compatible_with = [ + "@platforms//cpu:x86_64", + "@platforms//os:macos", + ], + target_triple = "x86_64-apple-darwin", +) +# -> darwin arm +rust.repository_set( + name = "rust_linux_x86_64", + target_compatible_with = [ + "@platforms//cpu:arm64", + "@platforms//os:macos", + ], + target_triple = "aarch64-apple-darwin", +) + +# Execution platform : linux arm (aarch64-unknown-linux-gnu) +# -> linux arm (gnu) +rust.repository_set( + name = "rust_linux_aarch64", + edition = RUST_EDITION, # "edition" only set in first instance of "rust_linux_aarch64" repository_set (see comment above) + exec_triple = "aarch64-unknown-linux-gnu", # "exec_triple" only set in first instance of "rust_linux_aarch64" repository_set (see comment above) + target_compatible_with = [ + "@//bazel/platforms/linkers:unknown", + "@platforms//cpu:aarch64", + "@platforms//os:linux", + ], + target_triple = "aarch64-unknown-linux-gnu", + versions = [RUST_VERSION], # "versions" only set in first instance of "rust_linux_aarch64" repository_set (see comment above) +) +# -> linux arm (musl) +rust.repository_set( + name = "rust_linux_aarch64", + target_compatible_with = [ + "@//bazel/platforms/linkers:musl", + "@platforms//cpu:aarch64", + "@platforms//os:linux", + ], + target_triple = "aarch64-unknown-linux-musl", +) + +# Execution platform : darwin x86 (x86_64-apple-darwin) +# -> linux x86 (musl) +rust.repository_set( + name = "rust_darwin_x86_64", + edition = RUST_EDITION, # "edition" only set in first instance of "rust_darwin_x86_64" repository_set (see comment above) + exec_triple = "x86_64-apple-darwin", # "exec_triple" only set in first instance of "rust_darwin_x86_64" repository_set (see comment above) + target_compatible_with = [ + "@//bazel/platforms/linkers:musl", + "@platforms//cpu:x86_64", + "@platforms//os:linux", + ], + target_triple = "x86_64-unknown-linux-musl", + versions = [RUST_VERSION], # "versions" only set in first instance of "rust_darwin_x86_64" repository_set (see comment above) +) +# -> linux arm (musl) +rust.repository_set( + name = "rust_darwin_x86_64", + target_compatible_with = [ + "@//bazel/platforms/linkers:musl", + "@platforms//cpu:arm64", + "@platforms//os:linux", + ], + target_triple = "aarch64-unknown-linux-musl", +) +# -> darwin x86 +rust.repository_set( + name = "rust_darwin_x86_64", + target_compatible_with = [ + "@platforms//cpu:x86_64", + "@platforms//os:macos", + ], + target_triple = "x86_64-apple-darwin", +) +# -> darwin arm +rust.repository_set( + name = "rust_darwin_x86_64", + target_compatible_with = [ + "@platforms//cpu:arm64", + "@platforms//os:macos", + ], + target_triple = "aarch64-apple-darwin", +) + +# Execution platform : darwin arm (aarch64-apple-darwin) +# -> linux x86 (musl) +rust.repository_set( + name = "rust_darwin_aarch64", + edition = RUST_EDITION, # "edition" only set in first instance of "rust_darwin_aarch64" repository_set (see comment above) + exec_triple = "aarch64-apple-darwin", # "exec_triple" only set in first instance of "rust_darwin_aarch64" repository_set (see comment above) + target_compatible_with = [ + "@//bazel/platforms/linkers:musl", + "@platforms//cpu:x86_64", + "@platforms//os:linux", + ], + target_triple = "x86_64-unknown-linux-musl", + versions = [RUST_VERSION], # "versions" only set in first instance of "rust_darwin_aarch64" repository_set (see comment above) +) +# -> linux arm (musl) +rust.repository_set( + name = "rust_darwin_aarch64", + target_compatible_with = [ + "@//bazel/platforms/linkers:musl", + "@platforms//cpu:arm64", + "@platforms//os:linux", + ], + target_triple = "aarch64-unknown-linux-musl", +) +# -> darwin x86 +rust.repository_set( + name = "rust_darwin_aarch64", + target_compatible_with = [ + "@platforms//cpu:x86_64", + "@platforms//os:macos", + ], + target_triple = "x86_64-apple-darwin", +) +# -> darwin arm +rust.repository_set( + name = "rust_darwin_aarch64", + target_compatible_with = [ + "@platforms//cpu:arm64", + "@platforms//os:macos", + ], + target_triple = "aarch64-apple-darwin", +) + +use_repo(rust, "rust_toolchains") + +register_toolchains("@rust_toolchains//:all") diff --git a/bazel/include/telemetry.MODULE.bazel b/bazel/include/telemetry.MODULE.bazel new file mode 100644 index 00000000..3b46ecee --- /dev/null +++ b/bazel/include/telemetry.MODULE.bazel @@ -0,0 +1,3 @@ +bazel_dep(name = "aspect_tools_telemetry", version = "0.2.6") +tel = use_extension("@aspect_tools_telemetry//:extension.bzl", "telemetry") +use_repo(tel, "aspect_tools_telemetry_report") diff --git a/bazel/patches/BUILD.bazel b/bazel/patches/BUILD.bazel new file mode 100644 index 00000000..e69de29b diff --git a/bazel/patches/toolchains_llvm.patch b/bazel/patches/toolchains_llvm.patch new file mode 100644 index 00000000..4ca8448e --- /dev/null +++ b/bazel/patches/toolchains_llvm.patch @@ -0,0 +1,80 @@ +diff --git a/toolchain/cc_toolchain_config.bzl b/toolchain/cc_toolchain_config.bzl +index 3a66da7..3f5acc4 100644 +--- a/toolchain/cc_toolchain_config.bzl ++++ b/toolchain/cc_toolchain_config.bzl +@@ -192,11 +192,18 @@ def cc_toolchain_config( + archive_flags = [] + + # Linker flags: +- if exec_os == "darwin" and not is_xcompile: +- # lld is experimental for Mach-O, so we use the native ld64 linker. +- # TODO: How do we cross-compile from Linux to Darwin? +- use_lld = False ++ ld = "ld.lld" ++ if target_os == "darwin": ++ use_lld = True ++ ++ ld = "ld64.lld" ++ ld_path = toolchain_path_prefix + "/bin/" + ld ++ compile_flags.append("-mmacosx-version-min=12.0") ++ + link_flags.extend([ ++ "-mmacosx-version-min=12.0", ++ "-Wl,-platform_version,macos,12.0,12.0", ++ "--ld-path=" + ld_path, + "-headerpad_max_install_names", + "-fobjc-link-runtime", + ]) +@@ -219,7 +226,9 @@ def cc_toolchain_config( + # not an option because it is not a cross-linker, so lld is the + # only option. + use_lld = True ++ ld_path = toolchain_path_prefix + "/bin/" + ld + link_flags.extend([ ++ "--ld-path=" + ld_path, + "-fuse-ld=lld", + "-Wl,--build-id=md5", + "-Wl,--hash-style=gnu", +@@ -252,10 +261,6 @@ def cc_toolchain_config( + if use_lld: + # For single-platform builds, we can statically link the bundled + # libraries. +- link_flags.extend([ +- "-l:libc++.a", +- "-l:libc++abi.a", +- ]) + compiler_rt_link_flags = ["-rtlib=compiler-rt"] + libunwind_link_flags = [ + "-l:libunwind.a", +@@ -306,10 +311,6 @@ def cc_toolchain_config( + "-std=" + cxx_standard, + "-stdlib=libstdc++", + ] +- +- link_flags.extend([ +- "-l:libstdc++.a", +- ]) + elif stdlib == "libc": + cxx_flags = [ + "-std=" + cxx_standard, +@@ -347,7 +348,7 @@ def cc_toolchain_config( + "dwp": tools_path_prefix + "llvm-dwp", + "gcc": wrapper_bin_prefix + "cc_wrapper.sh", + "gcov": tools_path_prefix + "llvm-profdata", +- "ld": tools_path_prefix + "ld.lld" if use_lld else "/usr/bin/ld", ++ "ld": tools_path_prefix + ld if use_lld else "/usr/bin/ld", + "llvm-cov": tools_path_prefix + "llvm-cov", + "llvm-profdata": tools_path_prefix + "llvm-profdata", + "nm": tools_path_prefix + "llvm-nm", +diff --git a/toolchain/internal/common.bzl b/toolchain/internal/common.bzl +index b5d8e57..9384e13 100644 +--- a/toolchain/internal/common.bzl ++++ b/toolchain/internal/common.bzl +@@ -34,6 +34,7 @@ _toolchain_tools = { + "clang-tidy", + "clangd", + "ld.lld", ++ "ld64.lld", + "llvm-ar", + "llvm-dwp", + "llvm-profdata", diff --git a/bazel/platforms/BUILD.bazel b/bazel/platforms/BUILD.bazel new file mode 100644 index 00000000..6ab73bf8 --- /dev/null +++ b/bazel/platforms/BUILD.bazel @@ -0,0 +1,30 @@ +load("//bazel/platforms/config:defs.bzl", "linker_suffix", "platforms") + +[platform( + name = "{}_{}{}".format( + p.os, + p.cpu, + linker_suffix( + "_", + p.linker, + ), + ), + constraint_values = [ + "@platforms//os:{}".format(p.os), + "@platforms//cpu:{}".format(p.cpu), + "@//bazel/platforms/linkers:{}".format(p.linker), + ], + visibility = ["//visibility:public"], +) for p in platforms] + +alias( + name = "linux_amd64", + actual = ":linux_x86_64", + visibility = ["//visibility:public"], +) + +alias( + name = "linux_arm64", + actual = ":linux_aarch64", + visibility = ["//visibility:public"], +) diff --git a/bazel/platforms/config/BUILD.bazel b/bazel/platforms/config/BUILD.bazel new file mode 100644 index 00000000..c19d8023 --- /dev/null +++ b/bazel/platforms/config/BUILD.bazel @@ -0,0 +1,31 @@ +load(":defs.bzl", "platforms") + +config_setting( + name = "aarch64", + constraint_values = [ + "@platforms//cpu:aarch64", + ], + visibility = ["//visibility:public"], +) + +config_setting( + name = "x86_64", + constraint_values = [ + "@platforms//cpu:x86_64", + ], + visibility = ["//visibility:public"], +) + +[config_setting( + name = "{}_{}{}".format( + p.os, + p.cpu, + "_{}".format(p.linker) if p.linker != "unknown" else "", + ), + constraint_values = [ + "@platforms//os:{}".format(p.os), + "@platforms//cpu:{}".format(p.cpu), + "@//bazel/platforms/linkers:{}".format(p.linker), + ], + visibility = ["//visibility:public"], +) for p in platforms] diff --git a/bazel/platforms/config/defs.bzl b/bazel/platforms/config/defs.bzl new file mode 100644 index 00000000..eb49c83b --- /dev/null +++ b/bazel/platforms/config/defs.bzl @@ -0,0 +1,19 @@ +"""This module generated the platforms list for the build matrix.""" + +def linker_suffix(delimiter, linker): + if linker == "unknown": + return "" + return delimiter + linker + +cpus = ["aarch64", "x86_64"] +os_to_linker = { + "linux": ["musl", "unknown"], + "macos": ["unknown"], +} + +platforms = [ + struct(os = os, cpu = cpu, linker = linker) + for os in os_to_linker + for linker in os_to_linker[os] + for cpu in cpus +] diff --git a/bazel/platforms/linkers/BUILD.bazel b/bazel/platforms/linkers/BUILD.bazel new file mode 100644 index 00000000..545a0e2e --- /dev/null +++ b/bazel/platforms/linkers/BUILD.bazel @@ -0,0 +1,19 @@ +constraint_setting( + name = "linker", + default_constraint_value = ":unknown", + visibility = ["//visibility:public"], +) + +constraint_value( + name = "musl", + constraint_setting = ":linker", + visibility = ["//visibility:public"], +) + +# Default linker for anyone not setting the linker to `musl`. +# You shouldn't ever need to set this value manually. +constraint_value( + name = "unknown", + constraint_setting = ":linker", + visibility = ["//visibility:public"], +) diff --git a/bazel/platforms/toolchains/BUILD.bazel b/bazel/platforms/toolchains/BUILD.bazel new file mode 100644 index 00000000..a89f9325 --- /dev/null +++ b/bazel/platforms/toolchains/BUILD.bazel @@ -0,0 +1,27 @@ +load(":defs.bzl", "platforms") + +[toolchain( + name = "{}_{}_{}_{}_llvm".format( + p.exec_os, + p.exec_cpu, + p.tgt_os, + p.tgt_cpu, + ), + exec_compatible_with = [ + "@platforms//os:{}".format(p.exec_os), + "@platforms//cpu:{}".format(p.exec_cpu), + ], + target_compatible_with = [ + "@platforms//os:{}".format(p.tgt_os), + "@platforms//cpu:{}".format(p.tgt_cpu), + "//bazel/platforms/linkers:unknown", + ], + toolchain = "@llvm_toolchain_{}_{}//:cc-clang-{}-{}".format( + p.exec_os, + p.exec_cpu, + p.tgt_cpu, + p.tgt_os if p.tgt_os != "macos" else "darwin", + ), + toolchain_type = "@bazel_tools//tools/cpp:toolchain_type", + visibility = ["//visibility:public"], +) for p in platforms] diff --git a/bazel/platforms/toolchains/defs.bzl b/bazel/platforms/toolchains/defs.bzl new file mode 100644 index 00000000..2135fd10 --- /dev/null +++ b/bazel/platforms/toolchains/defs.bzl @@ -0,0 +1,19 @@ +"""This module registers all the LLVM toolchains that we want to use.""" + +execution_oses = ["macos", "linux"] +execution_cpus = ["aarch64", "x86_64"] +target_oses = ["macos", "linux"] +target_cpus = ["aarch64", "x86_64"] + +platforms = [ + struct(exec_os = exec_os, exec_cpu = exec_cpu, tgt_os = tgt_os, tgt_cpu = tgt_cpu) + for exec_os in execution_oses + for exec_cpu in execution_cpus + for tgt_os in target_oses + for tgt_cpu in target_cpus +] + +# buildifier: disable=unnamed-macro +def register_llvm_toolchains(): + for p in platforms: + native.register_toolchains("//bazel/platforms/toolchains:{}_{}_{}_{}_llvm".format(p.exec_os, p.exec_cpu, p.tgt_os, p.tgt_cpu)) diff --git a/bazel/release/BUILD.bazel b/bazel/release/BUILD.bazel new file mode 100644 index 00000000..e2007963 --- /dev/null +++ b/bazel/release/BUILD.bazel @@ -0,0 +1,17 @@ +exports_files(["create_release.sh"]) + +config_setting( + name = "is_opt", + values = { + "compilation_mode": "opt", + }, + visibility = ["//visibility:public"], +) + +config_setting( + name = "is_debug", + values = { + "compilation_mode": "dbg", + }, + visibility = ["//visibility:public"], +) \ No newline at end of file diff --git a/bazel/release/create_release.sh b/bazel/release/create_release.sh new file mode 100755 index 00000000..a7371672 --- /dev/null +++ b/bazel/release/create_release.sh @@ -0,0 +1,21 @@ +#!/usr/bin/env bash + +set -o errexit -o nounset -o pipefail + +echo '#!/usr/bin/env bash' +echo 'set -o errexit -o nounset -o pipefail' +# shellcheck disable=SC2016 +echo 'dst=$1' +# shellcheck disable=SC2016 +echo 'mkdir -p "${dst}"' + +for artifact in "$@"; do + echo "echo \"Copying ${artifact} to \${dst}\"" + echo "if [ -d \"${artifact}\" ]; then" + echo " for f in \"${artifact}\"/*; do" + echo " cp \"\${f}\" \"\${dst}\"" + echo " done" + echo "else" + echo " cp \"${artifact}\" \"\${dst}\"" + echo "fi" +done diff --git a/bazel/release/hashes.bzl b/bazel/release/hashes.bzl new file mode 100644 index 00000000..316cee51 --- /dev/null +++ b/bazel/release/hashes.bzl @@ -0,0 +1,76 @@ +"""Rule for generating integrity files + +Default output is a .sha256 file but .sha1 and .md5 files are also available +via output groups. + +Based on https://github.com/bazelbuild/examples/blob/main/rules/implicit_output/hash.bzl +""" + +def _impl(ctx): + # Create actions to generate the three output files. + # Actions are run only when the corresponding file is requested. + + if ctx.file.src.is_directory: + fail("src expected to be a file but got a directory") + + md5out = ctx.actions.declare_file("{}.md5".format(ctx.file.src.basename)) + ctx.actions.run_shell( + outputs = [md5out], + inputs = [ctx.file.src], + command = "ROOT=$PWD && cd {} && md5sum {} > $ROOT/{}".format(ctx.file.src.dirname, ctx.file.src.basename, md5out.path), + ) + + sha1out = ctx.actions.declare_file("{}.sha1".format(ctx.file.src.basename)) + ctx.actions.run_shell( + outputs = [sha1out], + inputs = [ctx.file.src], + command = "ROOT=$PWD && cd {} && sha1sum {} > $ROOT/{}".format(ctx.file.src.dirname, ctx.file.src.basename, sha1out.path), + ) + + sha256out = ctx.actions.declare_file("{}.sha256".format(ctx.file.src.basename)) + ctx.actions.run_shell( + outputs = [sha256out], + inputs = [ctx.file.src], + command = "ROOT=$PWD && cd {dirname} && $ROOT/{sha256sum} {basename} > $ROOT/{path}".format( + dirname = ctx.file.src.dirname, + sha256sum = ctx.executable._sha256sum.path, + basename = ctx.file.src.basename, + path = sha256out.path, + ), + tools = [ctx.executable._sha256sum], + ) + + # By default (if you run `bazel build` on this target, or if you use it as a + # source of another target), only the sha256 is computed. + return [ + DefaultInfo( + files = depset([sha256out]), + ), + OutputGroupInfo( + md5 = depset([md5out]), + sha1 = depset([sha1out]), + sha256 = depset([sha256out]), + ), + ] + +_hashes = rule( + implementation = _impl, + attrs = { + "src": attr.label( + allow_single_file = True, + mandatory = True, + ), + "_sha256sum": attr.label( + executable = True, + cfg = "exec", + default = "//bazel/release/sha256sum", + ), + }, +) + +def hashes(name, src, **kwargs): + _hashes( + name = name, + src = src, + **kwargs + ) diff --git a/bazel/release/release.bzl b/bazel/release/release.bzl new file mode 100644 index 00000000..fd9a1a41 --- /dev/null +++ b/bazel/release/release.bzl @@ -0,0 +1,26 @@ +"""This module provides the macros for performing a release. +""" + +def release(name, targets, **kwargs): + """The release macro creates the artifact copier script. + + It's an executable script that copies all artifacts produced by the given + targets into the provided destination. See .github/workflows/release.yml. + + Args: + name: the name of the genrule. + targets: a list of filegroups passed to the artifact copier. + **kwargs: extra arguments. + """ + native.genrule( + name = name, + srcs = targets, + outs = [name + ".sh"], + executable = True, + cmd = "./$(location //bazel/release:create_release.sh) {locations} > \"$@\"".format( + locations = " ".join(["$(locations {})".format(target) for target in targets]), + ), + tools = ["//bazel/release:create_release.sh"], + tags = kwargs.get("tags", []) + ["manual"], + **kwargs + ) diff --git a/bazel/release/sha256sum/BUILD.bazel b/bazel/release/sha256sum/BUILD.bazel new file mode 100644 index 00000000..4bef6d21 --- /dev/null +++ b/bazel/release/sha256sum/BUILD.bazel @@ -0,0 +1,17 @@ +load("@rules_go//go:def.bzl", "go_binary", "go_library") + +go_library( + name = "sha256sum_lib", + srcs = ["main.go"], + importpath = "github.com/aspect-build/silo/bazel/release/sha256sum", + visibility = ["//visibility:private"], +) + +go_binary( + name = "sha256sum", + embed = [":sha256sum_lib"], + visibility = [ + "//bazel/release:__pkg__", + "//cli:__pkg__", + ], +) diff --git a/bazel/release/sha256sum/main.go b/bazel/release/sha256sum/main.go new file mode 100644 index 00000000..18f27228 --- /dev/null +++ b/bazel/release/sha256sum/main.go @@ -0,0 +1,32 @@ +package main + +import ( + "crypto/sha256" + "fmt" + "io" + "log" + "os" +) + +func main() { + var input io.Reader + var filename string + if len(os.Args) == 1 { + input = os.Stdin + filename = "-" + } else { + f, err := os.Open(os.Args[1]) + if err != nil { + log.Fatal(err) + } + defer f.Close() + input = f + filename = os.Args[1] + } + + hash := sha256.New() + if _, err := io.Copy(hash, input); err != nil { + log.Fatal(err) + } + fmt.Printf("%x %s\n", hash.Sum(nil), filename) +} diff --git a/bazel/rust/BUILD.bazel b/bazel/rust/BUILD.bazel new file mode 100644 index 00000000..e69de29b diff --git a/bazel/rust/README.md b/bazel/rust/README.md new file mode 100644 index 00000000..8abd16e4 --- /dev/null +++ b/bazel/rust/README.md @@ -0,0 +1,21 @@ +# Rust with Bazel + +This directory contains configuration and scripts for using Rust with bazel. + +## Managing Dependencies + +When adding new Rust dependencies via Cargo, you must run repin to make them available to Bazel: + +```bash +# First, add dependency to your Cargo.toml +cargo add my_dependency + +# Then repin dependencies for Bazel +CARGO_BAZEL_ISOLATED=1 CARGO_BAZEL_REPIN=1 bazel build //... +``` + +If you are adding a crate which is used in multiple `Cargo.toml` files strongly consider making the create a workspace dependency. + +``` +cargo add --workspace-root YOUR_CRATE +``` diff --git a/bazel/rust/defs.bzl b/bazel/rust/defs.bzl new file mode 100644 index 00000000..caa00a8e --- /dev/null +++ b/bazel/rust/defs.bzl @@ -0,0 +1,110 @@ +"""Rust rule defaults""" + +load("@aspect_bazel_lib//lib:expand_template.bzl", _expand_template = "expand_template") +load("@rules_rust//rust:defs.bzl", _rust_binary = "rust_binary", _rust_library = "rust_library", _rust_test = "rust_test") + +_default_platform = select({ + # Force Linux binaries to be built with musl + "//bazel/platforms/config:linux_aarch64": "//bazel/platforms:linux_aarch64_musl", + "//bazel/platforms/config:linux_x86_64": "//bazel/platforms:linux_x86_64_musl", + # Non-Linux binaries should just build with their default platforms + "//conditions:default": None, +}) + +def rust_binary(name, rustc_env_files = [], version_key = "", crate_features = [], **kwargs): + """ + Macro for rust_binary defaults. + + Args: + name: Name of the rust_binary target + rustc_env_files: Additional env files to pass to the rust compiler + version_key: Stamp key to use for version replacement at compile time + crate_features: Create features to enable for the binary target + **kwargs: Additional args to pass to rust_binary + """ + + if version_key != None: + rustc_env_file = "{}_rustc_env_file".format(name) + _expand_template( + name = "{}_env_file".format(name), + out = rustc_env_file, + stamp_substitutions = {"0.0.0-DEV": "{{%s}}" % (version_key)}, + template = [ + "CARGO_PKG_VERSION=0.0.0-DEV", + ], + ) + rustc_env_files = rustc_env_files + [rustc_env_file] + + platform = kwargs.pop("platform", _default_platform) + + _rust_binary( + name = name, + rustc_env_files = rustc_env_files, + rustc_flags = select({ + "//bazel/release:is_opt": [ + "-Ccodegen-units=1", + "-Cpanic=abort", + "-Copt-level=3", + "-Cstrip=symbols", + ], + "//conditions:default": [ + "-Copt-level=0", + ], + }), + crate_features = crate_features + ["bazel"], + platform = platform, + **kwargs + ) + +def rust_test(name, crate_features = [], **kwargs): + platform = kwargs.pop("platform", _default_platform) + + _rust_test( + name = name, + crate_features = crate_features + ["bazel"], + platform = platform, + **kwargs + ) + +def rust_library(name, rustc_env_files = [], version_key = "", crate_features = [], **kwargs): + """ + Macro for rust_library defaults. + + Args: + name: Name of the rust_library target + rustc_env_files: Additional env files to pass to the rust compiler + version_key: Stamp key to use for version replacement at compile time + crate_features: Create features to enable for the library target + **kwargs: Additional args to pass to rust_library + """ + stamp = 0 + if version_key != None: + rustc_env_file = "{}_rustc_env_file".format(name) + _expand_template( + name = "{}_env_file".format(name), + out = rustc_env_file, + stamp_substitutions = {"0.0.0-DEV": "{{%s}}" % (version_key)}, + template = [ + "CARGO_PKG_VERSION=0.0.0-DEV", + ], + ) + stamp = -1 # workaround https://github.com/bazelbuild/rules_rust/pull/3503 + rustc_env_files = rustc_env_files + [rustc_env_file] + _rust_library( + name = name, + rustc_env_files = rustc_env_files, + rustc_flags = select({ + "//bazel/release:is_opt": [ + "-Ccodegen-units=1", + "-Cpanic=abort", + "-Copt-level=3", + "-Cstrip=symbols", + ], + "//conditions:default": [ + "-Copt-level=0", + ], + }), + crate_features = crate_features + ["bazel"], + stamp = stamp, + **kwargs + ) diff --git a/bazel/rust/multi_platform_rust_binaries.bzl b/bazel/rust/multi_platform_rust_binaries.bzl new file mode 100644 index 00000000..65f6079d --- /dev/null +++ b/bazel/rust/multi_platform_rust_binaries.bzl @@ -0,0 +1,121 @@ +"""Release rule for a rust binary""" + +load("@aspect_bazel_lib//lib:transitions.bzl", "platform_transition_filegroup") +load("@bazel_skylib//rules:copy_file.bzl", "copy_file") +load("@rules_pkg//pkg:mappings.bzl", "pkg_attributes", "pkg_files") +load("@rules_pkg//pkg:pkg.bzl", "pkg_tar", "pkg_zip") +load("@with_cfg.bzl", "with_cfg") +load("//bazel/release:hashes.bzl", "hashes") + +opt_filegroup, _opt_filegroup_internal = with_cfg(native.filegroup).set("compilation_mode", "opt").build() + +TARGET_TRIPLES = [ + ("x86_64_unknown_linux_musl", "linux_x86_64_musl"), + ("aarch64_unknown_linux_musl", "linux_aarch64_musl"), + ("x86_64_apple_darwin", "macos_x86_64"), + ("aarch64_apple_darwin", "macos_aarch64"), +] + +# Map a Rust naming scheme to a custom name. +TARGET_NAMING_SCHEME = {} + +def multi_platform_rust_binaries(name, target, name_scheme = TARGET_NAMING_SCHEME, target_triples = TARGET_TRIPLES, prefix = "", pkg_type = "zip", **kwargs): + """The multi_platform_rust_binaries macro creates a filegroup containing rust binaries that are ready for release. + + Args: + name: The name of the filegroup containing all rust targets produced by this macro. + target: rust_binary that releases will be created for. + name_scheme: Mapping overriding the "standard" naming for a triple to a custom string. + target_triples: Map of target tiples to the target platform to build for. + prefix: An optional prefix added to the output rust binary file name. + pkg_type: The packaging type that the {name}.packaged target outputs, can be one of 'zip' or 'tar'. + **kwargs: All other args, forwarded to the output filegroups. + """ + + mac_bins = [] + linux_bins = [] + + mac_pkged = [] + linux_pkged = [] + + bin = Label(target).name + pkg_rule = pkg_zip if pkg_type == "zip" else pkg_tar + + for (target_triple, target_platform) in target_triples: + target_naming = name_scheme.get(target_triple, target_triple) + + transition_build = "{}_{}_build".format(bin, target_naming) + platform_transition_filegroup( + name = transition_build, + srcs = [target], + target_platform = "//bazel/platforms:{}".format(target_platform), + tags = ["manual"], + ) + + copy_name = "{}{}_{}".format(prefix, bin, target_naming) + copy_file( + name = "{}_copy".format(copy_name), + src = transition_build, + out = copy_name, + tags = ["manual"], + ) + + bin_sha256 = "{}_bin_hash".format(copy_name) + hashes( + name = bin_sha256, + src = copy_name, + tags = ["manual"], + ) + + pkged_files = "{}{}_{}_pkged_files".format(prefix, bin, target_naming) + pkg_files( + name = pkged_files, + srcs = [copy_name], + renames = {copy_name: bin}, + attributes = pkg_attributes(mode = "0744"), + strip_prefix = "/", + tags = ["manual"], + ) + + pkged = "{}{}_{}_packed".format(prefix, bin, target_naming) + pkg_rule( + name = pkged, + srcs = [ + pkged_files, + ], + out = "{}.{}".format(copy_name, pkg_type), + # Why is -1 not the default :/ + # This also sets the modified time in UTC. + stamp = -1, + tags = ["manual"], + ) + + pkged_sha256 = "{}_pkged_hash".format(copy_name) + hashes( + name = pkged_sha256, + src = pkged, + tags = ["manual"], + ) + + bin_outs = [copy_name, bin_sha256] + pkged_outs = [pkged, pkged_sha256] + if target_platform.startswith("linux"): + linux_bins.extend(bin_outs) + linux_pkged.extend(pkged_outs) + else: + mac_bins.extend(bin_outs) + mac_pkged.extend(pkged_outs) + + opt_filegroup( + name = name, + srcs = linux_bins + mac_bins, + tags = kwargs.get("tags", []), + visibility = kwargs.get("visibility", []), + ) + + opt_filegroup( + name = "{}.packaged".format(name), + srcs = linux_pkged + mac_pkged, + tags = kwargs.get("tags", []), + visibility = kwargs.get("visibility", []), + ) diff --git a/examples/multi_version/BUILD.bazel b/examples/multi_version/BUILD.bazel index 87eb71b2..b06d2de4 100644 --- a/examples/multi_version/BUILD.bazel +++ b/examples/multi_version/BUILD.bazel @@ -5,13 +5,13 @@ py_binary( srcs = ["say.py"], python_version = "3.8.12", deps = [ - "@pypi_cowsay//:pkg", + "@pypi//cowsay", ], ) py_pytest_main( name = "__test__", - deps = ["@pypi_pytest//:pkg"], + deps = ["@pipi//pytest"], ) py_test( diff --git a/examples/py_binary/BUILD.bazel b/examples/py_binary/BUILD.bazel index 23fd4bac..5a38499c 100644 --- a/examples/py_binary/BUILD.bazel +++ b/examples/py_binary/BUILD.bazel @@ -13,6 +13,6 @@ py_binary( name = "py_binary", srcs = [":stamped"], deps = [ - "@pypi_cowsay//:pkg", + "@pypi//cowsay", ], ) diff --git a/examples/py_pex_binary/BUILD.bazel b/examples/py_pex_binary/BUILD.bazel index 1fb85906..64809b52 100644 --- a/examples/py_pex_binary/BUILD.bazel +++ b/examples/py_pex_binary/BUILD.bazel @@ -9,7 +9,7 @@ py_binary( }, deps = [ "@bazel_tools//tools/python/runfiles", - "@pypi_cowsay//:pkg", + "@pypi//cowsay", ], ) diff --git a/examples/py_venv/BUILD.bazel b/examples/py_venv/BUILD.bazel index ae0ee9a3..e28b5b7c 100644 --- a/examples/py_venv/BUILD.bazel +++ b/examples/py_venv/BUILD.bazel @@ -15,7 +15,7 @@ expand_template( py_venv( name = "venv", deps = [ - "@pypi_cowsay//:pkg", + "@pypi//cowsay", ], ) @@ -41,7 +41,7 @@ py_venv_binary( ], main = ":stamped", deps = [ - "@pypi_cowsay//:pkg", + "@pypi//cowsay", ], ) diff --git a/examples/pytest/BUILD.bazel b/examples/pytest/BUILD.bazel index 9256da54..a3e192f7 100644 --- a/examples/pytest/BUILD.bazel +++ b/examples/pytest/BUILD.bazel @@ -24,7 +24,7 @@ py_test( "@pypi_coverage//:pkg", "@pypi_ftfy//:pkg", "@pypi_neptune//:pkg", - "@pypi_pytest//:pkg", + "@pipi//pytest", ], ) @@ -36,5 +36,5 @@ py_test( package_collisions = "warning", pytest_main = True, shard_count = 2, - deps = ["@pypi_pytest//:pkg"], + deps = ["@pipi//pytest"], ) diff --git a/internal_deps.bzl b/internal_deps.bzl deleted file mode 100644 index dc2a8e22..00000000 --- a/internal_deps.bzl +++ /dev/null @@ -1,136 +0,0 @@ -"""Our "development" dependencies - -Users should *not* need to install these. If users see a load() -statement from these, that's a bug in our distribution. -""" - -load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_file", _http_archive = "http_archive") -load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") - -def http_archive(name, **kwargs): - maybe(_http_archive, name = name, **kwargs) - -def rules_py_internal_deps(): - "Fetch deps needed for local development" - http_archive( - name = "build_bazel_integration_testing", - urls = [ - "https://github.com/bazelbuild/bazel-integration-testing/archive/7d3e9aee60e2320b1987b871cfaa85b0fca4fdd5.zip", - ], - strip_prefix = "bazel-integration-testing-7d3e9aee60e2320b1987b871cfaa85b0fca4fdd5", - sha256 = "f4abdacd838a10a2ac01b813664a53ddf684bb3fedf25dc35765725740cc85e3", - ) - - http_archive( - name = "io_bazel_rules_go", - sha256 = "80a98277ad1311dacd837f9b16db62887702e9f1d1c4c9f796d0121a46c8e184", - urls = [ - "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.46.0/rules_go-v0.46.0.zip", - "https://github.com/bazelbuild/rules_go/releases/download/v0.46.0/rules_go-v0.46.0.zip", - ], - ) - - http_archive( - name = "bazel_gazelle", - sha256 = "75df288c4b31c81eb50f51e2e14f4763cb7548daae126817247064637fd9ea62", - urls = [ - "https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.36.0/bazel-gazelle-v0.36.0.tar.gz", - "https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.36.0/bazel-gazelle-v0.36.0.tar.gz", - ], - ) - - # Override bazel_skylib distribution to fetch sources instead - # so that the gazelle extension is included - # see https://github.com/bazelbuild/bazel-skylib/issues/250 - http_archive( - name = "bazel_skylib", - sha256 = "e3fea03ff75a9821e84199466799ba560dbaebb299c655b5307f4df1e5970696", - strip_prefix = "bazel-skylib-1.7.1", - url = "https://github.com/bazelbuild/bazel-skylib/archive/refs/tags/1.7.1.tar.gz", - ) - - http_archive( - name = "bazel_skylib_gazelle_plugin", - sha256 = "747addf3f508186234f6232674dd7786743efb8c68619aece5fb0cac97b8f415", - urls = [ - "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.5.0/bazel-skylib-gazelle-plugin-1.5.0.tar.gz", - "https://github.com/bazelbuild/bazel-skylib/releases/download/1.5.0/bazel-skylib-gazelle-plugin-1.5.0.tar.gz", - ], - ) - - http_archive( - name = "io_bazel_stardoc", - sha256 = "3fd8fec4ddec3c670bd810904e2e33170bedfe12f90adf943508184be458c8bb", - urls = [ - "https://mirror.bazel.build/github.com/bazelbuild/stardoc/releases/download/0.5.3/stardoc-0.5.3.tar.gz", - "https://github.com/bazelbuild/stardoc/releases/download/0.5.3/stardoc-0.5.3.tar.gz", - ], - ) - - HERMETIC_CC_TOOLCHAIN_VERSION = "v2.2.1" - - http_archive( - name = "hermetic_cc_toolchain", - sha256 = "3b8107de0d017fe32e6434086a9568f97c60a111b49dc34fc7001e139c30fdea", - urls = [ - "https://mirror.bazel.build/github.com/uber/hermetic_cc_toolchain/releases/download/{0}/hermetic_cc_toolchain-{0}.tar.gz".format(HERMETIC_CC_TOOLCHAIN_VERSION), - "https://github.com/uber/hermetic_cc_toolchain/releases/download/{0}/hermetic_cc_toolchain-{0}.tar.gz".format(HERMETIC_CC_TOOLCHAIN_VERSION), - ], - ) - - http_archive( - name = "rules_python_gazelle_plugin", - sha256 = "c68bdc4fbec25de5b5493b8819cfc877c4ea299c0dcb15c244c5a00208cde311", - strip_prefix = "rules_python-0.31.0/gazelle", - url = "https://github.com/bazelbuild/rules_python/releases/download/0.31.0/rules_python-0.31.0.tar.gz", - ) - - http_archive( - name = "rules_oci", - sha256 = "1bd16e455278d523f01326e0c3964cd64d7840a7e99cdd6e2617e59f698f3504", - strip_prefix = "rules_oci-2.2.0", - url = "https://github.com/bazel-contrib/rules_oci/releases/download/v2.2.0/rules_oci-v2.2.0.tar.gz", - ) - - http_archive( - name = "container_structure_test", - integrity = "sha256-TLs4LT1+3JcSn3n4MZbJXmAG2QY9ntuzOiMRupNyrTk=", - strip_prefix = "container-structure-test-1.19.3", - url = "https://github.com/GoogleContainerTools/container-structure-test/archive/refs/tags/v1.19.3.zip", - ) - - http_archive( - name = "rules_rust", - integrity = "sha256-heIBNyerJvsiq9/+SyrAwnotW2KWFnumPY9uExQPUfk=", - urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.53.0/rules_rust-v0.53.0.tar.gz"], - ) - - http_file( - name = "django_4_2_4", - urls = ["https://files.pythonhosted.org/packages/7f/9e/fc6bab255ae10bc57fa2f65646eace3d5405fbb7f5678b90140052d1db0f/Django-4.2.4-py3-none-any.whl"], - sha256 = "860ae6a138a238fc4f22c99b52f3ead982bb4b1aad8c0122bcd8c8a3a02e409d", - downloaded_file_path = "Django-4.2.4-py3-none-any.whl", - ) - - http_file( - name = "django_4_1_10", - urls = ["https://files.pythonhosted.org/packages/34/25/8a218de57fc9853297a1a8e4927688eff8107d5bc6dcf6c964c59801f036/Django-4.1.10-py3-none-any.whl"], - sha256 = "26d0260c2fb8121009e62ffc548b2398dea2522b6454208a852fb0ef264c206c", - downloaded_file_path = "Django-4.1.10-py3-none-any.whl", - ) - - http_file( - name = "sqlparse_0_4_0", - urls = ["https://files.pythonhosted.org/packages/10/96/36c136013c4a6ecb8c6aa3eed66e6dcea838f85fd80e1446499f1dabfac7/sqlparse-0.4.0-py3-none-any.whl"], - sha256 = "0523026398aea9c8b5f7a4a6d5c0829c285b4fbd960c17b5967a369342e21e01", - downloaded_file_path = "sqlparse-0.4.0-py3-none-any.whl", - ) - - _http_archive( - name = "container_structure_test", - urls = [ - "https://github.com/GoogleContainerTools/container-structure-test/archive/56c7201716d770c0f820a9c19207ba2ea77c34f8.zip", - ], - strip_prefix = "container-structure-test-56c7201716d770c0f820a9c19207ba2ea77c34f8", - sha256 = "29632b3226bb9c7dcde340b6efcc48cc5f32e60ec47c86a144922e234e4d9ce7", - ) diff --git a/internal_python_deps.bzl b/internal_python_deps.bzl deleted file mode 100644 index 0300dbe2..00000000 --- a/internal_python_deps.bzl +++ /dev/null @@ -1,23 +0,0 @@ -"""Our "development" Python dependencies - -Users should *not* need to install these. If users see a load() -statement from these, that's a bug in our distribution. - -These happen after the regular internal dependencies loads as we need to reference the resolved interpreter -""" - -load("@rules_python//python:pip.bzl", "pip_parse") - -# buildifier: disable=function-docstring -def rules_py_internal_pypi_deps(interpreter): - pip_parse( - name = "pypi", - python_interpreter_target = interpreter, - requirements_lock = "//:requirements.txt", - ) - - pip_parse( - name = "django", - python_interpreter_target = interpreter, - requirements_lock = "//py/tests/virtual/django:requirements.txt", - ) diff --git a/py/private/BUILD.bazel b/py/private/BUILD.bazel index be7759ad..e6be452b 100644 --- a/py/private/BUILD.bazel +++ b/py/private/BUILD.bazel @@ -63,8 +63,7 @@ bzl_library( name = "py_pytest_main", srcs = ["py_pytest_main.bzl"], deps = [ - "@rules_python//docs:bazel_repo_tools", - "@rules_python//python:defs_bzl", + ":py_library" ], ) diff --git a/py/tests/external-deps/BUILD.bazel b/py/tests/external-deps/BUILD.bazel index c2f3ad73..b2816fc2 100644 --- a/py/tests/external-deps/BUILD.bazel +++ b/py/tests/external-deps/BUILD.bazel @@ -6,7 +6,7 @@ py_library( name = "lib", srcs = ["lib.py"], deps = [ - "@pypi_colorama//:pkg", + "@pypi//colorama", ], ) @@ -15,7 +15,7 @@ py_binary( srcs = ["//py/tests/external-deps/custom-macro:__main__.py"], deps = [ # Referencing the external py_library rule generated by rules_python - "@pypi_click//:pkg", + "@pypi//click", ], ) diff --git a/py/tests/external-deps/custom-macro/macro.bzl b/py/tests/external-deps/custom-macro/macro.bzl index d5377ca8..2737f0e6 100644 --- a/py/tests/external-deps/custom-macro/macro.bzl +++ b/py/tests/external-deps/custom-macro/macro.bzl @@ -14,7 +14,7 @@ def click_cli_binary(name, deps = [], **kwargs): main = "//py/tests/external-deps/custom-macro:__main__.py", deps = deps + [ name + "_lib", - "@pypi_click//:pkg", + "@pypi//click", ], **kwargs ) diff --git a/py/tests/py-binary/BUILD.bazel b/py/tests/py-binary/BUILD.bazel index a99d987e..50ae99a7 100644 --- a/py/tests/py-binary/BUILD.bazel +++ b/py/tests/py-binary/BUILD.bazel @@ -10,10 +10,10 @@ load("//py:defs.bzl", "py_binary", "py_test") # We happen to use pytest here only for convenience; it's a program already in our requirements.in. py_binary( name = "py_test_bin", - srcs = ["@pypi_pytest//:rules_python_wheel_entry_point_pytest"], + srcs = ["@@rules_python~~pip~pypi_39_pytest//:rules_python_wheel_entry_point_pytest"], # rules_python permits this label even though it's not a source file in this repository. main = "rules_python_wheel_entry_point_pytest.py", - deps = ["@pypi_pytest//:pkg"], + deps = ["@pypi//pytest"], ) genrule( diff --git a/py/tests/py-external-venv/BUILD.bazel b/py/tests/py-external-venv/BUILD.bazel index 3f7ad6cf..be4134da 100644 --- a/py/tests/py-external-venv/BUILD.bazel +++ b/py/tests/py-external-venv/BUILD.bazel @@ -3,7 +3,7 @@ load("//py/private/py_venv:defs.bzl", "py_venv", "py_venv_test") py_venv( name = "venv", deps = [ - "@pypi_cowsay//:pkg", + "@pypi//cowsay", ], ) diff --git a/py/tests/py-internal-venv/BUILD.bazel b/py/tests/py-internal-venv/BUILD.bazel index f6716781..017675de 100644 --- a/py/tests/py-internal-venv/BUILD.bazel +++ b/py/tests/py-internal-venv/BUILD.bazel @@ -10,6 +10,6 @@ py_venv_test( ], main = "test.py", deps = [ - "@pypi_cowsay//:pkg", + "@pypi//cowsay", ], ) diff --git a/py/tests/py-pex-binary/BUILD.bazel b/py/tests/py-pex-binary/BUILD.bazel index 3107a127..e70f14b6 100644 --- a/py/tests/py-pex-binary/BUILD.bazel +++ b/py/tests/py-pex-binary/BUILD.bazel @@ -8,8 +8,8 @@ py_binary( data = ["data.txt"], deps = [ "@bazel_tools//tools/python/runfiles", - "@pypi_cowsay//:pkg", - "@pypi_six//:pkg", + "@pypi//cowsay", + "@pypi//six", ], ) diff --git a/py/tests/py_image_layer/BUILD.bazel b/py/tests/py_image_layer/BUILD.bazel index a5a0cdfa..3d409c33 100644 --- a/py/tests/py_image_layer/BUILD.bazel +++ b/py/tests/py_image_layer/BUILD.bazel @@ -27,7 +27,7 @@ py_binary( deps = [ "//py/tests/internal-deps/adder", "//py/tests/py_image_layer/branding", - "@pypi_colorama//:pkg", + "@pypi//colorama", ], ) diff --git a/py/tests/py_image_layer/asserts.bzl b/py/tests/py_image_layer/asserts.bzl index 3313d18c..e5eafee4 100644 --- a/py/tests/py_image_layer/asserts.bzl +++ b/py/tests/py_image_layer/asserts.bzl @@ -23,7 +23,7 @@ for f in $(SRCS); do iter=$$(($$iter + 1)) done > $@ """.format(actual), - toolchains = ["@bsd_tar_toolchains//:resolved_toolchain"], + toolchains = ["@tar.bzl//tar/toolchain:type"], ) write_source_file( diff --git a/py/tests/py_venv_image_layer/BUILD.bazel b/py/tests/py_venv_image_layer/BUILD.bazel index 61d89467..fcc6b42d 100644 --- a/py/tests/py_venv_image_layer/BUILD.bazel +++ b/py/tests/py_venv_image_layer/BUILD.bazel @@ -29,7 +29,7 @@ py_venv_binary( deps = [ "//py/tests/internal-deps/adder", "//py/tests/py_image_layer/branding", - "@pypi_colorama//:pkg", + "@pypi//colorama", ], ) diff --git a/py/tests/py_venv_image_layer/asserts.bzl b/py/tests/py_venv_image_layer/asserts.bzl index 3313d18c..e5eafee4 100644 --- a/py/tests/py_venv_image_layer/asserts.bzl +++ b/py/tests/py_venv_image_layer/asserts.bzl @@ -23,7 +23,7 @@ for f in $(SRCS); do iter=$$(($$iter + 1)) done > $@ """.format(actual), - toolchains = ["@bsd_tar_toolchains//:resolved_toolchain"], + toolchains = ["@tar.bzl//tar/toolchain:type"], ) write_source_file( diff --git a/py/tools/py/BUILD.bazel b/py/tools/py/BUILD.bazel index 0c1a0c73..0870be1a 100644 --- a/py/tools/py/BUILD.bazel +++ b/py/tools/py/BUILD.bazel @@ -19,20 +19,19 @@ rust_library( "//py/tools/venv_bin:__pkg__", ], deps = [ - "//py/tools/runfiles", - "@crate_index//:itertools", - "@crate_index//:miette", - "@crate_index//:pathdiff", - "@crate_index//:sha256", - "@crate_index//:tempfile", - "@crate_index//:thiserror", - "@crate_index//:uv-cache", - "@crate_index//:uv-distribution-filename", - "@crate_index//:uv-extract", - "@crate_index//:uv-install-wheel", - "@crate_index//:uv-pypi-types", - "@crate_index//:uv-python", - "@crate_index//:uv-virtualenv", - "@crate_index//:walkdir", + "@crates//:itertools", + "@crates//:miette", + "@crates//:pathdiff", + "@crates//:sha256", + "@crates//:tempfile", + "@crates//:thiserror", + "@crates//:uv-cache", + "@crates//:uv-distribution-filename", + "@crates//:uv-extract", + "@crates//:uv-install-wheel", + "@crates//:uv-pypi-types", + "@crates//:uv-python", + "@crates//:uv-virtualenv", + "@crates//:walkdir", ], ) diff --git a/py/tools/unpack_bin/BUILD.bazel b/py/tools/unpack_bin/BUILD.bazel index 4db5d8b5..ee2c2f88 100644 --- a/py/tools/unpack_bin/BUILD.bazel +++ b/py/tools/unpack_bin/BUILD.bazel @@ -1,4 +1,5 @@ -load("//tools/release:defs.bzl", "rust_binary") +load("//bazel/rust:defs.bzl", "rust_binary") +load("//bazel/rust:multi_platform_rust_binaries.bzl", "multi_platform_rust_binaries") rust_binary( name = "unpack", @@ -7,11 +8,16 @@ rust_binary( ], deps = [ "//py/tools/py", - "@crate_index//:clap", - "@crate_index//:miette", + "@crates//:clap", + "@crates//:miette", ], ) +multi_platform_rust_binaries( + name = "bins", + target = ":unpack", +) + alias( name = "unpack_bin", actual = ":unpack", diff --git a/py/tools/venv_bin/BUILD.bazel b/py/tools/venv_bin/BUILD.bazel index 2ac8a8ef..6be6b196 100644 --- a/py/tools/venv_bin/BUILD.bazel +++ b/py/tools/venv_bin/BUILD.bazel @@ -1,4 +1,5 @@ -load("//tools/release:defs.bzl", "rust_binary") +load("//bazel/rust:defs.bzl", "rust_binary") +load("//bazel/rust:multi_platform_rust_binaries.bzl", "multi_platform_rust_binaries") # TODO(#497): transition to --nocollect_code_coverage to avoid rules_rust trying to instrument this binary rust_binary( @@ -8,11 +9,16 @@ rust_binary( ], deps = [ "//py/tools/py", - "@crate_index//:clap", - "@crate_index//:miette", + "@crates//:clap", + "@crates//:miette", ], ) +multi_platform_rust_binaries( + name = "bins", + target = ":venv", +) + alias( name = "venv_bin", actual = ":venv", diff --git a/py/tools/venv_shim/BUILD.bazel b/py/tools/venv_shim/BUILD.bazel index c47f70f7..f40a662e 100644 --- a/py/tools/venv_shim/BUILD.bazel +++ b/py/tools/venv_shim/BUILD.bazel @@ -1,4 +1,5 @@ -load("//tools/release:defs.bzl", "rust_binary") +load("//bazel/rust:defs.bzl", "rust_binary") +load("//bazel/rust:multi_platform_rust_binaries.bzl", "multi_platform_rust_binaries") rust_binary( name = "shim", @@ -6,11 +7,15 @@ rust_binary( "src/main.rs", ], deps = [ - "//py/tools/runfiles", - "@crate_index//:miette", + "@crates//:miette", ], ) +multi_platform_rust_binaries( + name = "bins", + target = ":shim", +) + alias( name = "venv_shim", actual = ":shim", From 2c56e5f69d66913cee2da15794bdce3027788b82 Mon Sep 17 00:00:00 2001 From: "Reid D. McKenzie" Date: Tue, 2 Sep 2025 21:15:01 -0600 Subject: [PATCH 2/9] Fix Gazelle --- BUILD.bazel | 2 +- MODULE.bazel | 13 ++++++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/BUILD.bazel b/BUILD.bazel index 68aecc50..0e967d71 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -1,4 +1,4 @@ -load("@bazel_gazelle//:def.bzl", "gazelle", "gazelle_binary") +load("@gazelle//:def.bzl", "gazelle", "gazelle_binary") load("@pypi//:requirements.bzl", "all_whl_requirements") load("@rules_python//python/pip_install:requirements.bzl", "compile_pip_requirements") load("@rules_python_gazelle_plugin//:def.bzl", "GAZELLE_PYTHON_RUNTIME_DEPS") diff --git a/MODULE.bazel b/MODULE.bazel index 62edcdae..41bc63fc 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -13,7 +13,6 @@ module( # py_image_layer needs repo_mapping fix. bazel_dep(name = "bazel_skylib", version = "1.4.2") bazel_dep(name = "platforms", version = "0.0.7") -bazel_dep(name = "buildifier_prebuilt", version = "8.2.0.2") bazel_dep(name = "bazelrc-preset.bzl", version = "1.2.0") include("//bazel/include:bazel-lib.MODULE.bazel") @@ -39,3 +38,15 @@ register_toolchains( "@aspect_rules_py//py/private/toolchain/unpack/...", "@aspect_rules_py//py/private/toolchain/shim/...", ) + +bazel_dep( + name = "gazelle", + version = "0.45.0", + dev_dependency = True, +) + +bazel_dep( + name = "buildifier_prebuilt", + version = "8.2.0.2", + dev_dependency = True, +) From fd39b6b3bc1f3d77b89f474d52b4c1c3c459c020 Mon Sep 17 00:00:00 2001 From: "Reid D. McKenzie" Date: Tue, 2 Sep 2025 22:30:12 -0600 Subject: [PATCH 3/9] [NO TESTS] WIP --- .bazelrc | 1 + bazel/include/oci.MODULE.bazel | 4 + bazel/include/rust.MODULE.bazel | 1 + docs/virtual_deps.md | 2 +- examples/django/BUILD.bazel | 2 +- examples/django/mysite/BUILD.bazel | 2 +- examples/multi_version/BUILD.bazel | 2 +- examples/pytest/BUILD.bazel | 10 +- examples/pytest/README.md | 2 +- py/tests/import-pathing/tests.bzl | 3 +- py/tests/py-test/test_env_vars.py | 2 +- .../py-venv-disable-systemsite/BUILD.bazel | 2 +- py/tests/py-venv-disable-usersite/BUILD.bazel | 2 +- py/tests/py-venv-enable-site/BUILD.bazel | 2 +- .../BUILD.bazel | 2 +- .../BUILD.bazel copy | 25 - py/tests/py_image_layer/asserts.bzl | 2 +- py/tests/py_venv_image_layer/asserts.bzl | 2 +- .../my_app_amd64_layers_listing.yaml | 5021 +++++++++-------- .../my_app_arm64_layers_listing.yaml | 4983 ++++++++-------- py/tools/py/BUILD.bazel | 2 +- py/tools/venv_shim/BUILD.bazel | 1 + 22 files changed, 5032 insertions(+), 5043 deletions(-) delete mode 100644 py/tests/py-venv-standalone-interpreter/BUILD.bazel copy diff --git a/.bazelrc b/.bazelrc index 21a8fc76..6c21e797 100644 --- a/.bazelrc +++ b/.bazelrc @@ -1,6 +1,7 @@ import %workspace%/bazel/defaults.bazelrc test --test_output=errors +test --test_tag_filters=-manual common --enable_bzlmod # Define value used by tests diff --git a/bazel/include/oci.MODULE.bazel b/bazel/include/oci.MODULE.bazel index 72b42d76..da9c1543 100644 --- a/bazel/include/oci.MODULE.bazel +++ b/bazel/include/oci.MODULE.bazel @@ -23,3 +23,7 @@ git_override( # Used for testing container layers bazel_dep(name = "tar.bzl", version = "0.5.5") +bazel_lib_toolchains = use_extension("@tar.bzl//tar:extensions.bzl", "toolchains") +use_repo(bazel_lib_toolchains, "bsd_tar_toolchains") + +register_toolchains("@bsd_tar_toolchains//:all") diff --git a/bazel/include/rust.MODULE.bazel b/bazel/include/rust.MODULE.bazel index c2d022eb..64ca8189 100644 --- a/bazel/include/rust.MODULE.bazel +++ b/bazel/include/rust.MODULE.bazel @@ -27,6 +27,7 @@ crate.from_cargo( "//py/tools/unpack_bin:Cargo.toml", "//py/tools/venv_bin:Cargo.toml", "//py/tools/venv_shim:Cargo.toml", + "//py/tools/runfiles:Cargo.toml", ], supported_platform_triples = [ "aarch64-apple-darwin", diff --git a/docs/virtual_deps.md b/docs/virtual_deps.md index 01e2f459..b924da05 100644 --- a/docs/virtual_deps.md +++ b/docs/virtual_deps.md @@ -17,7 +17,7 @@ https://github.com/aspect-build/rules_py/issues/213 Simply move an element from the `deps` attribute to `virtual_deps`. For example, instead of getting a specific version of Django from -`deps = ["@pypi_django//:pkg"]` on a `py_library` target, +`deps = ["@pypi//django"]` on a `py_library` target, provide the package name with `virtual_deps = ["django"]`. > Note that any `py_binary` or `py_test` transitively depending on this `py_library` must be loaded from `aspect_rules_py` rather than `rules_python`, as the latter does not have a feature of resolving the virtual dep. diff --git a/examples/django/BUILD.bazel b/examples/django/BUILD.bazel index c798f375..b6244516 100644 --- a/examples/django/BUILD.bazel +++ b/examples/django/BUILD.bazel @@ -5,6 +5,6 @@ py_binary( srcs = ["manage.py"], deps = [ "//examples/django/mysite", - "@pypi_django//:pkg", + "@pypi//django", ], ) diff --git a/examples/django/mysite/BUILD.bazel b/examples/django/mysite/BUILD.bazel index 413c89e6..46238e55 100644 --- a/examples/django/mysite/BUILD.bazel +++ b/examples/django/mysite/BUILD.bazel @@ -11,6 +11,6 @@ py_library( ], visibility = ["//examples/django:__pkg__"], deps = [ - "@pypi_django//:pkg", + "@pypi//django", ], ) diff --git a/examples/multi_version/BUILD.bazel b/examples/multi_version/BUILD.bazel index b06d2de4..5a6b01b6 100644 --- a/examples/multi_version/BUILD.bazel +++ b/examples/multi_version/BUILD.bazel @@ -11,7 +11,7 @@ py_binary( py_pytest_main( name = "__test__", - deps = ["@pipi//pytest"], + deps = ["@pypi//pytest"], ) py_test( diff --git a/examples/pytest/BUILD.bazel b/examples/pytest/BUILD.bazel index a3e192f7..0fb002c2 100644 --- a/examples/pytest/BUILD.bazel +++ b/examples/pytest/BUILD.bazel @@ -21,10 +21,10 @@ py_test( pytest_main = True, deps = [ ":lib", - "@pypi_coverage//:pkg", - "@pypi_ftfy//:pkg", - "@pypi_neptune//:pkg", - "@pipi//pytest", + "@pypi//coverage", + "@pypi//ftfy", + "@pypi//neptune", + "@pypi//pytest", ], ) @@ -36,5 +36,5 @@ py_test( package_collisions = "warning", pytest_main = True, shard_count = 2, - deps = ["@pipi//pytest"], + deps = ["@pipy//pytest"], ) diff --git a/examples/pytest/README.md b/examples/pytest/README.md index 08b45c82..16b038b3 100644 --- a/examples/pytest/README.md +++ b/examples/pytest/README.md @@ -14,7 +14,7 @@ load("@aspect_rules_py//py:defs.bzl", "py_pytest_main") py_pytest_main( name = "__test__", - deps = ["@pypi_pytest//:pkg"], # change this to the pytest target in your repo. + deps = ["@pypi//pytest"], # change this to the pytest target in your repo. ) ``` diff --git a/py/tests/import-pathing/tests.bzl b/py/tests/import-pathing/tests.bzl index c9ca2edb..c96416d6 100644 --- a/py/tests/import-pathing/tests.bzl +++ b/py/tests/import-pathing/tests.bzl @@ -10,7 +10,8 @@ def _ctx_with_imports(imports, deps = []): ), build_file_path = "foo/bar/BUILD.bazel", workspace_name = "aspect_rules_py", - label = Label("//foo/bar:baz"), + # Under bzlmod we have to set the workspace name otherwise we get _main + label = Label("@@aspect_rules_py//foo/bar:baz"), ) def _can_resolve_path_in_workspace_test_impl(ctx): diff --git a/py/tests/py-test/test_env_vars.py b/py/tests/py-test/test_env_vars.py index 0941b999..ad4cb3b7 100644 --- a/py/tests/py-test/test_env_vars.py +++ b/py/tests/py-test/test_env_vars.py @@ -13,5 +13,5 @@ def test_env(env, expected): test_env('LOCATION', "py/tests/py-test/test_env_vars.py") test_env('DEFINE', "SOME_VALUE") test_env('BAZEL_TARGET', "//py/tests/py-test:test_env_vars") -test_env('BAZEL_WORKSPACE', "aspect_rules_py") +test_env('BAZEL_WORKSPACE', "_main") test_env('BAZEL_TARGET_NAME', "test_env_vars") diff --git a/py/tests/py-venv-disable-systemsite/BUILD.bazel b/py/tests/py-venv-disable-systemsite/BUILD.bazel index 2a8f52e3..f43dc192 100644 --- a/py/tests/py-venv-disable-systemsite/BUILD.bazel +++ b/py/tests/py-venv-disable-systemsite/BUILD.bazel @@ -11,6 +11,6 @@ py_venv_test( include_system_site_packages = False, main = "test.py", deps = [ - "@pypi_cowsay//:pkg", + "@pypi//cowsay", ], ) diff --git a/py/tests/py-venv-disable-usersite/BUILD.bazel b/py/tests/py-venv-disable-usersite/BUILD.bazel index e16f155b..f0b2294b 100644 --- a/py/tests/py-venv-disable-usersite/BUILD.bazel +++ b/py/tests/py-venv-disable-usersite/BUILD.bazel @@ -11,6 +11,6 @@ py_venv_test( include_user_site_packages = False, main = "test.py", deps = [ - "@pypi_cowsay//:pkg", + "@pypi//cowsay", ], ) diff --git a/py/tests/py-venv-enable-site/BUILD.bazel b/py/tests/py-venv-enable-site/BUILD.bazel index 710644dd..e2c01ca2 100644 --- a/py/tests/py-venv-enable-site/BUILD.bazel +++ b/py/tests/py-venv-enable-site/BUILD.bazel @@ -12,6 +12,6 @@ py_venv_test( include_user_site_packages = True, main = "test.py", deps = [ - "@pypi_cowsay//:pkg", + "@pypi//cowsay", ], ) diff --git a/py/tests/py-venv-standalone-interpreter/BUILD.bazel b/py/tests/py-venv-standalone-interpreter/BUILD.bazel index 6871a839..071abb19 100644 --- a/py/tests/py-venv-standalone-interpreter/BUILD.bazel +++ b/py/tests/py-venv-standalone-interpreter/BUILD.bazel @@ -10,7 +10,7 @@ py_venv_binary( ], main = "ex.py", deps = [ - "@pypi_cowsay//:pkg", + "@pypi//cowsay", ], ) diff --git a/py/tests/py-venv-standalone-interpreter/BUILD.bazel copy b/py/tests/py-venv-standalone-interpreter/BUILD.bazel copy deleted file mode 100644 index 6871a839..00000000 --- a/py/tests/py-venv-standalone-interpreter/BUILD.bazel copy +++ /dev/null @@ -1,25 +0,0 @@ -load("//py/private/py_venv:defs.bzl", "py_venv_binary") - -py_venv_binary( - name = "ex", - srcs = [ - "ex.py", - ], - imports = [ - ".", - ], - main = "ex.py", - deps = [ - "@pypi_cowsay//:pkg", - ], -) - -sh_test( - name = "test", - srcs = [ - "test.sh", - ], - data = [ - ":ex", - ], -) diff --git a/py/tests/py_image_layer/asserts.bzl b/py/tests/py_image_layer/asserts.bzl index e5eafee4..3313d18c 100644 --- a/py/tests/py_image_layer/asserts.bzl +++ b/py/tests/py_image_layer/asserts.bzl @@ -23,7 +23,7 @@ for f in $(SRCS); do iter=$$(($$iter + 1)) done > $@ """.format(actual), - toolchains = ["@tar.bzl//tar/toolchain:type"], + toolchains = ["@bsd_tar_toolchains//:resolved_toolchain"], ) write_source_file( diff --git a/py/tests/py_venv_image_layer/asserts.bzl b/py/tests/py_venv_image_layer/asserts.bzl index e5eafee4..3313d18c 100644 --- a/py/tests/py_venv_image_layer/asserts.bzl +++ b/py/tests/py_venv_image_layer/asserts.bzl @@ -23,7 +23,7 @@ for f in $(SRCS); do iter=$$(($$iter + 1)) done > $@ """.format(actual), - toolchains = ["@tar.bzl//tar/toolchain:type"], + toolchains = ["@bsd_tar_toolchains//:resolved_toolchain"], ) write_source_file( diff --git a/py/tests/py_venv_image_layer/my_app_amd64_layers_listing.yaml b/py/tests/py_venv_image_layer/my_app_amd64_layers_listing.yaml index 4eff121b..f5110e1d 100644 --- a/py/tests/py_venv_image_layer/my_app_amd64_layers_listing.yaml +++ b/py/tests/py_venv_image_layer/my_app_amd64_layers_listing.yaml @@ -1,2527 +1,2530 @@ --- layer: 0 files: - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/ - - -rwxr-xr-x 0 0 0 127 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/2to3 - - -rwxr-xr-x 0 0 0 127 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/2to3-3.9 - - -rwxr-xr-x 0 0 0 125 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/idle3 - - -rwxr-xr-x 0 0 0 125 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/idle3.9 - - -rwxr-xr-x 0 0 0 255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/pip - - -rwxr-xr-x 0 0 0 255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/pip3 - - -rwxr-xr-x 0 0 0 255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/pip3.9 - - -rwxr-xr-x 0 0 0 110 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/pydoc3 - - -rwxr-xr-x 0 0 0 110 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/pydoc3.9 - - -rwxr-xr-x 0 0 0 20960 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/python3 - - -rwxr-xr-x 0 0 0 3211 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/python3-config - - -rwxr-xr-x 0 0 0 20960 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/python3.9 - - -rwxr-xr-x 0 0 0 3211 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/python3.9-config - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/ - - -rwxr-xr-x 0 0 0 26193 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/Python-ast.h - - -rwxr-xr-x 0 0 0 3532 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/Python.h - - -rwxr-xr-x 0 0 0 30476 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/abstract.h - - -rwxr-xr-x 0 0 0 1224 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/asdl.h - - -rwxr-xr-x 0 0 0 947 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/ast.h - - -rwxr-xr-x 0 0 0 468 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/bitset.h - - -rwxr-xr-x 0 0 0 264 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/bltinmodule.h - - -rwxr-xr-x 0 0 0 885 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/boolobject.h - - -rwxr-xr-x 0 0 0 1484 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/bytearrayobject.h - - -rwxr-xr-x 0 0 0 3048 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/bytesobject.h - - -rwxr-xr-x 0 0 0 712 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cellobject.h - - -rwxr-xr-x 0 0 0 5954 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/ceval.h - - -rwxr-xr-x 0 0 0 1657 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/classobject.h - - -rwxr-xr-x 0 0 0 318 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/code.h - - -rwxr-xr-x 0 0 0 6793 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/codecs.h - - -rwxr-xr-x 0 0 0 3778 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/compile.h - - -rwxr-xr-x 0 0 0 1806 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/complexobject.h - - -rwxr-xr-x 0 0 0 1962 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/context.h - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/ - - -rwxr-xr-x 0 0 0 14200 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/abstract.h - - -rwxr-xr-x 0 0 0 769 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/bytearrayobject.h - - -rwxr-xr-x 0 0 0 4114 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/bytesobject.h - - -rwxr-xr-x 0 0 0 1537 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/ceval.h - - -rwxr-xr-x 0 0 0 6989 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/code.h - - -rwxr-xr-x 0 0 0 3797 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/dictobject.h - - -rwxr-xr-x 0 0 0 721 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/fileobject.h - - -rwxr-xr-x 0 0 0 4004 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/fileutils.h - - -rwxr-xr-x 0 0 0 3059 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/frameobject.h - - -rwxr-xr-x 0 0 0 1473 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/import.h - - -rwxr-xr-x 0 0 0 16979 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/initconfig.h - - -rwxr-xr-x 0 0 0 456 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/interpreteridobject.h - - -rwxr-xr-x 0 0 0 1364 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/listobject.h - - -rwxr-xr-x 0 0 0 1399 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/methodobject.h - - -rwxr-xr-x 0 0 0 19358 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/object.h - - -rwxr-xr-x 0 0 0 4456 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/objimpl.h - - -rwxr-xr-x 0 0 0 5101 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/pyerrors.h - - -rwxr-xr-x 0 0 0 2096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/pylifecycle.h - - -rwxr-xr-x 0 0 0 3511 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/pymem.h - - -rwxr-xr-x 0 0 0 10134 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/pystate.h - - -rwxr-xr-x 0 0 0 575 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/sysmodule.h - - -rwxr-xr-x 0 0 0 473 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/traceback.h - - -rwxr-xr-x 0 0 0 1036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/tupleobject.h - - -rwxr-xr-x 0 0 0 46154 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/unicodeobject.h - - -rwxr-xr-x 0 0 0 9255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/datetime.h - - -rwxr-xr-x 0 0 0 3019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/descrobject.h - - -rwxr-xr-x 0 0 0 3715 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/dictobject.h - - -rwxr-xr-x 0 0 0 22469 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/dynamic_annotations.h - - -rwxr-xr-x 0 0 0 253 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/enumobject.h - - -rwxr-xr-x 0 0 0 1624 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/errcode.h - - -rwxr-xr-x 0 0 0 1209 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/eval.h - - -rwxr-xr-x 0 0 0 1098 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/exports.h - - -rwxr-xr-x 0 0 0 1571 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/fileobject.h - - -rwxr-xr-x 0 0 0 597 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/fileutils.h - - -rwxr-xr-x 0 0 0 4360 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/floatobject.h - - -rwxr-xr-x 0 0 0 337 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/frameobject.h - - -rwxr-xr-x 0 0 0 4057 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/funcobject.h - - -rwxr-xr-x 0 0 0 334 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/genericaliasobject.h - - -rwxr-xr-x 0 0 0 3525 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/genobject.h - - -rwxr-xr-x 0 0 0 2118 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/graminit.h - - -rwxr-xr-x 0 0 0 1821 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/grammar.h - - -rwxr-xr-x 0 0 0 3026 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/import.h - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/ - - -rwxr-xr-x 0 0 0 953 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pegen_interface.h - - -rwxr-xr-x 0 0 0 479 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_abstract.h - - -rwxr-xr-x 0 0 0 1126 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_accu.h - - -rwxr-xr-x 0 0 0 16977 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_atomic.h - - -rwxr-xr-x 0 0 0 3384 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_bytes_methods.h - - -rwxr-xr-x 0 0 0 2620 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_byteswap.h - - -rwxr-xr-x 0 0 0 870 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_call.h - - -rwxr-xr-x 0 0 0 3403 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_ceval.h - - -rwxr-xr-x 0 0 0 541 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_code.h - - -rwxr-xr-x 0 0 0 2809 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_condvar.h - - -rwxr-xr-x 0 0 0 800 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_context.h - - -rwxr-xr-x 0 0 0 646 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_dtoa.h - - -rwxr-xr-x 0 0 0 1541 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_fileutils.h - - -rwxr-xr-x 0 0 0 6647 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_gc.h - - -rwxr-xr-x 0 0 0 490 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_getopt.h - - -rwxr-xr-x 0 0 0 1565 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_gil.h - - -rwxr-xr-x 0 0 0 3697 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_hamt.h - - -rwxr-xr-x 0 0 0 4197 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_hashtable.h - - -rwxr-xr-x 0 0 0 473 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_import.h - - -rwxr-xr-x 0 0 0 5233 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_initconfig.h - - -rwxr-xr-x 0 0 0 5299 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_interp.h - - -rwxr-xr-x 0 0 0 1548 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_long.h - - -rwxr-xr-x 0 0 0 4157 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_object.h - - -rwxr-xr-x 0 0 0 1936 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_pathconfig.h - - -rwxr-xr-x 0 0 0 2032 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_pyerrors.h - - -rwxr-xr-x 0 0 0 206 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_pyhash.h - - -rwxr-xr-x 0 0 0 3741 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_pylifecycle.h - - -rwxr-xr-x 0 0 0 3363 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_pymem.h - - -rwxr-xr-x 0 0 0 3583 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_pystate.h - - -rwxr-xr-x 0 0 0 4452 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_runtime.h - - -rwxr-xr-x 0 0 0 548 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_sysmodule.h - - -rwxr-xr-x 0 0 0 3056 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_traceback.h - - -rwxr-xr-x 0 0 0 442 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_tupleobject.h - - -rwxr-xr-x 0 0 0 633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_warnings.h - - -rwxr-xr-x 0 0 0 334 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/interpreteridobject.h - - -rwxr-xr-x 0 0 0 861 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/intrcheck.h - - -rwxr-xr-x 0 0 0 521 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/iterobject.h - - -rwxr-xr-x 0 0 0 1781 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/listobject.h - - -rwxr-xr-x 0 0 0 3799 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/longintrepr.h - - -rwxr-xr-x 0 0 0 9513 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/longobject.h - - -rwxr-xr-x 0 0 0 803 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/marshal.h - - -rwxr-xr-x 0 0 0 2764 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/memoryobject.h - - -rwxr-xr-x 0 0 0 3775 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/methodobject.h - - -rwxr-xr-x 0 0 0 9959 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/modsupport.h - - -rwxr-xr-x 0 0 0 2361 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/moduleobject.h - - -rwxr-xr-x 0 0 0 349 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/namespaceobject.h - - -rwxr-xr-x 0 0 0 1281 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/node.h - - -rwxr-xr-x 0 0 0 24628 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/object.h - - -rwxr-xr-x 0 0 0 8423 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/objimpl.h - - -rwxr-xr-x 0 0 0 1299 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/odictobject.h - - -rwxr-xr-x 0 0 0 4900 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/opcode.h - - -rwxr-xr-x 0 0 0 737 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/osdefs.h - - -rwxr-xr-x 0 0 0 291 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/osmodule.h - - -rwxr-xr-x 0 0 0 2958 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/parsetok.h - - -rwxr-xr-x 0 0 0 1299 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/patchlevel.h - - -rwxr-xr-x 0 0 0 846 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/picklebufobject.h - - -rwxr-xr-x 0 0 0 2474 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/py_curses.h - - -rwxr-xr-x 0 0 0 2744 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pyarena.h - - -rwxr-xr-x 0 0 0 1725 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pycapsule.h - - -rwxr-xr-x 0 0 0 48082 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pyconfig.h - - -rwxr-xr-x 0 0 0 1387 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pyctype.h - - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pydebug.h - - -rwxr-xr-x 0 0 0 2413 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pydtrace.h - - -rwxr-xr-x 0 0 0 12427 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pyerrors.h - - -rwxr-xr-x 0 0 0 2450 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pyexpat.h - - -rwxr-xr-x 0 0 0 444 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pyfpe.h - - -rwxr-xr-x 0 0 0 466 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pyframe.h - - -rwxr-xr-x 0 0 0 4263 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pyhash.h - - -rwxr-xr-x 0 0 0 2136 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pylifecycle.h - - -rwxr-xr-x 0 0 0 2989 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pymacconfig.h - - -rwxr-xr-x 0 0 0 4920 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pymacro.h - - -rwxr-xr-x 0 0 0 8580 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pymath.h - - -rwxr-xr-x 0 0 0 4406 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pymem.h - - -rwxr-xr-x 0 0 0 31273 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pyport.h - - -rwxr-xr-x 0 0 0 5250 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pystate.h - - -rwxr-xr-x 0 0 0 436 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pystrcmp.h - - -rwxr-xr-x 0 0 0 849 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pystrhex.h - - -rwxr-xr-x 0 0 0 1483 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pystrtod.h - - -rwxr-xr-x 0 0 0 7673 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pythonrun.h - - -rwxr-xr-x 0 0 0 5938 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pythread.h - - -rwxr-xr-x 0 0 0 8928 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pytime.h - - -rwxr-xr-x 0 0 0 628 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/rangeobject.h - - -rwxr-xr-x 0 0 0 3324 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/setobject.h - - -rwxr-xr-x 0 0 0 2516 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/sliceobject.h - - -rwxr-xr-x 0 0 0 2030 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/structmember.h - - -rwxr-xr-x 0 0 0 1390 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/structseq.h - - -rwxr-xr-x 0 0 0 5307 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/symtable.h - - -rwxr-xr-x 0 0 0 1242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/sysmodule.h - - -rwxr-xr-x 0 0 0 2642 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/token.h - - -rwxr-xr-x 0 0 0 584 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/traceback.h - - -rwxr-xr-x 0 0 0 1114 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/tracemalloc.h - - -rwxr-xr-x 0 0 0 1614 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/tupleobject.h - - -rwxr-xr-x 0 0 0 2350 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/typeslots.h - - -rwxr-xr-x 0 0 0 1056 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/ucnhash.h - - -rwxr-xr-x 0 0 0 35426 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/unicodeobject.h - - -rwxr-xr-x 0 0 0 1776 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/warnings.h - - -rwxr-xr-x 0 0 0 2863 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/weakrefobject.h - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/ - - -rwxr-xr-x 0 0 0 13870 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Balloon.tcl - - -rwxr-xr-x 0 0 0 2791 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/BtnBox.tcl - - -rwxr-xr-x 0 0 0 8098 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/CObjView.tcl - - -rwxr-xr-x 0 0 0 5326 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/ChkList.tcl - - -rwxr-xr-x 0 0 0 37829 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/ComboBox.tcl - - -rwxr-xr-x 0 0 0 903 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Compat.tcl - - -rwxr-xr-x 0 0 0 15923 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Console.tcl - - -rwxr-xr-x 0 0 0 12884 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Control.tcl - - -rwxr-xr-x 0 0 0 3116 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DefSchm.tcl - - -rwxr-xr-x 0 0 0 4471 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DialogS.tcl - - -rwxr-xr-x 0 0 0 5632 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DirBox.tcl - - -rwxr-xr-x 0 0 0 2301 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DirDlg.tcl - - -rwxr-xr-x 0 0 0 7336 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DirList.tcl - - -rwxr-xr-x 0 0 0 9322 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DirTree.tcl - - -rwxr-xr-x 0 0 0 4191 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DragDrop.tcl - - -rwxr-xr-x 0 0 0 1051 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DtlList.tcl - - -rwxr-xr-x 0 0 0 11826 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/EFileBox.tcl - - -rwxr-xr-x 0 0 0 1783 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/EFileDlg.tcl - - -rwxr-xr-x 0 0 0 5448 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Event.tcl - - -rwxr-xr-x 0 0 0 14904 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/FileBox.tcl - - -rwxr-xr-x 0 0 0 2591 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/FileCbx.tcl - - -rwxr-xr-x 0 0 0 2260 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/FileDlg.tcl - - -rwxr-xr-x 0 0 0 7589 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/FileEnt.tcl - - -rwxr-xr-x 0 0 0 3308 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/FloatEnt.tcl - - -rwxr-xr-x 0 0 0 22787 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Grid.tcl - - -rwxr-xr-x 0 0 0 19065 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/HList.tcl - - -rwxr-xr-x 0 0 0 4704 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/HListDD.tcl - - -rwxr-xr-x 0 0 0 6382 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/IconView.tcl - - -rwxr-xr-x 0 0 0 6431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Init.tcl - - -rwxr-xr-x 0 0 0 2229 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/LabEntry.tcl - - -rwxr-xr-x 0 0 0 1230 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/LabFrame.tcl - - -rwxr-xr-x 0 0 0 4108 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/LabWidg.tcl - - -rwxr-xr-x 0 0 0 3734 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/ListNBk.tcl - - -rwxr-xr-x 0 0 0 3251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Meter.tcl - - -rwxr-xr-x 0 0 0 3861 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/MultView.tcl - - -rwxr-xr-x 0 0 0 6407 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/NoteBook.tcl - - -rwxr-xr-x 0 0 0 3164 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/OldUtil.tcl - - -rwxr-xr-x 0 0 0 9786 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/OptMenu.tcl - - -rwxr-xr-x 0 0 0 29562 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/PanedWin.tcl - - -rwxr-xr-x 0 0 0 5739 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/PopMenu.tcl - - -rwxr-xr-x 0 0 0 10955 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Primitiv.tcl - - -rwxr-xr-x 0 0 0 1013 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/README.txt - - -rwxr-xr-x 0 0 0 13752 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/ResizeH.tcl - - -rwxr-xr-x 0 0 0 6178 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SGrid.tcl - - -rwxr-xr-x 0 0 0 3933 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SHList.tcl - - -rwxr-xr-x 0 0 0 7433 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SListBox.tcl - - -rwxr-xr-x 0 0 0 2521 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/STList.tcl - - -rwxr-xr-x 0 0 0 3297 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SText.tcl - - -rwxr-xr-x 0 0 0 10213 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SWidget.tcl - - -rwxr-xr-x 0 0 0 7182 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SWindow.tcl - - -rwxr-xr-x 0 0 0 7504 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Select.tcl - - -rwxr-xr-x 0 0 0 1129 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Shell.tcl - - -rwxr-xr-x 0 0 0 1204 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SimpDlg.tcl - - -rwxr-xr-x 0 0 0 2076 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/StackWin.tcl - - -rwxr-xr-x 0 0 0 1395 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/StatBar.tcl - - -rwxr-xr-x 0 0 0 1727 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/StdBBox.tcl - - -rwxr-xr-x 0 0 0 1222 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/StdShell.tcl - - -rwxr-xr-x 0 0 0 18962 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/TList.tcl - - -rwxr-xr-x 0 0 0 10135 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Tix.tcl - - -rwxr-xr-x 0 0 0 4890 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Tree.tcl - - -rwxr-xr-x 0 0 0 11230 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Utils.tcl - - -rwxr-xr-x 0 0 0 5280 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/VResize.tcl - - -rwxr-xr-x 0 0 0 10081 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/VStack.tcl - - -rwxr-xr-x 0 0 0 4605 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/VTree.tcl - - -rwxr-xr-x 0 0 0 2664 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Variable.tcl - - -rwxr-xr-x 0 0 0 1005 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/WInfo.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/ - - -rwxr-xr-x 0 0 0 90 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/act_fold.gif - - -rwxr-xr-x 0 0 0 221 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/act_fold.xbm - - -rwxr-xr-x 0 0 0 436 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/act_fold.xpm - - -rwxr-xr-x 0 0 0 123 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/balarrow.xbm - - -rwxr-xr-x 0 0 0 263 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/cbxarrow.xbm - - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/ck_def.xbm - - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/ck_off.xbm - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/ck_on.xbm - - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/cross.xbm - - -rwxr-xr-x 0 0 0 99 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/decr.xbm - - -rwxr-xr-x 0 0 0 326 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/drop.xbm - - -rwxr-xr-x 0 0 0 76 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/file.gif - - -rwxr-xr-x 0 0 0 233 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/file.xbm - - -rwxr-xr-x 0 0 0 298 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/file.xpm - - -rwxr-xr-x 0 0 0 79 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/folder.gif - - -rwxr-xr-x 0 0 0 215 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/folder.xbm - - -rwxr-xr-x 0 0 0 418 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/folder.xpm - - -rwxr-xr-x 0 0 0 896 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/harddisk.xbm - - -rwxr-xr-x 0 0 0 969 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/hourglas.mask - - -rwxr-xr-x 0 0 0 940 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/hourglas.xbm - - -rwxr-xr-x 0 0 0 99 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/incr.xbm - - -rwxr-xr-x 0 0 0 159 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/info.gif - - -rwxr-xr-x 0 0 0 1258 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/info.xpm - - -rwxr-xr-x 0 0 0 284 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/maximize.xbm - - -rwxr-xr-x 0 0 0 284 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minimize.xbm - - -rwxr-xr-x 0 0 0 57 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minus.gif - - -rwxr-xr-x 0 0 0 198 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minus.xbm - - -rwxr-xr-x 0 0 0 201 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minus.xpm - - -rwxr-xr-x 0 0 0 59 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minusarm.gif - - -rwxr-xr-x 0 0 0 207 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minusarm.xbm - - -rwxr-xr-x 0 0 0 220 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minusarm.xpm - - -rwxr-xr-x 0 0 0 263 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/mktransgif.tcl - - -rwxr-xr-x 0 0 0 893 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/network.xbm - - -rwxr-xr-x 0 0 0 176 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/no_entry.gif - - -rwxr-xr-x 0 0 0 1274 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/no_entry.xpm - - -rwxr-xr-x 0 0 0 221 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/openfile.xbm - - -rwxr-xr-x 0 0 0 84 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/openfold.gif - - -rwxr-xr-x 0 0 0 221 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/openfold.xbm - - -rwxr-xr-x 0 0 0 418 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/openfold.xpm - - -rwxr-xr-x 0 0 0 58 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plus.gif - - -rwxr-xr-x 0 0 0 195 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plus.xbm - - -rwxr-xr-x 0 0 0 200 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plus.xpm - - -rwxr-xr-x 0 0 0 60 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plusarm.gif - - -rwxr-xr-x 0 0 0 204 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plusarm.xbm - - -rwxr-xr-x 0 0 0 212 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plusarm.xpm - - -rwxr-xr-x 0 0 0 305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/resize1.xbm - - -rwxr-xr-x 0 0 0 305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/resize2.xbm - - -rwxr-xr-x 0 0 0 281 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/restore.xbm - - -rwxr-xr-x 0 0 0 79 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/srcfile.gif - - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/srcfile.xbm - - -rwxr-xr-x 0 0 0 294 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/srcfile.xpm - - -rwxr-xr-x 0 0 0 278 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/system.xbm - - -rwxr-xr-x 0 0 0 79 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/textfile.gif - - -rwxr-xr-x 0 0 0 245 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/textfile.xbm - - -rwxr-xr-x 0 0 0 302 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/textfile.xpm - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/tick.xbm - - -rwxr-xr-x 0 0 0 180 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/warning.gif - - -rwxr-xr-x 0 0 0 1262 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/warning.xpm - - -rwxr-xr-x 0 0 0 4165 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/fs.tcl - - -rwxr-xr-x 0 0 0 2828 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/license.terms - - -rwxr-xr-x 0 0 0 126 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pkgIndex.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/ - - -rwxr-xr-x 0 0 0 641 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/10Point.fs - - -rwxr-xr-x 0 0 0 2046 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/10Point.fsc - - -rwxr-xr-x 0 0 0 640 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/12Point.fs - - -rwxr-xr-x 0 0 0 2045 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/12Point.fsc - - -rwxr-xr-x 0 0 0 639 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/14Point.fs - - -rwxr-xr-x 0 0 0 2105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/14Point.fsc - - -rwxr-xr-x 0 0 0 1028 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Bisque.cs - - -rwxr-xr-x 0 0 0 22539 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Bisque.csc - - -rwxr-xr-x 0 0 0 1045 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Blue.cs - - -rwxr-xr-x 0 0 0 22552 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Blue.csc - - -rwxr-xr-x 0 0 0 1045 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Gray.cs - - -rwxr-xr-x 0 0 0 22552 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Gray.csc - - -rwxr-xr-x 0 0 0 541 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Old12Pt.fs - - -rwxr-xr-x 0 0 0 499 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Old14Pt.fs - - -rwxr-xr-x 0 0 0 1026 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/SGIGray.cs - - -rwxr-xr-x 0 0 0 22537 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/SGIGray.csc - - -rwxr-xr-x 0 0 0 1024 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TK.cs - - -rwxr-xr-x 0 0 0 2023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TK.csc - - -rwxr-xr-x 0 0 0 506 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TK.fs - - -rwxr-xr-x 0 0 0 569 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TK.fsc - - -rwxr-xr-x 0 0 0 1026 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TixGray.cs - - -rwxr-xr-x 0 0 0 22539 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TixGray.csc - - -rwxr-xr-x 0 0 0 2246 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TkWin.cs - - -rwxr-xr-x 0 0 0 22302 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TkWin.csc - - -rwxr-xr-x 0 0 0 390 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TkWin.fs - - -rwxr-xr-x 0 0 0 1674 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TkWin.fsc - - -rwxr-xr-x 0 0 0 1452 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.cs - - -rwxr-xr-x 0 0 0 14566 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.csc - - -rwxr-xr-x 0 0 0 755 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.fs - - -rwxr-xr-x 0 0 0 2184 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.fsc - - -rwxr-xr-x 0 0 0 3597 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.py - - -rwxr-xr-x 0 0 0 34898 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.tcl - - -rwxr-xr-x 0 0 0 4466 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.txt - - -rwxr-xr-x 0 0 0 271 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/pkgIndex.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/itcl4.2.2/ - - -rwxr-xr-x 0 0 0 5153 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/itcl4.2.2/itcl.tcl - - -rwxr-xr-x 0 0 0 2932 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/itcl4.2.2/itclConfig.sh - - -rwxr-xr-x 0 0 0 21056 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/itcl4.2.2/itclHullCmds.tcl - - -rwxr-xr-x 0 0 0 12651 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/itcl4.2.2/itclWidget.tcl - - -rwxr-xr-x 0 0 0 47153392 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/libpython3.9.so.1.0 - - -rwxr-xr-x 0 0 0 16800 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/libpython3.so - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/pkgconfig/ - - -rwxr-xr-x 0 0 0 311 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/pkgconfig/python-3.9-embed.pc - - -rwxr-xr-x 0 0 0 285 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/pkgconfig/python-3.9.pc - - -rwxr-xr-x 0 0 0 311 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/pkgconfig/python3-embed.pc - - -rwxr-xr-x 0 0 0 285 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/pkgconfig/python3.pc - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ - - -rwxr-xr-x 0 0 0 13937 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/LICENSE.txt - - -rwxr-xr-x 0 0 0 5147 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__future__.py - - -rwxr-xr-x 0 0 0 64 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__phello__.foo.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/ - - -rwxr-xr-x 0 0 0 1246 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/_bootlocale.cpython-39.pyc - - -rwxr-xr-x 0 0 0 31750 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/_collections_abc.cpython-39.pyc - - -rwxr-xr-x 0 0 0 3520 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/_sitebuiltins.cpython-39.pyc - - -rwxr-xr-x 0 0 0 5794 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/abc.cpython-39.pyc - - -rwxr-xr-x 0 0 0 33907 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/codecs.cpython-39.pyc - - -rwxr-xr-x 0 0 0 4043 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/genericpath.cpython-39.pyc - - -rwxr-xr-x 0 0 0 3427 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/io.cpython-39.pyc - - -rwxr-xr-x 0 0 0 31665 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/os.cpython-39.pyc - - -rwxr-xr-x 0 0 0 10348 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/posixpath.cpython-39.pyc - - -rwxr-xr-x 0 0 0 16808 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/site.cpython-39.pyc - - -rwxr-xr-x 0 0 0 4391 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/stat.cpython-39.pyc - - -rwxr-xr-x 0 0 0 3389 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_aix_support.py - - -rwxr-xr-x 0 0 0 1801 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_bootlocale.py - - -rwxr-xr-x 0 0 0 2675 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_bootsubprocess.py - - -rwxr-xr-x 0 0 0 29374 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_collections_abc.py - - -rwxr-xr-x 0 0 0 8749 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_compat_pickle.py - - -rwxr-xr-x 0 0 0 5340 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_compression.py - - -rwxr-xr-x 0 0 0 14623 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_markupbase.py - - -rwxr-xr-x 0 0 0 21773 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_osx_support.py - - -rwxr-xr-x 0 0 0 6189 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_py_abc.py - - -rwxr-xr-x 0 0 0 228666 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_pydecimal.py - - -rwxr-xr-x 0 0 0 93316 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_pyio.py - - -rwxr-xr-x 0 0 0 3115 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_sitebuiltins.py - - -rwxr-xr-x 0 0 0 25277 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_strptime.py - - -rwxr-xr-x 0 0 0 30260 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_sysconfigdata__linux_x86_64-linux-gnu.py - - -rwxr-xr-x 0 0 0 7220 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_threading_local.py - - -rwxr-xr-x 0 0 0 5923 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_weakrefset.py - - -rwxr-xr-x 0 0 0 4920 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/abc.py - - -rwxr-xr-x 0 0 0 32605 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/aifc.py - - -rwxr-xr-x 0 0 0 500 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/antigravity.py - - -rwxr-xr-x 0 0 0 98119 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/argparse.py - - -rwxr-xr-x 0 0 0 56179 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ast.py - - -rwxr-xr-x 0 0 0 11321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asynchat.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/ - - -rwxr-xr-x 0 0 0 1279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/__init__.py - - -rwxr-xr-x 0 0 0 3343 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/__main__.py - - -rwxr-xr-x 0 0 0 74192 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/base_events.py - - -rwxr-xr-x 0 0 0 2574 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/base_futures.py - - -rwxr-xr-x 0 0 0 8843 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/base_subprocess.py - - -rwxr-xr-x 0 0 0 2467 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/base_tasks.py - - -rwxr-xr-x 0 0 0 888 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/constants.py - - -rwxr-xr-x 0 0 0 8797 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/coroutines.py - - -rwxr-xr-x 0 0 0 26451 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/events.py - - -rwxr-xr-x 0 0 0 1633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/exceptions.py - - -rwxr-xr-x 0 0 0 2404 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/format_helpers.py - - -rwxr-xr-x 0 0 0 14042 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/futures.py - - -rwxr-xr-x 0 0 0 15181 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/locks.py - - -rwxr-xr-x 0 0 0 124 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/log.py - - -rwxr-xr-x 0 0 0 32146 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/proactor_events.py - - -rwxr-xr-x 0 0 0 6957 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/protocols.py - - -rwxr-xr-x 0 0 0 8305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/queues.py - - -rwxr-xr-x 0 0 0 2125 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/runners.py - - -rwxr-xr-x 0 0 0 39500 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/selector_events.py - - -rwxr-xr-x 0 0 0 27459 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/sslproto.py - - -rwxr-xr-x 0 0 0 5992 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/staggered.py - - -rwxr-xr-x 0 0 0 26656 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/streams.py - - -rwxr-xr-x 0 0 0 8070 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/subprocess.py - - -rwxr-xr-x 0 0 0 34419 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/tasks.py - - -rwxr-xr-x 0 0 0 790 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/threads.py - - -rwxr-xr-x 0 0 0 10724 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/transports.py - - -rwxr-xr-x 0 0 0 5876 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/trsock.py - - -rwxr-xr-x 0 0 0 51754 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/unix_events.py - - -rwxr-xr-x 0 0 0 33004 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/windows_events.py - - -rwxr-xr-x 0 0 0 5060 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/windows_utils.py - - -rwxr-xr-x 0 0 0 20102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncore.py - - -rwxr-xr-x 0 0 0 19861 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/base64.py - - -rwxr-xr-x 0 0 0 31389 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/bdb.py - - -rwxr-xr-x 0 0 0 14784 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/binhex.py - - -rwxr-xr-x 0 0 0 2350 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/bisect.py - - -rwxr-xr-x 0 0 0 12447 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/bz2.py - - -rwxr-xr-x 0 0 0 6347 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/cProfile.py - - -rwxr-xr-x 0 0 0 24832 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/calendar.py - - -rwxr-xr-x 0 0 0 33963 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/cgi.py - - -rwxr-xr-x 0 0 0 12096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/cgitb.py - - -rwxr-xr-x 0 0 0 5435 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/chunk.py - - -rwxr-xr-x 0 0 0 14860 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/cmd.py - - -rwxr-xr-x 0 0 0 10622 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/code.py - - -rwxr-xr-x 0 0 0 36673 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/codecs.py - - -rwxr-xr-x 0 0 0 6326 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/codeop.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/collections/ - - -rwxr-xr-x 0 0 0 49819 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/collections/__init__.py - - -rwxr-xr-x 0 0 0 119 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/collections/abc.py - - -rwxr-xr-x 0 0 0 4064 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/colorsys.py - - -rwxr-xr-x 0 0 0 20105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/compileall.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/ - - -rwxr-xr-x 0 0 0 38 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/futures/ - - -rwxr-xr-x 0 0 0 1554 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/futures/__init__.py - - -rwxr-xr-x 0 0 0 22577 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/futures/_base.py - - -rwxr-xr-x 0 0 0 31395 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/futures/process.py - - -rwxr-xr-x 0 0 0 8771 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/futures/thread.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/ - - -rwxr-xr-x 0 0 0 113057 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/Makefile - - -rwxr-xr-x 0 0 0 15019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/Setup - - -rwxr-xr-x 0 0 0 3091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/Setup.local - - -rwxr-xr-x 0 0 0 8848 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/config.c - - -rwxr-xr-x 0 0 0 1623 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/config.c.in - - -rwxr-xr-x 0 0 0 15368 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/install-sh - - -rwxr-xr-x 0 0 0 7929 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/makesetup - - -rwxr-xr-x 0 0 0 2069 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/python-config.py - - -rwxr-xr-x 0 0 0 4012 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/python.o - - -rwxr-xr-x 0 0 0 54584 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/configparser.py - - -rwxr-xr-x 0 0 0 24624 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/contextlib.py - - -rwxr-xr-x 0 0 0 129 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/contextvars.py - - -rwxr-xr-x 0 0 0 8650 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/copy.py - - -rwxr-xr-x 0 0 0 7274 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/copyreg.py - - -rwxr-xr-x 0 0 0 3819 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/crypt.py - - -rwxr-xr-x 0 0 0 16144 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/csv.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/ - - -rwxr-xr-x 0 0 0 18046 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/__init__.py - - -rwxr-xr-x 0 0 0 12575 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/_aix.py - - -rwxr-xr-x 0 0 0 2000 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/_endian.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/ - - -rwxr-xr-x 0 0 0 296 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/README.ctypes - - -rwxr-xr-x 0 0 0 154 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/__init__.py - - -rwxr-xr-x 0 0 0 5283 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/dyld.py - - -rwxr-xr-x 0 0 0 1828 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/dylib.py - - -rwxr-xr-x 0 0 0 84 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/fetch_macholib - - -rwxr-xr-x 0 0 0 75 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/fetch_macholib.bat - - -rwxr-xr-x 0 0 0 2201 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/framework.py - - -rwxr-xr-x 0 0 0 13879 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/util.py - - -rwxr-xr-x 0 0 0 5628 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/wintypes.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/curses/ - - -rwxr-xr-x 0 0 0 3369 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/curses/__init__.py - - -rwxr-xr-x 0 0 0 2547 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/curses/ascii.py - - -rwxr-xr-x 0 0 0 5634 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/curses/has_key.py - - -rwxr-xr-x 0 0 0 87 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/curses/panel.py - - -rwxr-xr-x 0 0 0 7657 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/curses/textpad.py - - -rwxr-xr-x 0 0 0 49586 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/dataclasses.py - - -rwxr-xr-x 0 0 0 89177 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/datetime.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/dbm/ - - -rwxr-xr-x 0 0 0 5839 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/dbm/__init__.py - - -rwxr-xr-x 0 0 0 11536 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/dbm/dumb.py - - -rwxr-xr-x 0 0 0 72 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/dbm/gnu.py - - -rwxr-xr-x 0 0 0 70 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/dbm/ndbm.py - - -rwxr-xr-x 0 0 0 320 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/decimal.py - - -rwxr-xr-x 0 0 0 83307 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/difflib.py - - -rwxr-xr-x 0 0 0 20570 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/dis.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/ - - -rwxr-xr-x 0 0 0 244 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/README - - -rwxr-xr-x 0 0 0 236 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/__init__.py - - -rwxr-xr-x 0 0 0 20007 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/_msvccompiler.py - - -rwxr-xr-x 0 0 0 8572 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/archive_util.py - - -rwxr-xr-x 0 0 0 14894 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/bcppcompiler.py - - -rwxr-xr-x 0 0 0 47418 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/ccompiler.py - - -rwxr-xr-x 0 0 0 18079 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/cmd.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/ - - -rwxr-xr-x 0 0 0 799 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/__init__.py - - -rwxr-xr-x 0 0 0 5562 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist.py - - -rwxr-xr-x 0 0 0 4913 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist_dumb.py - - -rwxr-xr-x 0 0 0 35579 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist_msi.py - - -rwxr-xr-x 0 0 0 21537 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist_rpm.py - - -rwxr-xr-x 0 0 0 16030 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist_wininst.py - - -rwxr-xr-x 0 0 0 5767 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/build.py - - -rwxr-xr-x 0 0 0 8022 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/build_clib.py - - -rwxr-xr-x 0 0 0 31635 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/build_ext.py - - -rwxr-xr-x 0 0 0 17190 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/build_py.py - - -rwxr-xr-x 0 0 0 6232 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/build_scripts.py - - -rwxr-xr-x 0 0 0 5636 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/check.py - - -rwxr-xr-x 0 0 0 2776 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/clean.py - - -rwxr-xr-x 0 0 0 633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/command_template - - -rwxr-xr-x 0 0 0 13117 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/config.py - - -rwxr-xr-x 0 0 0 26805 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/install.py - - -rwxr-xr-x 0 0 0 2822 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/install_data.py - - -rwxr-xr-x 0 0 0 2603 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/install_egg_info.py - - -rwxr-xr-x 0 0 0 1298 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/install_headers.py - - -rwxr-xr-x 0 0 0 8397 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/install_lib.py - - -rwxr-xr-x 0 0 0 2017 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/install_scripts.py - - -rwxr-xr-x 0 0 0 11712 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/register.py - - -rwxr-xr-x 0 0 0 19005 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/sdist.py - - -rwxr-xr-x 0 0 0 7621 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/upload.py - - -rwxr-xr-x 0 0 0 4827 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/config.py - - -rwxr-xr-x 0 0 0 8876 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/core.py - - -rwxr-xr-x 0 0 0 16380 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/cygwinccompiler.py - - -rwxr-xr-x 0 0 0 139 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/debug.py - - -rwxr-xr-x 0 0 0 3491 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/dep_util.py - - -rwxr-xr-x 0 0 0 7778 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/dir_util.py - - -rwxr-xr-x 0 0 0 50385 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/dist.py - - -rwxr-xr-x 0 0 0 3577 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/errors.py - - -rwxr-xr-x 0 0 0 10515 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/extension.py - - -rwxr-xr-x 0 0 0 17784 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/fancy_getopt.py - - -rwxr-xr-x 0 0 0 8148 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/file_util.py - - -rwxr-xr-x 0 0 0 12832 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/filelist.py - - -rwxr-xr-x 0 0 0 1969 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/log.py - - -rwxr-xr-x 0 0 0 30453 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/msvc9compiler.py - - -rwxr-xr-x 0 0 0 23540 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/msvccompiler.py - - -rwxr-xr-x 0 0 0 4660 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/spawn.py - - -rwxr-xr-x 0 0 0 20632 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/sysconfig.py - - -rwxr-xr-x 0 0 0 12483 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/text_file.py - - -rwxr-xr-x 0 0 0 14818 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/unixccompiler.py - - -rwxr-xr-x 0 0 0 20913 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/util.py - - -rwxr-xr-x 0 0 0 12514 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/version.py - - -rwxr-xr-x 0 0 0 5133 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/versionpredicate.py - - -rwxr-xr-x 0 0 0 104568 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/doctest.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/ - - -rwxr-xr-x 0 0 0 1766 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/__init__.py - - -rwxr-xr-x 0 0 0 8541 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/_encoded_words.py - - -rwxr-xr-x 0 0 0 106981 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/_header_value_parser.py - - -rwxr-xr-x 0 0 0 17722 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/_parseaddr.py - - -rwxr-xr-x 0 0 0 15073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/_policybase.py - - -rwxr-xr-x 0 0 0 9561 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/architecture.rst - - -rwxr-xr-x 0 0 0 3558 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/base64mime.py - - -rwxr-xr-x 0 0 0 17128 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/charset.py - - -rwxr-xr-x 0 0 0 10555 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/contentmanager.py - - -rwxr-xr-x 0 0 0 1786 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/encoders.py - - -rwxr-xr-x 0 0 0 3647 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/errors.py - - -rwxr-xr-x 0 0 0 22780 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/feedparser.py - - -rwxr-xr-x 0 0 0 20196 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/generator.py - - -rwxr-xr-x 0 0 0 24102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/header.py - - -rwxr-xr-x 0 0 0 20628 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/headerregistry.py - - -rwxr-xr-x 0 0 0 2135 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/iterators.py - - -rwxr-xr-x 0 0 0 47060 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/message.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/__init__.py - - -rwxr-xr-x 0 0 0 1321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/application.py - - -rwxr-xr-x 0 0 0 2739 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/audio.py - - -rwxr-xr-x 0 0 0 916 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/base.py - - -rwxr-xr-x 0 0 0 1829 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/image.py - - -rwxr-xr-x 0 0 0 1317 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/message.py - - -rwxr-xr-x 0 0 0 1621 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/multipart.py - - -rwxr-xr-x 0 0 0 691 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/nonmultipart.py - - -rwxr-xr-x 0 0 0 1437 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/text.py - - -rwxr-xr-x 0 0 0 5041 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/parser.py - - -rwxr-xr-x 0 0 0 10383 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/policy.py - - -rwxr-xr-x 0 0 0 9858 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/quoprimime.py - - -rwxr-xr-x 0 0 0 13281 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/utils.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/ - - -rwxr-xr-x 0 0 0 5588 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/__pycache__/ - - -rwxr-xr-x 0 0 0 3916 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/__pycache__/__init__.cpython-39.pyc - - -rwxr-xr-x 0 0 0 6349 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/__pycache__/aliases.cpython-39.pyc - - -rwxr-xr-x 0 0 0 1914 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/__pycache__/latin_1.cpython-39.pyc - - -rwxr-xr-x 0 0 0 1651 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/__pycache__/utf_8.cpython-39.pyc - - -rwxr-xr-x 0 0 0 15677 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/aliases.py - - -rwxr-xr-x 0 0 0 1248 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/ascii.py - - -rwxr-xr-x 0 0 0 1533 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/base64_codec.py - - -rwxr-xr-x 0 0 0 1019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/big5.py - - -rwxr-xr-x 0 0 0 1039 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/big5hkscs.py - - -rwxr-xr-x 0 0 0 2249 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/bz2_codec.py - - -rwxr-xr-x 0 0 0 2084 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/charmap.py - - -rwxr-xr-x 0 0 0 13121 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp037.py - - -rwxr-xr-x 0 0 0 13568 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1006.py - - -rwxr-xr-x 0 0 0 13113 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1026.py - - -rwxr-xr-x 0 0 0 34597 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1125.py - - -rwxr-xr-x 0 0 0 13105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1140.py - - -rwxr-xr-x 0 0 0 13686 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1250.py - - -rwxr-xr-x 0 0 0 13361 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1251.py - - -rwxr-xr-x 0 0 0 13511 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1252.py - - -rwxr-xr-x 0 0 0 13094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1253.py - - -rwxr-xr-x 0 0 0 13502 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1254.py - - -rwxr-xr-x 0 0 0 12466 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1255.py - - -rwxr-xr-x 0 0 0 12814 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1256.py - - -rwxr-xr-x 0 0 0 13374 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1257.py - - -rwxr-xr-x 0 0 0 13364 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1258.py - - -rwxr-xr-x 0 0 0 14132 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp273.py - - -rwxr-xr-x 0 0 0 12055 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp424.py - - -rwxr-xr-x 0 0 0 34564 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp437.py - - -rwxr-xr-x 0 0 0 13121 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp500.py - - -rwxr-xr-x 0 0 0 13686 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp720.py - - -rwxr-xr-x 0 0 0 34681 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp737.py - - -rwxr-xr-x 0 0 0 34476 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp775.py - - -rwxr-xr-x 0 0 0 34105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp850.py - - -rwxr-xr-x 0 0 0 35002 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp852.py - - -rwxr-xr-x 0 0 0 33850 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp855.py - - -rwxr-xr-x 0 0 0 12423 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp856.py - - -rwxr-xr-x 0 0 0 33908 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp857.py - - -rwxr-xr-x 0 0 0 34015 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp858.py - - -rwxr-xr-x 0 0 0 34681 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp860.py - - -rwxr-xr-x 0 0 0 34633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp861.py - - -rwxr-xr-x 0 0 0 33370 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp862.py - - -rwxr-xr-x 0 0 0 34252 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp863.py - - -rwxr-xr-x 0 0 0 33663 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp864.py - - -rwxr-xr-x 0 0 0 34618 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp865.py - - -rwxr-xr-x 0 0 0 34396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp866.py - - -rwxr-xr-x 0 0 0 32965 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp869.py - - -rwxr-xr-x 0 0 0 12595 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp874.py - - -rwxr-xr-x 0 0 0 12854 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp875.py - - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp932.py - - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp949.py - - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp950.py - - -rwxr-xr-x 0 0 0 1051 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/euc_jis_2004.py - - -rwxr-xr-x 0 0 0 1051 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/euc_jisx0213.py - - -rwxr-xr-x 0 0 0 1027 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/euc_jp.py - - -rwxr-xr-x 0 0 0 1027 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/euc_kr.py - - -rwxr-xr-x 0 0 0 1031 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/gb18030.py - - -rwxr-xr-x 0 0 0 1027 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/gb2312.py - - -rwxr-xr-x 0 0 0 1015 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/gbk.py - - -rwxr-xr-x 0 0 0 1508 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/hex_codec.py - - -rwxr-xr-x 0 0 0 13475 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/hp_roman8.py - - -rwxr-xr-x 0 0 0 1011 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/hz.py - - -rwxr-xr-x 0 0 0 9098 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/idna.py - - -rwxr-xr-x 0 0 0 1053 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp.py - - -rwxr-xr-x 0 0 0 1061 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_1.py - - -rwxr-xr-x 0 0 0 1061 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_2.py - - -rwxr-xr-x 0 0 0 1073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_2004.py - - -rwxr-xr-x 0 0 0 1061 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_3.py - - -rwxr-xr-x 0 0 0 1069 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_ext.py - - -rwxr-xr-x 0 0 0 1053 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_kr.py - - -rwxr-xr-x 0 0 0 13176 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_1.py - - -rwxr-xr-x 0 0 0 13589 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_10.py - - -rwxr-xr-x 0 0 0 12335 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_11.py - - -rwxr-xr-x 0 0 0 13271 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_13.py - - -rwxr-xr-x 0 0 0 13652 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_14.py - - -rwxr-xr-x 0 0 0 13212 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_15.py - - -rwxr-xr-x 0 0 0 13557 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_16.py - - -rwxr-xr-x 0 0 0 13404 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_2.py - - -rwxr-xr-x 0 0 0 13089 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_3.py - - -rwxr-xr-x 0 0 0 13376 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_4.py - - -rwxr-xr-x 0 0 0 13015 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_5.py - - -rwxr-xr-x 0 0 0 10833 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_6.py - - -rwxr-xr-x 0 0 0 12844 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_7.py - - -rwxr-xr-x 0 0 0 11036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_8.py - - -rwxr-xr-x 0 0 0 13156 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_9.py - - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/johab.py - - -rwxr-xr-x 0 0 0 13779 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/koi8_r.py - - -rwxr-xr-x 0 0 0 13193 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/koi8_t.py - - -rwxr-xr-x 0 0 0 13762 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/koi8_u.py - - -rwxr-xr-x 0 0 0 13723 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/kz1048.py - - -rwxr-xr-x 0 0 0 1264 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/latin_1.py - - -rwxr-xr-x 0 0 0 36467 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_arabic.py - - -rwxr-xr-x 0 0 0 13633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_croatian.py - - -rwxr-xr-x 0 0 0 13454 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_cyrillic.py - - -rwxr-xr-x 0 0 0 15170 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_farsi.py - - -rwxr-xr-x 0 0 0 13721 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_greek.py - - -rwxr-xr-x 0 0 0 13498 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_iceland.py - - -rwxr-xr-x 0 0 0 14118 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_latin2.py - - -rwxr-xr-x 0 0 0 13480 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_roman.py - - -rwxr-xr-x 0 0 0 13661 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_romanian.py - - -rwxr-xr-x 0 0 0 13513 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_turkish.py - - -rwxr-xr-x 0 0 0 1211 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mbcs.py - - -rwxr-xr-x 0 0 0 1019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/oem.py - - -rwxr-xr-x 0 0 0 13519 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/palmos.py - - -rwxr-xr-x 0 0 0 14015 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/ptcp154.py - - -rwxr-xr-x 0 0 0 6883 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/punycode.py - - -rwxr-xr-x 0 0 0 1525 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/quopri_codec.py - - -rwxr-xr-x 0 0 0 1332 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/raw_unicode_escape.py - - -rwxr-xr-x 0 0 0 2448 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/rot_13.py - - -rwxr-xr-x 0 0 0 1039 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/shift_jis.py - - -rwxr-xr-x 0 0 0 1059 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/shift_jis_2004.py - - -rwxr-xr-x 0 0 0 1059 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/shift_jisx0213.py - - -rwxr-xr-x 0 0 0 12300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/tis_620.py - - -rwxr-xr-x 0 0 0 1299 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/undefined.py - - -rwxr-xr-x 0 0 0 1304 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/unicode_escape.py - - -rwxr-xr-x 0 0 0 5236 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_16.py - - -rwxr-xr-x 0 0 0 1037 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_16_be.py - - -rwxr-xr-x 0 0 0 1037 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_16_le.py - - -rwxr-xr-x 0 0 0 5129 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_32.py - - -rwxr-xr-x 0 0 0 930 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_32_be.py - - -rwxr-xr-x 0 0 0 930 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_32_le.py - - -rwxr-xr-x 0 0 0 946 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_7.py - - -rwxr-xr-x 0 0 0 1005 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_8.py - - -rwxr-xr-x 0 0 0 4133 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_8_sig.py - - -rwxr-xr-x 0 0 0 2851 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/uu_codec.py - - -rwxr-xr-x 0 0 0 2204 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/zlib_codec.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ensurepip/ - - -rwxr-xr-x 0 0 0 6963 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ensurepip/__init__.py - - -rwxr-xr-x 0 0 0 88 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ensurepip/__main__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ensurepip/_bundled/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ensurepip/_bundled/__init__.py - - -rwxr-xr-x 0 0 0 808 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ensurepip/_uninstall.py - - -rwxr-xr-x 0 0 0 39440 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/enum.py - - -rwxr-xr-x 0 0 0 10024 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/filecmp.py - - -rwxr-xr-x 0 0 0 14791 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/fileinput.py - - -rwxr-xr-x 0 0 0 6004 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/fnmatch.py - - -rwxr-xr-x 0 0 0 15143 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/formatter.py - - -rwxr-xr-x 0 0 0 24323 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/fractions.py - - -rwxr-xr-x 0 0 0 35496 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ftplib.py - - -rwxr-xr-x 0 0 0 38881 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/functools.py - - -rwxr-xr-x 0 0 0 4975 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/genericpath.py - - -rwxr-xr-x 0 0 0 7489 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/getopt.py - - -rwxr-xr-x 0 0 0 5990 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/getpass.py - - -rwxr-xr-x 0 0 0 27266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/gettext.py - - -rwxr-xr-x 0 0 0 5823 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/glob.py - - -rwxr-xr-x 0 0 0 9573 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/graphlib.py - - -rwxr-xr-x 0 0 0 21772 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/gzip.py - - -rwxr-xr-x 0 0 0 10010 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/hashlib.py - - -rwxr-xr-x 0 0 0 22877 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/heapq.py - - -rwxr-xr-x 0 0 0 7003 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/hmac.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/html/ - - -rwxr-xr-x 0 0 0 4756 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/html/__init__.py - - -rwxr-xr-x 0 0 0 75383 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/html/entities.py - - -rwxr-xr-x 0 0 0 17392 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/html/parser.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/http/ - - -rwxr-xr-x 0 0 0 6732 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/http/__init__.py - - -rwxr-xr-x 0 0 0 56549 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/http/client.py - - -rwxr-xr-x 0 0 0 76835 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/http/cookiejar.py - - -rwxr-xr-x 0 0 0 20482 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/http/cookies.py - - -rwxr-xr-x 0 0 0 48231 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/http/server.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/ - - -rwxr-xr-x 0 0 0 1866 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/CREDITS.txt - - -rwxr-xr-x 0 0 0 56360 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/ChangeLog - - -rwxr-xr-x 0 0 0 10312 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/HISTORY.txt - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/ - - -rwxr-xr-x 0 0 0 443 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/README.txt - - -rwxr-xr-x 0 0 0 120 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/folder.gif - - -rwxr-xr-x 0 0 0 57746 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle.ico - - -rwxr-xr-x 0 0 0 634 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_16.gif - - -rwxr-xr-x 0 0 0 1031 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_16.png - - -rwxr-xr-x 0 0 0 39205 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_256.png - - -rwxr-xr-x 0 0 0 1019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_32.gif - - -rwxr-xr-x 0 0 0 2036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_32.png - - -rwxr-xr-x 0 0 0 1388 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_48.gif - - -rwxr-xr-x 0 0 0 3977 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_48.png - - -rwxr-xr-x 0 0 0 75 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/minusnode.gif - - -rwxr-xr-x 0 0 0 125 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/openfolder.gif - - -rwxr-xr-x 0 0 0 78 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/plusnode.gif - - -rwxr-xr-x 0 0 0 380 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/python.gif - - -rwxr-xr-x 0 0 0 72 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/tk.gif - - -rwxr-xr-x 0 0 0 51948 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/NEWS.txt - - -rwxr-xr-x 0 0 0 27172 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/NEWS2x.txt - - -rwxr-xr-x 0 0 0 9680 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/README.txt - - -rwxr-xr-x 0 0 0 8478 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/TODO.txt - - -rwxr-xr-x 0 0 0 396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/__init__.py - - -rwxr-xr-x 0 0 0 159 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/__main__.py - - -rwxr-xr-x 0 0 0 9150 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/autocomplete.py - - -rwxr-xr-x 0 0 0 20981 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/autocomplete_w.py - - -rwxr-xr-x 0 0 0 3216 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/autoexpand.py - - -rwxr-xr-x 0 0 0 8314 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/browser.py - - -rwxr-xr-x 0 0 0 7267 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/calltip.py - - -rwxr-xr-x 0 0 0 7158 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/calltip_w.py - - -rwxr-xr-x 0 0 0 11420 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/codecontext.py - - -rwxr-xr-x 0 0 0 13201 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/colorizer.py - - -rwxr-xr-x 0 0 0 2266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/config-extensions.def - - -rwxr-xr-x 0 0 0 2864 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/config-highlight.def - - -rwxr-xr-x 0 0 0 10910 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/config-keys.def - - -rwxr-xr-x 0 0 0 3168 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/config-main.def - - -rwxr-xr-x 0 0 0 38173 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/config.py - - -rwxr-xr-x 0 0 0 14540 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/config_key.py - - -rwxr-xr-x 0 0 0 105738 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/configdialog.py - - -rwxr-xr-x 0 0 0 19104 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/debugger.py - - -rwxr-xr-x 0 0 0 12167 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/debugger_r.py - - -rwxr-xr-x 0 0 0 4055 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/debugobj.py - - -rwxr-xr-x 0 0 0 1082 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/debugobj_r.py - - -rwxr-xr-x 0 0 0 1043 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/delegator.py - - -rwxr-xr-x 0 0 0 2017 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/dynoption.py - - -rwxr-xr-x 0 0 0 65733 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/editor.py - - -rwxr-xr-x 0 0 0 3631 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/extend.txt - - -rwxr-xr-x 0 0 0 3876 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/filelist.py - - -rwxr-xr-x 0 0 0 15777 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/format.py - - -rwxr-xr-x 0 0 0 7479 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/grep.py - - -rwxr-xr-x 0 0 0 68554 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/help.html - - -rwxr-xr-x 0 0 0 11851 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/help.py - - -rwxr-xr-x 0 0 0 9084 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/help_about.py - - -rwxr-xr-x 0 0 0 4043 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/history.py - - -rwxr-xr-x 0 0 0 12883 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/hyperparser.py - - -rwxr-xr-x 0 0 0 177 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/idle.bat - - -rwxr-xr-x 0 0 0 454 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/idle.py - - -rwxr-xr-x 0 0 0 570 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/idle.pyw - - -rwxr-xr-x 0 0 0 15832 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/iomenu.py - - -rwxr-xr-x 0 0 0 9663 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/macosx.py - - -rwxr-xr-x 0 0 0 3930 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/mainmenu.py - - -rwxr-xr-x 0 0 0 18648 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/multicall.py - - -rwxr-xr-x 0 0 0 5709 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/outwin.py - - -rwxr-xr-x 0 0 0 7204 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/parenmatch.py - - -rwxr-xr-x 0 0 0 3193 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/pathbrowser.py - - -rwxr-xr-x 0 0 0 3130 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/percolator.py - - -rwxr-xr-x 0 0 0 19864 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/pyparse.py - - -rwxr-xr-x 0 0 0 57605 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/pyshell.py - - -rwxr-xr-x 0 0 0 15075 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/query.py - - -rwxr-xr-x 0 0 0 6875 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/redirector.py - - -rwxr-xr-x 0 0 0 9799 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/replace.py - - -rwxr-xr-x 0 0 0 21076 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/rpc.py - - -rwxr-xr-x 0 0 0 21046 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/run.py - - -rwxr-xr-x 0 0 0 8273 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/runscript.py - - -rwxr-xr-x 0 0 0 4465 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/scrolledlist.py - - -rwxr-xr-x 0 0 0 5566 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/search.py - - -rwxr-xr-x 0 0 0 7856 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/searchbase.py - - -rwxr-xr-x 0 0 0 7362 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/searchengine.py - - -rwxr-xr-x 0 0 0 13585 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/sidebar.py - - -rwxr-xr-x 0 0 0 12825 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/squeezer.py - - -rwxr-xr-x 0 0 0 4454 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/stackviewer.py - - -rwxr-xr-x 0 0 0 1472 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/statusbar.py - - -rwxr-xr-x 0 0 0 6813 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/textview.py - - -rwxr-xr-x 0 0 0 6557 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/tooltip.py - - -rwxr-xr-x 0 0 0 16370 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/tree.py - - -rwxr-xr-x 0 0 0 11046 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/undo.py - - -rwxr-xr-x 0 0 0 721 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/util.py - - -rwxr-xr-x 0 0 0 2616 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/window.py - - -rwxr-xr-x 0 0 0 4203 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/zoomheight.py - - -rwxr-xr-x 0 0 0 2005 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/zzdummy.py - - -rwxr-xr-x 0 0 0 54904 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/imaplib.py - - -rwxr-xr-x 0 0 0 3808 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/imghdr.py - - -rwxr-xr-x 0 0 0 10536 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/imp.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/importlib/ - - -rwxr-xr-x 0 0 0 6061 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/importlib/__init__.py - - -rwxr-xr-x 0 0 0 40322 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/importlib/_bootstrap.py - - -rwxr-xr-x 0 0 0 64947 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/importlib/_bootstrap_external.py - - -rwxr-xr-x 0 0 0 1497 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/importlib/_common.py - - -rwxr-xr-x 0 0 0 14924 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/importlib/abc.py - - -rwxr-xr-x 0 0 0 844 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/importlib/machinery.py - - -rwxr-xr-x 0 0 0 18750 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/importlib/metadata.py - - -rwxr-xr-x 0 0 0 7209 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/importlib/resources.py - - -rwxr-xr-x 0 0 0 11321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/importlib/util.py - - -rwxr-xr-x 0 0 0 118235 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/inspect.py - - -rwxr-xr-x 0 0 0 3541 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/io.py - - -rwxr-xr-x 0 0 0 74612 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ipaddress.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/json/ - - -rwxr-xr-x 0 0 0 14019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/json/__init__.py - - -rwxr-xr-x 0 0 0 12472 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/json/decoder.py - - -rwxr-xr-x 0 0 0 16073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/json/encoder.py - - -rwxr-xr-x 0 0 0 2425 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/json/scanner.py - - -rwxr-xr-x 0 0 0 3339 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/json/tool.py - - -rwxr-xr-x 0 0 0 1047 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/keyword.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib-dynload/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib-dynload/.empty - - -rwxr-xr-x 0 0 0 24352 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib-dynload/_crypt.cpython-39-x86_64-linux-gnu.so - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/ - - -rwxr-xr-x 0 0 0 8696 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/Grammar.txt - - -rwxr-xr-x 0 0 0 15313 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/Grammar3.9.18.final.0.pickle - - -rwxr-xr-x 0 0 0 793 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/PatternGrammar.txt - - -rwxr-xr-x 0 0 0 1225 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/PatternGrammar3.9.18.final.0.pickle - - -rwxr-xr-x 0 0 0 163 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/__init__.py - - -rwxr-xr-x 0 0 0 67 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/__main__.py - - -rwxr-xr-x 0 0 0 6623 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/btm_matcher.py - - -rwxr-xr-x 0 0 0 9966 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/btm_utils.py - - -rwxr-xr-x 0 0 0 6690 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixer_base.py - - -rwxr-xr-x 0 0 0 15206 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixer_util.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/ - - -rwxr-xr-x 0 0 0 47 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/__init__.py - - -rwxr-xr-x 0 0 0 2346 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_apply.py - - -rwxr-xr-x 0 0 0 984 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_asserts.py - - -rwxr-xr-x 0 0 0 320 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_basestring.py - - -rwxr-xr-x 0 0 0 590 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_buffer.py - - -rwxr-xr-x 0 0 0 3760 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_dict.py - - -rwxr-xr-x 0 0 0 3344 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_except.py - - -rwxr-xr-x 0 0 0 979 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_exec.py - - -rwxr-xr-x 0 0 0 2048 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_execfile.py - - -rwxr-xr-x 0 0 0 2495 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_exitfunc.py - - -rwxr-xr-x 0 0 0 2765 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_filter.py - - -rwxr-xr-x 0 0 0 644 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_funcattrs.py - - -rwxr-xr-x 0 0 0 547 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_future.py - - -rwxr-xr-x 0 0 0 451 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_getcwdu.py - - -rwxr-xr-x 0 0 0 3196 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_has_key.py - - -rwxr-xr-x 0 0 0 4876 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_idioms.py - - -rwxr-xr-x 0 0 0 3256 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_import.py - - -rwxr-xr-x 0 0 0 5684 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_imports.py - - -rwxr-xr-x 0 0 0 289 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_imports2.py - - -rwxr-xr-x 0 0 0 708 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_input.py - - -rwxr-xr-x 0 0 0 1144 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_intern.py - - -rwxr-xr-x 0 0 0 1608 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_isinstance.py - - -rwxr-xr-x 0 0 0 1548 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_itertools.py - - -rwxr-xr-x 0 0 0 2086 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_itertools_imports.py - - -rwxr-xr-x 0 0 0 476 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_long.py - - -rwxr-xr-x 0 0 0 3640 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_map.py - - -rwxr-xr-x 0 0 0 8197 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_metaclass.py - - -rwxr-xr-x 0 0 0 606 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_methodattrs.py - - -rwxr-xr-x 0 0 0 571 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_ne.py - - -rwxr-xr-x 0 0 0 3174 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_next.py - - -rwxr-xr-x 0 0 0 591 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_nonzero.py - - -rwxr-xr-x 0 0 0 768 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_numliterals.py - - -rwxr-xr-x 0 0 0 3426 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_operator.py - - -rwxr-xr-x 0 0 0 1226 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_paren.py - - -rwxr-xr-x 0 0 0 2844 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_print.py - - -rwxr-xr-x 0 0 0 2926 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_raise.py - - -rwxr-xr-x 0 0 0 454 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_raw_input.py - - -rwxr-xr-x 0 0 0 837 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_reduce.py - - -rwxr-xr-x 0 0 0 1081 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_reload.py - - -rwxr-xr-x 0 0 0 2221 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_renames.py - - -rwxr-xr-x 0 0 0 613 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_repr.py - - -rwxr-xr-x 0 0 0 1697 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_set_literal.py - - -rwxr-xr-x 0 0 0 449 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_standarderror.py - - -rwxr-xr-x 0 0 0 1034 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_sys_exc.py - - -rwxr-xr-x 0 0 0 1582 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_throw.py - - -rwxr-xr-x 0 0 0 5565 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_tuple_params.py - - -rwxr-xr-x 0 0 0 1774 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_types.py - - -rwxr-xr-x 0 0 0 1256 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_unicode.py - - -rwxr-xr-x 0 0 0 8367 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_urllib.py - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_ws_comma.py - - -rwxr-xr-x 0 0 0 2694 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_xrange.py - - -rwxr-xr-x 0 0 0 689 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_xreadlines.py - - -rwxr-xr-x 0 0 0 1289 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_zip.py - - -rwxr-xr-x 0 0 0 11854 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/main.py - - -rwxr-xr-x 0 0 0 7054 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/patcomp.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/ - - -rwxr-xr-x 0 0 0 143 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/__init__.py - - -rwxr-xr-x 0 0 0 9642 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/conv.py - - -rwxr-xr-x 0 0 0 5969 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/driver.py - - -rwxr-xr-x 0 0 0 5533 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/grammar.py - - -rwxr-xr-x 0 0 0 1635 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/literals.py - - -rwxr-xr-x 0 0 0 8155 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/parse.py - - -rwxr-xr-x 0 0 0 13812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/pgen.py - - -rwxr-xr-x 0 0 0 1302 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/token.py - - -rwxr-xr-x 0 0 0 21119 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/tokenize.py - - -rwxr-xr-x 0 0 0 1305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pygram.py - - -rwxr-xr-x 0 0 0 27974 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pytree.py - - -rwxr-xr-x 0 0 0 27507 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/refactor.py - - -rwxr-xr-x 0 0 0 5461 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/linecache.py - - -rwxr-xr-x 0 0 0 78271 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/locale.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/logging/ - - -rwxr-xr-x 0 0 0 78600 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/logging/__init__.py - - -rwxr-xr-x 0 0 0 36379 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/logging/config.py - - -rwxr-xr-x 0 0 0 60423 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/logging/handlers.py - - -rwxr-xr-x 0 0 0 13231 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lzma.py - - -rwxr-xr-x 0 0 0 78794 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/mailbox.py - - -rwxr-xr-x 0 0 0 9116 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/mailcap.py - - -rwxr-xr-x 0 0 0 21564 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/mimetypes.py - - -rwxr-xr-x 0 0 0 24401 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/modulefinder.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/ - - -rwxr-xr-x 0 0 0 916 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/__init__.py - - -rwxr-xr-x 0 0 0 31685 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/connection.py - - -rwxr-xr-x 0 0 0 11257 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/context.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/dummy/ - - -rwxr-xr-x 0 0 0 3061 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/dummy/__init__.py - - -rwxr-xr-x 0 0 0 1598 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/dummy/connection.py - - -rwxr-xr-x 0 0 0 12142 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/forkserver.py - - -rwxr-xr-x 0 0 0 11626 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/heap.py - - -rwxr-xr-x 0 0 0 47303 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/managers.py - - -rwxr-xr-x 0 0 0 32555 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/pool.py - - -rwxr-xr-x 0 0 0 2377 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/popen_fork.py - - -rwxr-xr-x 0 0 0 2230 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/popen_forkserver.py - - -rwxr-xr-x 0 0 0 2029 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/popen_spawn_posix.py - - -rwxr-xr-x 0 0 0 4011 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/popen_spawn_win32.py - - -rwxr-xr-x 0 0 0 12000 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/process.py - - -rwxr-xr-x 0 0 0 12023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/queues.py - - -rwxr-xr-x 0 0 0 9512 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/reduction.py - - -rwxr-xr-x 0 0 0 5132 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/resource_sharer.py - - -rwxr-xr-x 0 0 0 8613 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/resource_tracker.py - - -rwxr-xr-x 0 0 0 18396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/shared_memory.py - - -rwxr-xr-x 0 0 0 6306 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/sharedctypes.py - - -rwxr-xr-x 0 0 0 9296 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/spawn.py - - -rwxr-xr-x 0 0 0 11610 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/synchronize.py - - -rwxr-xr-x 0 0 0 14006 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/util.py - - -rwxr-xr-x 0 0 0 5566 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/netrc.py - - -rwxr-xr-x 0 0 0 41023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/nntplib.py - - -rwxr-xr-x 0 0 0 27734 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ntpath.py - - -rwxr-xr-x 0 0 0 2887 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/nturl2path.py - - -rwxr-xr-x 0 0 0 10338 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/numbers.py - - -rwxr-xr-x 0 0 0 5660 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/opcode.py - - -rwxr-xr-x 0 0 0 10751 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/operator.py - - -rwxr-xr-x 0 0 0 60369 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/optparse.py - - -rwxr-xr-x 0 0 0 39065 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/os.py - - -rwxr-xr-x 0 0 0 54073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pathlib.py - - -rwxr-xr-x 0 0 0 63239 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pdb.py - - -rwxr-xr-x 0 0 0 64920 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pickle.py - - -rwxr-xr-x 0 0 0 93486 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pickletools.py - - -rwxr-xr-x 0 0 0 8916 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pipes.py - - -rwxr-xr-x 0 0 0 24276 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pkgutil.py - - -rwxr-xr-x 0 0 0 40602 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/platform.py - - -rwxr-xr-x 0 0 0 28248 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/plistlib.py - - -rwxr-xr-x 0 0 0 15198 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/poplib.py - - -rwxr-xr-x 0 0 0 15721 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/posixpath.py - - -rwxr-xr-x 0 0 0 22527 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pprint.py - - -rwxr-xr-x 0 0 0 22883 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/profile.py - - -rwxr-xr-x 0 0 0 29326 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pstats.py - - -rwxr-xr-x 0 0 0 4807 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pty.py - - -rwxr-xr-x 0 0 0 8148 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/py_compile.py - - -rwxr-xr-x 0 0 0 15255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pyclbr.py - - -rwxr-xr-x 0 0 0 109600 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pydoc.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pydoc_data/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pydoc_data/__init__.py - - -rwxr-xr-x 0 0 0 96 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pydoc_data/_pydoc.css - - -rwxr-xr-x 0 0 0 703325 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pydoc_data/topics.py - - -rwxr-xr-x 0 0 0 11496 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/queue.py - - -rwxr-xr-x 0 0 0 7268 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/quopri.py - - -rwxr-xr-x 0 0 0 31484 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/random.py - - -rwxr-xr-x 0 0 0 15861 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/re.py - - -rwxr-xr-x 0 0 0 5267 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/reprlib.py - - -rwxr-xr-x 0 0 0 7648 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/rlcompleter.py - - -rwxr-xr-x 0 0 0 13084 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/runpy.py - - -rwxr-xr-x 0 0 0 6442 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/sched.py - - -rwxr-xr-x 0 0 0 2036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/secrets.py - - -rwxr-xr-x 0 0 0 19536 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/selectors.py - - -rwxr-xr-x 0 0 0 8527 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/shelve.py - - -rwxr-xr-x 0 0 0 13501 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/shlex.py - - -rwxr-xr-x 0 0 0 53030 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/shutil.py - - -rwxr-xr-x 0 0 0 2438 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/signal.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/ - - -rwxr-xr-x 0 0 0 119 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/README.txt - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/ - - -rwxr-xr-x 0 0 0 6299 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/__pycache__/ - - -rwxr-xr-x 0 0 0 7643 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/__pycache__/__init__.cpython-39.pyc - - -rwxr-xr-x 0 0 0 44 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/override.py - - -rwxr-xr-x 0 0 0 151 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/distutils-precedence.pth - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/ - - -rwxr-xr-x 0 0 0 10082 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/AUTHORS.txt - - -rwxr-xr-x 0 0 0 4 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/INSTALLER - - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/LICENSE.txt - - -rwxr-xr-x 0 0 0 4239 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/METADATA - - -rwxr-xr-x 0 0 0 76897 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/RECORD - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/REQUESTED - - -rwxr-xr-x 0 0 0 92 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/WHEEL - - -rwxr-xr-x 0 0 0 243 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/direct_url.json - - -rwxr-xr-x 0 0 0 125 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/entry_points.txt - - -rwxr-xr-x 0 0 0 4 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/top_level.txt - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/ - - -rwxr-xr-x 0 0 0 357 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/__init__.py - - -rwxr-xr-x 0 0 0 854 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/__main__.py - - -rwxr-xr-x 0 0 0 1444 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/__pip-runner__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/ - - -rwxr-xr-x 0 0 0 573 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/__init__.py - - -rwxr-xr-x 0 0 0 10243 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/build_env.py - - -rwxr-xr-x 0 0 0 10429 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cache.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/ - - -rwxr-xr-x 0 0 0 132 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/__init__.py - - -rwxr-xr-x 0 0 0 6676 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/autocompletion.py - - -rwxr-xr-x 0 0 0 8726 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/base_command.py - - -rwxr-xr-x 0 0 0 30030 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/cmdoptions.py - - -rwxr-xr-x 0 0 0 774 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/command_context.py - - -rwxr-xr-x 0 0 0 2816 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/main.py - - -rwxr-xr-x 0 0 0 4338 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/main_parser.py - - -rwxr-xr-x 0 0 0 10817 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/parser.py - - -rwxr-xr-x 0 0 0 1968 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/progress_bars.py - - -rwxr-xr-x 0 0 0 18440 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/req_command.py - - -rwxr-xr-x 0 0 0 5118 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/spinners.py - - -rwxr-xr-x 0 0 0 116 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/status_codes.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/ - - -rwxr-xr-x 0 0 0 3882 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/__init__.py - - -rwxr-xr-x 0 0 0 7581 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/cache.py - - -rwxr-xr-x 0 0 0 1782 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/check.py - - -rwxr-xr-x 0 0 0 3986 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/completion.py - - -rwxr-xr-x 0 0 0 9815 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/configuration.py - - -rwxr-xr-x 0 0 0 6591 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/debug.py - - -rwxr-xr-x 0 0 0 5335 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/download.py - - -rwxr-xr-x 0 0 0 3172 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/freeze.py - - -rwxr-xr-x 0 0 0 1703 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/hash.py - - -rwxr-xr-x 0 0 0 1132 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/help.py - - -rwxr-xr-x 0 0 0 4793 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/index.py - - -rwxr-xr-x 0 0 0 3188 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/inspect.py - - -rwxr-xr-x 0 0 0 28934 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/install.py - - -rwxr-xr-x 0 0 0 12457 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/list.py - - -rwxr-xr-x 0 0 0 5697 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/search.py - - -rwxr-xr-x 0 0 0 6419 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/show.py - - -rwxr-xr-x 0 0 0 3886 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/uninstall.py - - -rwxr-xr-x 0 0 0 6476 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/wheel.py - - -rwxr-xr-x 0 0 0 13839 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/configuration.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/ - - -rwxr-xr-x 0 0 0 858 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/__init__.py - - -rwxr-xr-x 0 0 0 1221 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/base.py - - -rwxr-xr-x 0 0 0 729 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/installed.py - - -rwxr-xr-x 0 0 0 6494 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/sdist.py - - -rwxr-xr-x 0 0 0 1164 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/wheel.py - - -rwxr-xr-x 0 0 0 23737 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/exceptions.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/ - - -rwxr-xr-x 0 0 0 30 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/__init__.py - - -rwxr-xr-x 0 0 0 16504 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/collector.py - - -rwxr-xr-x 0 0 0 37873 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/package_finder.py - - -rwxr-xr-x 0 0 0 6556 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/sources.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/ - - -rwxr-xr-x 0 0 0 15365 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/__init__.py - - -rwxr-xr-x 0 0 0 6100 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/_distutils.py - - -rwxr-xr-x 0 0 0 7680 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/_sysconfig.py - - -rwxr-xr-x 0 0 0 2556 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/base.py - - -rwxr-xr-x 0 0 0 340 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/main.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/ - - -rwxr-xr-x 0 0 0 4280 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/__init__.py - - -rwxr-xr-x 0 0 0 2595 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/_json.py - - -rwxr-xr-x 0 0 0 25277 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/base.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/ - - -rwxr-xr-x 0 0 0 107 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/__init__.py - - -rwxr-xr-x 0 0 0 1882 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/_compat.py - - -rwxr-xr-x 0 0 0 8181 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/_dists.py - - -rwxr-xr-x 0 0 0 7435 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/_envs.py - - -rwxr-xr-x 0 0 0 9773 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/pkg_resources.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/ - - -rwxr-xr-x 0 0 0 63 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/__init__.py - - -rwxr-xr-x 0 0 0 990 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/candidate.py - - -rwxr-xr-x 0 0 0 6931 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/direct_url.py - - -rwxr-xr-x 0 0 0 2520 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/format_control.py - - -rwxr-xr-x 0 0 0 1030 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/index.py - - -rwxr-xr-x 0 0 0 2609 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/installation_report.py - - -rwxr-xr-x 0 0 0 20819 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/link.py - - -rwxr-xr-x 0 0 0 738 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/scheme.py - - -rwxr-xr-x 0 0 0 4643 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/search_scope.py - - -rwxr-xr-x 0 0 0 1907 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/selection_prefs.py - - -rwxr-xr-x 0 0 0 3858 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/target_python.py - - -rwxr-xr-x 0 0 0 3600 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/wheel.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/ - - -rwxr-xr-x 0 0 0 50 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/__init__.py - - -rwxr-xr-x 0 0 0 20541 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/auth.py - - -rwxr-xr-x 0 0 0 2145 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/cache.py - - -rwxr-xr-x 0 0 0 6096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/download.py - - -rwxr-xr-x 0 0 0 7638 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/lazy_wheel.py - - -rwxr-xr-x 0 0 0 18607 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/session.py - - -rwxr-xr-x 0 0 0 4073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/utils.py - - -rwxr-xr-x 0 0 0 1791 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/xmlrpc.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/__init__.py - - -rwxr-xr-x 0 0 0 4133 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/build_tracker.py - - -rwxr-xr-x 0 0 0 1422 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/metadata.py - - -rwxr-xr-x 0 0 0 1474 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/metadata_editable.py - - -rwxr-xr-x 0 0 0 2198 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/metadata_legacy.py - - -rwxr-xr-x 0 0 0 1075 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/wheel.py - - -rwxr-xr-x 0 0 0 1417 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/wheel_editable.py - - -rwxr-xr-x 0 0 0 3064 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/wheel_legacy.py - - -rwxr-xr-x 0 0 0 6806 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/check.py - - -rwxr-xr-x 0 0 0 9816 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/freeze.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/install/ - - -rwxr-xr-x 0 0 0 51 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/install/__init__.py - - -rwxr-xr-x 0 0 0 1282 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/install/editable_legacy.py - - -rwxr-xr-x 0 0 0 27475 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/install/wheel.py - - -rwxr-xr-x 0 0 0 28868 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/prepare.py - - -rwxr-xr-x 0 0 0 7161 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/pyproject.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/ - - -rwxr-xr-x 0 0 0 2738 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/__init__.py - - -rwxr-xr-x 0 0 0 16610 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/constructors.py - - -rwxr-xr-x 0 0 0 17872 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/req_file.py - - -rwxr-xr-x 0 0 0 33084 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/req_install.py - - -rwxr-xr-x 0 0 0 4704 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/req_set.py - - -rwxr-xr-x 0 0 0 24678 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/req_uninstall.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/__init__.py - - -rwxr-xr-x 0 0 0 583 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/base.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/legacy/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/legacy/__init__.py - - -rwxr-xr-x 0 0 0 24128 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__init__.py - - -rwxr-xr-x 0 0 0 5220 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/base.py - - -rwxr-xr-x 0 0 0 18969 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/candidates.py - - -rwxr-xr-x 0 0 0 27845 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/factory.py - - -rwxr-xr-x 0 0 0 5705 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py - - -rwxr-xr-x 0 0 0 9824 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/provider.py - - -rwxr-xr-x 0 0 0 3100 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/reporter.py - - -rwxr-xr-x 0 0 0 5454 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/requirements.py - - -rwxr-xr-x 0 0 0 11642 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/resolver.py - - -rwxr-xr-x 0 0 0 8167 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/self_outdated_check.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/__init__.py - - -rwxr-xr-x 0 0 0 3351 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/_jaraco_text.py - - -rwxr-xr-x 0 0 0 1015 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/_log.py - - -rwxr-xr-x 0 0 0 1665 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/appdirs.py - - -rwxr-xr-x 0 0 0 1884 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/compat.py - - -rwxr-xr-x 0 0 0 5377 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/compatibility_tags.py - - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/datetime.py - - -rwxr-xr-x 0 0 0 3627 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/deprecation.py - - -rwxr-xr-x 0 0 0 3206 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/direct_url_helpers.py - - -rwxr-xr-x 0 0 0 2118 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/egg_link.py - - -rwxr-xr-x 0 0 0 1169 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/encoding.py - - -rwxr-xr-x 0 0 0 3064 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/entrypoints.py - - -rwxr-xr-x 0 0 0 5122 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/filesystem.py - - -rwxr-xr-x 0 0 0 716 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/filetypes.py - - -rwxr-xr-x 0 0 0 3166 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/glibc.py - - -rwxr-xr-x 0 0 0 3113 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/glibc.py.orig - - -rwxr-xr-x 0 0 0 5118 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/hashes.py - - -rwxr-xr-x 0 0 0 795 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/inject_securetransport.py - - -rwxr-xr-x 0 0 0 11632 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/logging.py - - -rwxr-xr-x 0 0 0 22343 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/misc.py - - -rwxr-xr-x 0 0 0 1193 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/models.py - - -rwxr-xr-x 0 0 0 2108 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/packaging.py - - -rwxr-xr-x 0 0 0 4435 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/setuptools_build.py - - -rwxr-xr-x 0 0 0 9200 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/subprocess.py - - -rwxr-xr-x 0 0 0 7702 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/temp_dir.py - - -rwxr-xr-x 0 0 0 8821 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/unpacking.py - - -rwxr-xr-x 0 0 0 1759 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/urls.py - - -rwxr-xr-x 0 0 0 3456 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/virtualenv.py - - -rwxr-xr-x 0 0 0 4549 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/wheel.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/ - - -rwxr-xr-x 0 0 0 596 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/__init__.py - - -rwxr-xr-x 0 0 0 3519 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/bazaar.py - - -rwxr-xr-x 0 0 0 18116 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/git.py - - -rwxr-xr-x 0 0 0 5244 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/mercurial.py - - -rwxr-xr-x 0 0 0 11729 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/subversion.py - - -rwxr-xr-x 0 0 0 22811 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/versioncontrol.py - - -rwxr-xr-x 0 0 0 11842 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/wheel_builder.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/ - - -rwxr-xr-x 0 0 0 4966 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/ - - -rwxr-xr-x 0 0 0 465 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__init__.py - - -rwxr-xr-x 0 0 0 1379 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/_cmd.py - - -rwxr-xr-x 0 0 0 5033 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/adapter.py - - -rwxr-xr-x 0 0 0 1535 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/cache.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/ - - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/__init__.py - - -rwxr-xr-x 0 0 0 5271 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py - - -rwxr-xr-x 0 0 0 1033 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py - - -rwxr-xr-x 0 0 0 778 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/compat.py - - -rwxr-xr-x 0 0 0 16416 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/controller.py - - -rwxr-xr-x 0 0 0 3946 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/filewrapper.py - - -rwxr-xr-x 0 0 0 4154 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/heuristics.py - - -rwxr-xr-x 0 0 0 7105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/serialize.py - - -rwxr-xr-x 0 0 0 774 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/wrapper.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/ - - -rwxr-xr-x 0 0 0 94 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/__init__.py - - -rwxr-xr-x 0 0 0 255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/__main__.py - - -rwxr-xr-x 0 0 0 278952 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/cacert.pem - - -rwxr-xr-x 0 0 0 4279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/core.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/ - - -rwxr-xr-x 0 0 0 4797 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/__init__.py - - -rwxr-xr-x 0 0 0 31274 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/big5freq.py - - -rwxr-xr-x 0 0 0 1763 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/big5prober.py - - -rwxr-xr-x 0 0 0 10032 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/chardistribution.py - - -rwxr-xr-x 0 0 0 3915 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/charsetgroupprober.py - - -rwxr-xr-x 0 0 0 5420 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/charsetprober.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/cli/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/cli/__init__.py - - -rwxr-xr-x 0 0 0 3242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/cli/chardetect.py - - -rwxr-xr-x 0 0 0 3732 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/codingstatemachine.py - - -rwxr-xr-x 0 0 0 542 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/codingstatemachinedict.py - - -rwxr-xr-x 0 0 0 1860 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/cp949prober.py - - -rwxr-xr-x 0 0 0 1683 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/enums.py - - -rwxr-xr-x 0 0 0 4006 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/escprober.py - - -rwxr-xr-x 0 0 0 12176 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/escsm.py - - -rwxr-xr-x 0 0 0 3934 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/eucjpprober.py - - -rwxr-xr-x 0 0 0 13566 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/euckrfreq.py - - -rwxr-xr-x 0 0 0 1753 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/euckrprober.py - - -rwxr-xr-x 0 0 0 36913 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/euctwfreq.py - - -rwxr-xr-x 0 0 0 1753 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/euctwprober.py - - -rwxr-xr-x 0 0 0 20735 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/gb2312freq.py - - -rwxr-xr-x 0 0 0 1759 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/gb2312prober.py - - -rwxr-xr-x 0 0 0 14537 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/hebrewprober.py - - -rwxr-xr-x 0 0 0 25796 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/jisfreq.py - - -rwxr-xr-x 0 0 0 42498 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/johabfreq.py - - -rwxr-xr-x 0 0 0 1752 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/johabprober.py - - -rwxr-xr-x 0 0 0 27055 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/jpcntx.py - - -rwxr-xr-x 0 0 0 104562 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/langbulgarianmodel.py - - -rwxr-xr-x 0 0 0 98484 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/langgreekmodel.py - - -rwxr-xr-x 0 0 0 98196 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/langhebrewmodel.py - - -rwxr-xr-x 0 0 0 101363 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/langhungarianmodel.py - - -rwxr-xr-x 0 0 0 128035 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/langrussianmodel.py - - -rwxr-xr-x 0 0 0 102774 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/langthaimodel.py - - -rwxr-xr-x 0 0 0 95372 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/langturkishmodel.py - - -rwxr-xr-x 0 0 0 5380 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/latin1prober.py - - -rwxr-xr-x 0 0 0 6077 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/macromanprober.py - - -rwxr-xr-x 0 0 0 3715 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/mbcharsetprober.py - - -rwxr-xr-x 0 0 0 2131 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/mbcsgroupprober.py - - -rwxr-xr-x 0 0 0 30391 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/mbcssm.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/metadata/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/metadata/__init__.py - - -rwxr-xr-x 0 0 0 13560 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/metadata/languages.py - - -rwxr-xr-x 0 0 0 402 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/resultdict.py - - -rwxr-xr-x 0 0 0 6400 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/sbcharsetprober.py - - -rwxr-xr-x 0 0 0 4137 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/sbcsgroupprober.py - - -rwxr-xr-x 0 0 0 4007 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/sjisprober.py - - -rwxr-xr-x 0 0 0 14848 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/universaldetector.py - - -rwxr-xr-x 0 0 0 8505 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/utf1632prober.py - - -rwxr-xr-x 0 0 0 2812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/utf8prober.py - - -rwxr-xr-x 0 0 0 244 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/version.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/colorama/ - - -rwxr-xr-x 0 0 0 266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/colorama/__init__.py - - -rwxr-xr-x 0 0 0 2522 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/colorama/ansi.py - - -rwxr-xr-x 0 0 0 11128 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/colorama/ansitowin32.py - - -rwxr-xr-x 0 0 0 3325 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/colorama/initialise.py - - -rwxr-xr-x 0 0 0 6181 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/colorama/win32.py - - -rwxr-xr-x 0 0 0 7134 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/colorama/winterm.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/ - - -rwxr-xr-x 0 0 0 581 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/__init__.py - - -rwxr-xr-x 0 0 0 41259 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/compat.py - - -rwxr-xr-x 0 0 0 51697 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/database.py - - -rwxr-xr-x 0 0 0 20834 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/index.py - - -rwxr-xr-x 0 0 0 51991 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/locators.py - - -rwxr-xr-x 0 0 0 14811 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/manifest.py - - -rwxr-xr-x 0 0 0 5058 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/markers.py - - -rwxr-xr-x 0 0 0 39801 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/metadata.py - - -rwxr-xr-x 0 0 0 10820 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/resources.py - - -rwxr-xr-x 0 0 0 18102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/scripts.py - - -rwxr-xr-x 0 0 0 97792 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/t32.exe - - -rwxr-xr-x 0 0 0 182784 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/t64-arm.exe - - -rwxr-xr-x 0 0 0 108032 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/t64.exe - - -rwxr-xr-x 0 0 0 66262 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/util.py - - -rwxr-xr-x 0 0 0 23513 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/version.py - - -rwxr-xr-x 0 0 0 91648 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/w32.exe - - -rwxr-xr-x 0 0 0 168448 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/w64-arm.exe - - -rwxr-xr-x 0 0 0 101888 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/w64.exe - - -rwxr-xr-x 0 0 0 43898 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/wheel.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/ - - -rwxr-xr-x 0 0 0 981 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/__init__.py - - -rwxr-xr-x 0 0 0 64 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/__main__.py - - -rwxr-xr-x 0 0 0 49330 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/distro.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/ - - -rwxr-xr-x 0 0 0 849 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/__init__.py - - -rwxr-xr-x 0 0 0 3374 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/codec.py - - -rwxr-xr-x 0 0 0 321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/compat.py - - -rwxr-xr-x 0 0 0 12950 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/core.py - - -rwxr-xr-x 0 0 0 44375 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/idnadata.py - - -rwxr-xr-x 0 0 0 1881 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/intranges.py - - -rwxr-xr-x 0 0 0 21 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/package_data.py - - -rwxr-xr-x 0 0 0 206539 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/uts46data.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/ - - -rwxr-xr-x 0 0 0 1132 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/__init__.py - - -rwxr-xr-x 0 0 0 1081 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/exceptions.py - - -rwxr-xr-x 0 0 0 6079 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/ext.py - - -rwxr-xr-x 0 0 0 34544 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/fallback.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/ - - -rwxr-xr-x 0 0 0 661 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/__about__.py - - -rwxr-xr-x 0 0 0 497 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/__init__.py - - -rwxr-xr-x 0 0 0 11488 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_manylinux.py - - -rwxr-xr-x 0 0 0 4378 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_musllinux.py - - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_structures.py - - -rwxr-xr-x 0 0 0 8487 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/markers.py - - -rwxr-xr-x 0 0 0 4676 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/requirements.py - - -rwxr-xr-x 0 0 0 30110 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/specifiers.py - - -rwxr-xr-x 0 0 0 15699 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/tags.py - - -rwxr-xr-x 0 0 0 4200 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/utils.py - - -rwxr-xr-x 0 0 0 14665 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/version.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pkg_resources/ - - -rwxr-xr-x 0 0 0 109364 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pkg_resources/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/ - - -rwxr-xr-x 0 0 0 20155 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/__init__.py - - -rwxr-xr-x 0 0 0 1476 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/__main__.py - - -rwxr-xr-x 0 0 0 7211 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/android.py - - -rwxr-xr-x 0 0 0 7132 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/api.py - - -rwxr-xr-x 0 0 0 3678 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/macos.py - - -rwxr-xr-x 0 0 0 8809 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/unix.py - - -rwxr-xr-x 0 0 0 160 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/version.py - - -rwxr-xr-x 0 0 0 9573 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/windows.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/ - - -rwxr-xr-x 0 0 0 2983 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/__init__.py - - -rwxr-xr-x 0 0 0 353 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/__main__.py - - -rwxr-xr-x 0 0 0 23685 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/cmdline.py - - -rwxr-xr-x 0 0 0 1697 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/console.py - - -rwxr-xr-x 0 0 0 1938 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/filter.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/filters/ - - -rwxr-xr-x 0 0 0 40386 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/filters/__init__.py - - -rwxr-xr-x 0 0 0 4178 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatter.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/ - - -rwxr-xr-x 0 0 0 5424 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/__init__.py - - -rwxr-xr-x 0 0 0 4176 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/_mapping.py - - -rwxr-xr-x 0 0 0 3314 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/bbcode.py - - -rwxr-xr-x 0 0 0 5094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/groff.py - - -rwxr-xr-x 0 0 0 35610 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/html.py - - -rwxr-xr-x 0 0 0 21938 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/img.py - - -rwxr-xr-x 0 0 0 4981 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/irc.py - - -rwxr-xr-x 0 0 0 19351 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/latex.py - - -rwxr-xr-x 0 0 0 5073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/other.py - - -rwxr-xr-x 0 0 0 2212 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py - - -rwxr-xr-x 0 0 0 5014 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/rtf.py - - -rwxr-xr-x 0 0 0 7335 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/svg.py - - -rwxr-xr-x 0 0 0 4674 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/terminal.py - - -rwxr-xr-x 0 0 0 11753 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/terminal256.py - - -rwxr-xr-x 0 0 0 34618 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexer.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexers/ - - -rwxr-xr-x 0 0 0 12130 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexers/__init__.py - - -rwxr-xr-x 0 0 0 72281 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexers/_mapping.py - - -rwxr-xr-x 0 0 0 53424 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexers/python.py - - -rwxr-xr-x 0 0 0 986 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/modeline.py - - -rwxr-xr-x 0 0 0 2591 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/plugin.py - - -rwxr-xr-x 0 0 0 3072 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/regexopt.py - - -rwxr-xr-x 0 0 0 3092 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/scanner.py - - -rwxr-xr-x 0 0 0 6882 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/sphinxext.py - - -rwxr-xr-x 0 0 0 6257 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/style.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/styles/ - - -rwxr-xr-x 0 0 0 3700 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/styles/__init__.py - - -rwxr-xr-x 0 0 0 6184 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/token.py - - -rwxr-xr-x 0 0 0 63223 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/unistring.py - - -rwxr-xr-x 0 0 0 10230 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/util.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/ - - -rwxr-xr-x 0 0 0 9116 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/__init__.py - - -rwxr-xr-x 0 0 0 6567 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/actions.py - - -rwxr-xr-x 0 0 0 13387 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/common.py - - -rwxr-xr-x 0 0 0 224445 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/core.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/diagram/ - - -rwxr-xr-x 0 0 0 24215 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/diagram/__init__.py - - -rwxr-xr-x 0 0 0 9523 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/exceptions.py - - -rwxr-xr-x 0 0 0 38646 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/helpers.py - - -rwxr-xr-x 0 0 0 26692 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/results.py - - -rwxr-xr-x 0 0 0 13488 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/testing.py - - -rwxr-xr-x 0 0 0 10646 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/unicode.py - - -rwxr-xr-x 0 0 0 8670 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/util.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/ - - -rwxr-xr-x 0 0 0 491 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/__init__.py - - -rwxr-xr-x 0 0 0 138 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_compat.py - - -rwxr-xr-x 0 0 0 11920 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_impl.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_in_process/ - - -rwxr-xr-x 0 0 0 546 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py - - -rwxr-xr-x 0 0 0 10927 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/ - - -rwxr-xr-x 0 0 0 5169 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/__init__.py - - -rwxr-xr-x 0 0 0 435 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/__version__.py - - -rwxr-xr-x 0 0 0 1495 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/_internal_utils.py - - -rwxr-xr-x 0 0 0 19697 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py - - -rwxr-xr-x 0 0 0 6449 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/api.py - - -rwxr-xr-x 0 0 0 10187 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/auth.py - - -rwxr-xr-x 0 0 0 575 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/certs.py - - -rwxr-xr-x 0 0 0 1286 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/compat.py - - -rwxr-xr-x 0 0 0 18560 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/cookies.py - - -rwxr-xr-x 0 0 0 3823 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/exceptions.py - - -rwxr-xr-x 0 0 0 3879 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/help.py - - -rwxr-xr-x 0 0 0 733 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/hooks.py - - -rwxr-xr-x 0 0 0 35288 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/models.py - - -rwxr-xr-x 0 0 0 695 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/packages.py - - -rwxr-xr-x 0 0 0 30373 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py - - -rwxr-xr-x 0 0 0 4235 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/status_codes.py - - -rwxr-xr-x 0 0 0 2912 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/structures.py - - -rwxr-xr-x 0 0 0 33460 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/utils.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/ - - -rwxr-xr-x 0 0 0 537 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/__init__.py - - -rwxr-xr-x 0 0 0 156 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py - - -rwxr-xr-x 0 0 0 5871 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/providers.py - - -rwxr-xr-x 0 0 0 1601 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/reporters.py - - -rwxr-xr-x 0 0 0 20511 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/resolvers.py - - -rwxr-xr-x 0 0 0 4963 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/structs.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/ - - -rwxr-xr-x 0 0 0 6090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/__init__.py - - -rwxr-xr-x 0 0 0 8478 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/__main__.py - - -rwxr-xr-x 0 0 0 10096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_cell_widths.py - - -rwxr-xr-x 0 0 0 140235 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_emoji_codes.py - - -rwxr-xr-x 0 0 0 1064 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_emoji_replace.py - - -rwxr-xr-x 0 0 0 2100 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_export_format.py - - -rwxr-xr-x 0 0 0 265 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_extension.py - - -rwxr-xr-x 0 0 0 799 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_fileno.py - - -rwxr-xr-x 0 0 0 9695 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_inspect.py - - -rwxr-xr-x 0 0 0 3225 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_log_render.py - - -rwxr-xr-x 0 0 0 1236 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_loop.py - - -rwxr-xr-x 0 0 0 1387 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_null_file.py - - -rwxr-xr-x 0 0 0 7063 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_palettes.py - - -rwxr-xr-x 0 0 0 423 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_pick.py - - -rwxr-xr-x 0 0 0 5472 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_ratio.py - - -rwxr-xr-x 0 0 0 19919 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_spinners.py - - -rwxr-xr-x 0 0 0 351 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_stack.py - - -rwxr-xr-x 0 0 0 417 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_timer.py - - -rwxr-xr-x 0 0 0 22820 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_win32_console.py - - -rwxr-xr-x 0 0 0 1926 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_windows.py - - -rwxr-xr-x 0 0 0 2783 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_windows_renderer.py - - -rwxr-xr-x 0 0 0 1840 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_wrap.py - - -rwxr-xr-x 0 0 0 890 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/abc.py - - -rwxr-xr-x 0 0 0 10368 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/align.py - - -rwxr-xr-x 0 0 0 6906 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/ansi.py - - -rwxr-xr-x 0 0 0 3264 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/bar.py - - -rwxr-xr-x 0 0 0 9842 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/box.py - - -rwxr-xr-x 0 0 0 4509 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/cells.py - - -rwxr-xr-x 0 0 0 18224 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/color.py - - -rwxr-xr-x 0 0 0 1054 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/color_triplet.py - - -rwxr-xr-x 0 0 0 7131 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/columns.py - - -rwxr-xr-x 0 0 0 99218 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/console.py - - -rwxr-xr-x 0 0 0 1288 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/constrain.py - - -rwxr-xr-x 0 0 0 5497 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/containers.py - - -rwxr-xr-x 0 0 0 6630 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/control.py - - -rwxr-xr-x 0 0 0 8082 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/default_styles.py - - -rwxr-xr-x 0 0 0 972 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/diagnose.py - - -rwxr-xr-x 0 0 0 2501 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/emoji.py - - -rwxr-xr-x 0 0 0 642 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/errors.py - - -rwxr-xr-x 0 0 0 1683 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/file_proxy.py - - -rwxr-xr-x 0 0 0 2508 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/filesize.py - - -rwxr-xr-x 0 0 0 9584 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/highlighter.py - - -rwxr-xr-x 0 0 0 5032 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/json.py - - -rwxr-xr-x 0 0 0 3252 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/jupyter.py - - -rwxr-xr-x 0 0 0 14007 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/layout.py - - -rwxr-xr-x 0 0 0 14273 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/live.py - - -rwxr-xr-x 0 0 0 3667 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/live_render.py - - -rwxr-xr-x 0 0 0 11903 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/logging.py - - -rwxr-xr-x 0 0 0 8198 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/markup.py - - -rwxr-xr-x 0 0 0 5305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/measure.py - - -rwxr-xr-x 0 0 0 4970 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/padding.py - - -rwxr-xr-x 0 0 0 828 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/pager.py - - -rwxr-xr-x 0 0 0 3396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/palette.py - - -rwxr-xr-x 0 0 0 10574 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/panel.py - - -rwxr-xr-x 0 0 0 35852 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/pretty.py - - -rwxr-xr-x 0 0 0 59706 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/progress.py - - -rwxr-xr-x 0 0 0 8165 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/progress_bar.py - - -rwxr-xr-x 0 0 0 11303 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/prompt.py - - -rwxr-xr-x 0 0 0 1391 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/protocol.py - - -rwxr-xr-x 0 0 0 166 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/region.py - - -rwxr-xr-x 0 0 0 4431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/repr.py - - -rwxr-xr-x 0 0 0 4602 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/rule.py - - -rwxr-xr-x 0 0 0 2843 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/scope.py - - -rwxr-xr-x 0 0 0 1591 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/screen.py - - -rwxr-xr-x 0 0 0 24247 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/segment.py - - -rwxr-xr-x 0 0 0 4339 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/spinner.py - - -rwxr-xr-x 0 0 0 4425 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/status.py - - -rwxr-xr-x 0 0 0 27073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/style.py - - -rwxr-xr-x 0 0 0 1258 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/styled.py - - -rwxr-xr-x 0 0 0 35173 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/syntax.py - - -rwxr-xr-x 0 0 0 39684 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/table.py - - -rwxr-xr-x 0 0 0 3370 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/terminal_theme.py - - -rwxr-xr-x 0 0 0 45525 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/text.py - - -rwxr-xr-x 0 0 0 3777 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/theme.py - - -rwxr-xr-x 0 0 0 102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/themes.py - - -rwxr-xr-x 0 0 0 29604 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/traceback.py - - -rwxr-xr-x 0 0 0 9169 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/tree.py - - -rwxr-xr-x 0 0 0 34549 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/six.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/ - - -rwxr-xr-x 0 0 0 20493 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/__init__.py - - -rwxr-xr-x 0 0 0 3551 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/_asyncio.py - - -rwxr-xr-x 0 0 0 2179 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/_utils.py - - -rwxr-xr-x 0 0 0 1682 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/after.py - - -rwxr-xr-x 0 0 0 1562 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/before.py - - -rwxr-xr-x 0 0 0 2372 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/before_sleep.py - - -rwxr-xr-x 0 0 0 1383 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/nap.py - - -rwxr-xr-x 0 0 0 8746 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/retry.py - - -rwxr-xr-x 0 0 0 3086 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/stop.py - - -rwxr-xr-x 0 0 0 2142 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/tornadoweb.py - - -rwxr-xr-x 0 0 0 8024 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/wait.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/ - - -rwxr-xr-x 0 0 0 396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/__init__.py - - -rwxr-xr-x 0 0 0 22633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/_parser.py - - -rwxr-xr-x 0 0 0 2943 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/_re.py - - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/_types.py - - -rwxr-xr-x 0 0 0 111130 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/typing_extensions.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/ - - -rwxr-xr-x 0 0 0 3333 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/__init__.py - - -rwxr-xr-x 0 0 0 10811 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/_collections.py - - -rwxr-xr-x 0 0 0 64 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/_version.py - - -rwxr-xr-x 0 0 0 20300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/connection.py - - -rwxr-xr-x 0 0 0 39990 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/__init__.py - - -rwxr-xr-x 0 0 0 957 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py - - -rwxr-xr-x 0 0 0 17632 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py - - -rwxr-xr-x 0 0 0 13922 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py - - -rwxr-xr-x 0 0 0 11036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/appengine.py - - -rwxr-xr-x 0 0 0 4528 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py - - -rwxr-xr-x 0 0 0 17081 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py - - -rwxr-xr-x 0 0 0 34448 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/securetransport.py - - -rwxr-xr-x 0 0 0 7097 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/socks.py - - -rwxr-xr-x 0 0 0 8217 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/exceptions.py - - -rwxr-xr-x 0 0 0 8579 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/fields.py - - -rwxr-xr-x 0 0 0 2440 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/filepost.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py - - -rwxr-xr-x 0 0 0 1417 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py - - -rwxr-xr-x 0 0 0 5343 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py - - -rwxr-xr-x 0 0 0 34665 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/six.py - - -rwxr-xr-x 0 0 0 19752 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/poolmanager.py - - -rwxr-xr-x 0 0 0 5985 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/request.py - - -rwxr-xr-x 0 0 0 30641 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/response.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ - - -rwxr-xr-x 0 0 0 1155 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/__init__.py - - -rwxr-xr-x 0 0 0 4901 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/connection.py - - -rwxr-xr-x 0 0 0 1605 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/proxy.py - - -rwxr-xr-x 0 0 0 498 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/queue.py - - -rwxr-xr-x 0 0 0 3997 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/request.py - - -rwxr-xr-x 0 0 0 3510 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/response.py - - -rwxr-xr-x 0 0 0 22003 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/retry.py - - -rwxr-xr-x 0 0 0 17177 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_.py - - -rwxr-xr-x 0 0 0 5758 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py - - -rwxr-xr-x 0 0 0 6895 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssltransport.py - - -rwxr-xr-x 0 0 0 10168 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/timeout.py - - -rwxr-xr-x 0 0 0 14296 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/url.py - - -rwxr-xr-x 0 0 0 5403 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/wait.py - - -rwxr-xr-x 0 0 0 475 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/vendor.txt - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/webencodings/ - - -rwxr-xr-x 0 0 0 10579 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/webencodings/__init__.py - - -rwxr-xr-x 0 0 0 8979 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/webencodings/labels.py - - -rwxr-xr-x 0 0 0 1305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/webencodings/mklabels.py - - -rwxr-xr-x 0 0 0 6563 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/webencodings/tests.py - - -rwxr-xr-x 0 0 0 4307 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/webencodings/x_user_defined.py - - -rwxr-xr-x 0 0 0 286 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/py.typed - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/ - - -rwxr-xr-x 0 0 0 109429 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/ - - -rwxr-xr-x 0 0 0 506 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py - - -rwxr-xr-x 0 0 0 4504 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_adapters.py - - -rwxr-xr-x 0 0 0 5457 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_common.py - - -rwxr-xr-x 0 0 0 2925 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_compat.py - - -rwxr-xr-x 0 0 0 884 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py - - -rwxr-xr-x 0 0 0 3481 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_legacy.py - - -rwxr-xr-x 0 0 0 5140 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/abc.py - - -rwxr-xr-x 0 0 0 3581 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/readers.py - - -rwxr-xr-x 0 0 0 2576 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/simple.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/__init__.py - - -rwxr-xr-x 0 0 0 7460 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/context.py - - -rwxr-xr-x 0 0 0 15056 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/functools.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/text/ - - -rwxr-xr-x 0 0 0 15526 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/text/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/ - - -rwxr-xr-x 0 0 0 148 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/__init__.py - - -rwxr-xr-x 0 0 0 134976 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/more.py - - -rwxr-xr-x 0 0 0 25416 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/recipes.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/ - - -rwxr-xr-x 0 0 0 501 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/__init__.py - - -rwxr-xr-x 0 0 0 3266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_elffile.py - - -rwxr-xr-x 0 0 0 8926 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_manylinux.py - - -rwxr-xr-x 0 0 0 2524 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_musllinux.py - - -rwxr-xr-x 0 0 0 10194 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_parser.py - - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_structures.py - - -rwxr-xr-x 0 0 0 5292 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_tokenizer.py - - -rwxr-xr-x 0 0 0 8208 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/markers.py - - -rwxr-xr-x 0 0 0 16397 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/metadata.py - - -rwxr-xr-x 0 0 0 3287 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/requirements.py - - -rwxr-xr-x 0 0 0 39206 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/specifiers.py - - -rwxr-xr-x 0 0 0 18106 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/tags.py - - -rwxr-xr-x 0 0 0 4355 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/utils.py - - -rwxr-xr-x 0 0 0 16326 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/version.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/ - - -rwxr-xr-x 0 0 0 12806 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/__init__.py - - -rwxr-xr-x 0 0 0 1164 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/__main__.py - - -rwxr-xr-x 0 0 0 4068 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/android.py - - -rwxr-xr-x 0 0 0 4910 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/api.py - - -rwxr-xr-x 0 0 0 2655 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/macos.py - - -rwxr-xr-x 0 0 0 6911 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/unix.py - - -rwxr-xr-x 0 0 0 160 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/version.py - - -rwxr-xr-x 0 0 0 6596 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/windows.py - - -rwxr-xr-x 0 0 0 80078 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/typing_extensions.py - - -rwxr-xr-x 0 0 0 8425 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/zipp.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/extern/ - - -rwxr-xr-x 0 0 0 2442 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/extern/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/ - - -rwxr-xr-x 0 0 0 4 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/INSTALLER - - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/LICENSE - - -rwxr-xr-x 0 0 0 6278 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/METADATA - - -rwxr-xr-x 0 0 0 36889 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/RECORD - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/REQUESTED - - -rwxr-xr-x 0 0 0 92 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/WHEEL - - -rwxr-xr-x 0 0 0 250 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/direct_url.json - - -rwxr-xr-x 0 0 0 2676 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/entry_points.txt - - -rwxr-xr-x 0 0 0 41 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/top_level.txt - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/ - - -rwxr-xr-x 0 0 0 9214 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/__init__.py - - -rwxr-xr-x 0 0 0 8921 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_core_metadata.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/ - - -rwxr-xr-x 0 0 0 359 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/__init__.py - - -rwxr-xr-x 0 0 0 5300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_collections.py - - -rwxr-xr-x 0 0 0 411 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_functools.py - - -rwxr-xr-x 0 0 0 43 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_log.py - - -rwxr-xr-x 0 0 0 239 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_macos_compat.py - - -rwxr-xr-x 0 0 0 19616 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_msvccompiler.py - - -rwxr-xr-x 0 0 0 8572 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/archive_util.py - - -rwxr-xr-x 0 0 0 14721 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/bcppcompiler.py - - -rwxr-xr-x 0 0 0 48643 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/ccompiler.py - - -rwxr-xr-x 0 0 0 17861 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/cmd.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/ - - -rwxr-xr-x 0 0 0 430 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/__init__.py - - -rwxr-xr-x 0 0 0 1614 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/_framework_compat.py - - -rwxr-xr-x 0 0 0 5408 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/bdist.py - - -rwxr-xr-x 0 0 0 4665 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/bdist_dumb.py - - -rwxr-xr-x 0 0 0 22013 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/bdist_rpm.py - - -rwxr-xr-x 0 0 0 5584 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build.py - - -rwxr-xr-x 0 0 0 7684 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build_clib.py - - -rwxr-xr-x 0 0 0 31503 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build_ext.py - - -rwxr-xr-x 0 0 0 16537 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build_py.py - - -rwxr-xr-x 0 0 0 5604 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build_scripts.py - - -rwxr-xr-x 0 0 0 4872 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/check.py - - -rwxr-xr-x 0 0 0 2594 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/clean.py - - -rwxr-xr-x 0 0 0 13077 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/config.py - - -rwxr-xr-x 0 0 0 30153 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install.py - - -rwxr-xr-x 0 0 0 2762 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_data.py - - -rwxr-xr-x 0 0 0 2788 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_egg_info.py - - -rwxr-xr-x 0 0 0 1180 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_headers.py - - -rwxr-xr-x 0 0 0 8409 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_lib.py - - -rwxr-xr-x 0 0 0 1932 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_scripts.py - - -rwxr-xr-x 0 0 0 672 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/py37compat.py - - -rwxr-xr-x 0 0 0 11817 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/register.py - - -rwxr-xr-x 0 0 0 19232 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/sdist.py - - -rwxr-xr-x 0 0 0 7491 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/upload.py - - -rwxr-xr-x 0 0 0 4911 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/config.py - - -rwxr-xr-x 0 0 0 9397 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/core.py - - -rwxr-xr-x 0 0 0 11924 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/cygwinccompiler.py - - -rwxr-xr-x 0 0 0 139 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/debug.py - - -rwxr-xr-x 0 0 0 3414 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/dep_util.py - - -rwxr-xr-x 0 0 0 8072 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/dir_util.py - - -rwxr-xr-x 0 0 0 50174 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/dist.py - - -rwxr-xr-x 0 0 0 3589 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/errors.py - - -rwxr-xr-x 0 0 0 10270 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/extension.py - - -rwxr-xr-x 0 0 0 17899 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/fancy_getopt.py - - -rwxr-xr-x 0 0 0 8212 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/file_util.py - - -rwxr-xr-x 0 0 0 13715 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/filelist.py - - -rwxr-xr-x 0 0 0 1201 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/log.py - - -rwxr-xr-x 0 0 0 30188 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/msvc9compiler.py - - -rwxr-xr-x 0 0 0 23577 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/msvccompiler.py - - -rwxr-xr-x 0 0 0 217 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/py38compat.py - - -rwxr-xr-x 0 0 0 639 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/py39compat.py - - -rwxr-xr-x 0 0 0 3495 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/spawn.py - - -rwxr-xr-x 0 0 0 18928 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py - - -rwxr-xr-x 0 0 0 12085 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/text_file.py - - -rwxr-xr-x 0 0 0 15601 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/unixccompiler.py - - -rwxr-xr-x 0 0 0 18099 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/util.py - - -rwxr-xr-x 0 0 0 12951 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/version.py - - -rwxr-xr-x 0 0 0 5205 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/versionpredicate.py - - -rwxr-xr-x 0 0 0 2235 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_entry_points.py - - -rwxr-xr-x 0 0 0 2433 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_imp.py - - -rwxr-xr-x 0 0 0 1468 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_importlib.py - - -rwxr-xr-x 0 0 0 675 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_itertools.py - - -rwxr-xr-x 0 0 0 4042 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_normalization.py - - -rwxr-xr-x 0 0 0 1056 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_path.py - - -rwxr-xr-x 0 0 0 1120 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_reqs.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/ - - -rwxr-xr-x 0 0 0 26498 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/__init__.py - - -rwxr-xr-x 0 0 0 2454 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py - - -rwxr-xr-x 0 0 0 743 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_collections.py - - -rwxr-xr-x 0 0 0 1859 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_compat.py - - -rwxr-xr-x 0 0 0 2895 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_functools.py - - -rwxr-xr-x 0 0 0 2068 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py - - -rwxr-xr-x 0 0 0 1165 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_meta.py - - -rwxr-xr-x 0 0 0 1098 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_py39compat.py - - -rwxr-xr-x 0 0 0 2166 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_text.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/ - - -rwxr-xr-x 0 0 0 506 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/__init__.py - - -rwxr-xr-x 0 0 0 4504 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_adapters.py - - -rwxr-xr-x 0 0 0 5457 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_common.py - - -rwxr-xr-x 0 0 0 2925 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_compat.py - - -rwxr-xr-x 0 0 0 884 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_itertools.py - - -rwxr-xr-x 0 0 0 3481 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_legacy.py - - -rwxr-xr-x 0 0 0 5140 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/abc.py - - -rwxr-xr-x 0 0 0 3581 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/readers.py - - -rwxr-xr-x 0 0 0 2576 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/simple.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/__init__.py - - -rwxr-xr-x 0 0 0 7460 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/context.py - - -rwxr-xr-x 0 0 0 15053 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/functools.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/text/ - - -rwxr-xr-x 0 0 0 15517 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/text/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/ - - -rwxr-xr-x 0 0 0 82 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/__init__.py - - -rwxr-xr-x 0 0 0 117959 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/more.py - - -rwxr-xr-x 0 0 0 16256 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/recipes.py - - -rwxr-xr-x 0 0 0 15130 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/ordered_set.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/ - - -rwxr-xr-x 0 0 0 501 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/__init__.py - - -rwxr-xr-x 0 0 0 3266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_elffile.py - - -rwxr-xr-x 0 0 0 8926 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_manylinux.py - - -rwxr-xr-x 0 0 0 2524 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_musllinux.py - - -rwxr-xr-x 0 0 0 10194 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_parser.py - - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_structures.py - - -rwxr-xr-x 0 0 0 5292 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_tokenizer.py - - -rwxr-xr-x 0 0 0 8208 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/markers.py - - -rwxr-xr-x 0 0 0 16397 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/metadata.py - - -rwxr-xr-x 0 0 0 3287 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/requirements.py - - -rwxr-xr-x 0 0 0 39206 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/specifiers.py - - -rwxr-xr-x 0 0 0 18106 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/tags.py - - -rwxr-xr-x 0 0 0 4355 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/utils.py - - -rwxr-xr-x 0 0 0 16326 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/version.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/ - - -rwxr-xr-x 0 0 0 396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/__init__.py - - -rwxr-xr-x 0 0 0 22633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/_parser.py - - -rwxr-xr-x 0 0 0 2943 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/_re.py - - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/_types.py - - -rwxr-xr-x 0 0 0 87149 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/typing_extensions.py - - -rwxr-xr-x 0 0 0 8425 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/zipp.py - - -rwxr-xr-x 0 0 0 7331 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/archive_util.py - - -rwxr-xr-x 0 0 0 20091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/build_meta.py - - -rwxr-xr-x 0 0 0 11776 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/cli-32.exe - - -rwxr-xr-x 0 0 0 14336 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/cli-64.exe - - -rwxr-xr-x 0 0 0 13824 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/cli-arm64.exe - - -rwxr-xr-x 0 0 0 11776 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/cli.exe - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/ - - -rwxr-xr-x 0 0 0 396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/__init__.py - - -rwxr-xr-x 0 0 0 4207 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/_requirestxt.py - - -rwxr-xr-x 0 0 0 2383 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/alias.py - - -rwxr-xr-x 0 0 0 16559 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/bdist_egg.py - - -rwxr-xr-x 0 0 0 1309 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/bdist_rpm.py - - -rwxr-xr-x 0 0 0 6784 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/build.py - - -rwxr-xr-x 0 0 0 4398 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/build_clib.py - - -rwxr-xr-x 0 0 0 17504 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/build_ext.py - - -rwxr-xr-x 0 0 0 14997 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/build_py.py - - -rwxr-xr-x 0 0 0 6722 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/develop.py - - -rwxr-xr-x 0 0 0 4242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/dist_info.py - - -rwxr-xr-x 0 0 0 86493 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/easy_install.py - - -rwxr-xr-x 0 0 0 33758 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/editable_wheel.py - - -rwxr-xr-x 0 0 0 26399 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/egg_info.py - - -rwxr-xr-x 0 0 0 5627 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/install.py - - -rwxr-xr-x 0 0 0 2066 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/install_egg_info.py - - -rwxr-xr-x 0 0 0 3870 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/install_lib.py - - -rwxr-xr-x 0 0 0 2359 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/install_scripts.py - - -rwxr-xr-x 0 0 0 468 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/register.py - - -rwxr-xr-x 0 0 0 2097 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/rotate.py - - -rwxr-xr-x 0 0 0 657 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/saveopts.py - - -rwxr-xr-x 0 0 0 7098 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/sdist.py - - -rwxr-xr-x 0 0 0 4927 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/setopt.py - - -rwxr-xr-x 0 0 0 8101 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/test.py - - -rwxr-xr-x 0 0 0 462 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/upload.py - - -rwxr-xr-x 0 0 0 7773 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/upload_docs.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/ - - -rwxr-xr-x 0 0 0 1498 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/__init__.py - - -rwxr-xr-x 0 0 0 14113 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_apply_pyprojecttoml.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/ - - -rwxr-xr-x 0 0 0 1038 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/__init__.py - - -rwxr-xr-x 0 0 0 11266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/error_reporting.py - - -rwxr-xr-x 0 0 0 1153 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/extra_validations.py - - -rwxr-xr-x 0 0 0 1612 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py - - -rwxr-xr-x 0 0 0 274908 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py - - -rwxr-xr-x 0 0 0 9160 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/formats.py - - -rwxr-xr-x 0 0 0 16401 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/expand.py - - -rwxr-xr-x 0 0 0 17490 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/pyprojecttoml.py - - -rwxr-xr-x 0 0 0 26184 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/setupcfg.py - - -rwxr-xr-x 0 0 0 936 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/dep_util.py - - -rwxr-xr-x 0 0 0 5518 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/depends.py - - -rwxr-xr-x 0 0 0 21147 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/discovery.py - - -rwxr-xr-x 0 0 0 38173 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/dist.py - - -rwxr-xr-x 0 0 0 2464 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/errors.py - - -rwxr-xr-x 0 0 0 5591 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/extension.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/extern/ - - -rwxr-xr-x 0 0 0 2539 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/extern/__init__.py - - -rwxr-xr-x 0 0 0 4868 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/glob.py - - -rwxr-xr-x 0 0 0 11776 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/gui-32.exe - - -rwxr-xr-x 0 0 0 14336 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/gui-64.exe - - -rwxr-xr-x 0 0 0 13824 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/gui-arm64.exe - - -rwxr-xr-x 0 0 0 11776 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/gui.exe - - -rwxr-xr-x 0 0 0 4989 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/installer.py - - -rwxr-xr-x 0 0 0 812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/launch.py - - -rwxr-xr-x 0 0 0 1239 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/logging.py - - -rwxr-xr-x 0 0 0 4782 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/monkey.py - - -rwxr-xr-x 0 0 0 47495 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/msvc.py - - -rwxr-xr-x 0 0 0 3073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/namespaces.py - - -rwxr-xr-x 0 0 0 38350 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/package_index.py - - -rwxr-xr-x 0 0 0 330 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/py312compat.py - - -rwxr-xr-x 0 0 0 14349 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/sandbox.py - - -rwxr-xr-x 0 0 0 138 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/script.tmpl - - -rwxr-xr-x 0 0 0 941 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/unicode_utils.py - - -rwxr-xr-x 0 0 0 161 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/version.py - - -rwxr-xr-x 0 0 0 3697 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/warnings.py - - -rwxr-xr-x 0 0 0 8628 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/wheel.py - - -rwxr-xr-x 0 0 0 719 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/windows_support.py - - -rwxr-xr-x 0 0 0 21564 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site.py - - -rwxr-xr-x 0 0 0 34823 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/smtpd.py - - -rwxr-xr-x 0 0 0 45407 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/smtplib.py - - -rwxr-xr-x 0 0 0 7099 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/sndhdr.py - - -rwxr-xr-x 0 0 0 36694 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/socket.py - - -rwxr-xr-x 0 0 0 27296 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/socketserver.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/sqlite3/ - - -rwxr-xr-x 0 0 0 2014 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/sqlite3/__init__.py - - -rwxr-xr-x 0 0 0 2687 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/sqlite3/dbapi2.py - - -rwxr-xr-x 0 0 0 2825 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/sqlite3/dump.py - - -rwxr-xr-x 0 0 0 27973 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/sre_compile.py - - -rwxr-xr-x 0 0 0 7177 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/sre_constants.py - - -rwxr-xr-x 0 0 0 40779 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/sre_parse.py - - -rwxr-xr-x 0 0 0 52530 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ssl.py - - -rwxr-xr-x 0 0 0 5485 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/stat.py - - -rwxr-xr-x 0 0 0 38067 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/statistics.py - - -rwxr-xr-x 0 0 0 10566 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/string.py - - -rwxr-xr-x 0 0 0 12917 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/stringprep.py - - -rwxr-xr-x 0 0 0 257 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/struct.py - - -rwxr-xr-x 0 0 0 83564 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/subprocess.py - - -rwxr-xr-x 0 0 0 18158 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/sunau.py - - -rwxr-xr-x 0 0 0 2281 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/symbol.py - - -rwxr-xr-x 0 0 0 7905 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/symtable.py - - -rwxr-xr-x 0 0 0 24914 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/sysconfig.py - - -rwxr-xr-x 0 0 0 11408 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tabnanny.py - - -rwxr-xr-x 0 0 0 105355 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tarfile.py - - -rwxr-xr-x 0 0 0 23254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/telnetlib.py - - -rwxr-xr-x 0 0 0 27678 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tempfile.py - - -rwxr-xr-x 0 0 0 19407 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/textwrap.py - - -rwxr-xr-x 0 0 0 1003 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/this.py - - -rwxr-xr-x 0 0 0 54176 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/threading.py - - -rwxr-xr-x 0 0 0 13482 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/timeit.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/ - - -rwxr-xr-x 0 0 0 169626 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/__init__.py - - -rwxr-xr-x 0 0 0 148 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/__main__.py - - -rwxr-xr-x 0 0 0 2660 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/colorchooser.py - - -rwxr-xr-x 0 0 0 1245 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/commondialog.py - - -rwxr-xr-x 0 0 0 1493 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/constants.py - - -rwxr-xr-x 0 0 0 1543 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/dialog.py - - -rwxr-xr-x 0 0 0 11528 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/dnd.py - - -rwxr-xr-x 0 0 0 14947 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/filedialog.py - - -rwxr-xr-x 0 0 0 6821 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/font.py - - -rwxr-xr-x 0 0 0 3861 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/messagebox.py - - -rwxr-xr-x 0 0 0 1816 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/scrolledtext.py - - -rwxr-xr-x 0 0 0 11757 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/simpledialog.py - - -rwxr-xr-x 0 0 0 76845 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/tix.py - - -rwxr-xr-x 0 0 0 57139 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/ttk.py - - -rwxr-xr-x 0 0 0 2368 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/token.py - - -rwxr-xr-x 0 0 0 25883 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tokenize.py - - -rwxr-xr-x 0 0 0 29208 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/trace.py - - -rwxr-xr-x 0 0 0 24660 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/traceback.py - - -rwxr-xr-x 0 0 0 18047 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tracemalloc.py - - -rwxr-xr-x 0 0 0 879 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tty.py - - -rwxr-xr-x 0 0 0 143796 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtle.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/ - - -rwxr-xr-x 0 0 0 314 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/__init__.py - - -rwxr-xr-x 0 0 0 15050 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/__main__.py - - -rwxr-xr-x 0 0 0 4248 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/bytedesign.py - - -rwxr-xr-x 0 0 0 951 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/chaos.py - - -rwxr-xr-x 0 0 0 3201 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/clock.py - - -rwxr-xr-x 0 0 0 1339 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/colormixer.py - - -rwxr-xr-x 0 0 0 2966 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/forest.py - - -rwxr-xr-x 0 0 0 3473 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/fractalcurves.py - - -rwxr-xr-x 0 0 0 2434 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/lindenmayer.py - - -rwxr-xr-x 0 0 0 2051 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/minimal_hanoi.py - - -rwxr-xr-x 0 0 0 6513 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/nim.py - - -rwxr-xr-x 0 0 0 1291 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/paint.py - - -rwxr-xr-x 0 0 0 1066 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/peace.py - - -rwxr-xr-x 0 0 0 3380 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/penrose.py - - -rwxr-xr-x 0 0 0 2825 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/planet_and_moon.py - - -rwxr-xr-x 0 0 0 1361 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/rosette.py - - -rwxr-xr-x 0 0 0 1804 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/round_dance.py - - -rwxr-xr-x 0 0 0 5052 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/sorting_animate.py - - -rwxr-xr-x 0 0 0 1401 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/tree.py - - -rwxr-xr-x 0 0 0 160 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/turtle.cfg - - -rwxr-xr-x 0 0 0 1119 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/two_canvases.py - - -rwxr-xr-x 0 0 0 821 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/yinyang.py - - -rwxr-xr-x 0 0 0 9785 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/types.py - - -rwxr-xr-x 0 0 0 77044 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/typing.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/ - - -rwxr-xr-x 0 0 0 3761 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/__init__.py - - -rwxr-xr-x 0 0 0 472 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/__main__.py - - -rwxr-xr-x 0 0 0 2295 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/_log.py - - -rwxr-xr-x 0 0 0 6368 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/async_case.py - - -rwxr-xr-x 0 0 0 57155 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/case.py - - -rwxr-xr-x 0 0 0 22702 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/loader.py - - -rwxr-xr-x 0 0 0 11256 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/main.py - - -rwxr-xr-x 0 0 0 99217 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/mock.py - - -rwxr-xr-x 0 0 0 8364 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/result.py - - -rwxr-xr-x 0 0 0 8051 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/runner.py - - -rwxr-xr-x 0 0 0 2403 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/signals.py - - -rwxr-xr-x 0 0 0 13512 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/suite.py - - -rwxr-xr-x 0 0 0 5215 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/util.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/urllib/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/urllib/__init__.py - - -rwxr-xr-x 0 0 0 2632 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/urllib/error.py - - -rwxr-xr-x 0 0 0 43065 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/urllib/parse.py - - -rwxr-xr-x 0 0 0 101659 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/urllib/request.py - - -rwxr-xr-x 0 0 0 2361 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/urllib/response.py - - -rwxr-xr-x 0 0 0 9424 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/urllib/robotparser.py - - -rwxr-xr-x 0 0 0 7301 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/uu.py - - -rwxr-xr-x 0 0 0 27324 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/uuid.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/venv/ - - -rwxr-xr-x 0 0 0 23213 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/venv/__init__.py - - -rwxr-xr-x 0 0 0 145 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/venv/__main__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/common/ - - -rwxr-xr-x 0 0 0 8834 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/common/Activate.ps1 - - -rwxr-xr-x 0 0 0 1909 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/common/activate - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/posix/ - - -rwxr-xr-x 0 0 0 858 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/posix/activate.csh - - -rwxr-xr-x 0 0 0 1998 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/posix/activate.fish - - -rwxr-xr-x 0 0 0 19688 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/warnings.py - - -rwxr-xr-x 0 0 0 18004 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/wave.py - - -rwxr-xr-x 0 0 0 21560 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/weakref.py - - -rwxr-xr-x 0 0 0 24085 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/webbrowser.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/ - - -rwxr-xr-x 0 0 0 587 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/__init__.py - - -rwxr-xr-x 0 0 0 21669 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/handlers.py - - -rwxr-xr-x 0 0 0 6766 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/headers.py - - -rwxr-xr-x 0 0 0 5171 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/simple_server.py - - -rwxr-xr-x 0 0 0 5851 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/util.py - - -rwxr-xr-x 0 0 0 15099 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/validate.py - - -rwxr-xr-x 0 0 0 5913 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xdrlib.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/ - - -rwxr-xr-x 0 0 0 557 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/ - - -rwxr-xr-x 0 0 0 936 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/NodeFilter.py - - -rwxr-xr-x 0 0 0 4019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/__init__.py - - -rwxr-xr-x 0 0 0 3451 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/domreg.py - - -rwxr-xr-x 0 0 0 35767 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/expatbuilder.py - - -rwxr-xr-x 0 0 0 3367 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/minicompat.py - - -rwxr-xr-x 0 0 0 68066 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/minidom.py - - -rwxr-xr-x 0 0 0 11997 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/pulldom.py - - -rwxr-xr-x 0 0 0 12387 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/xmlbuilder.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/etree/ - - -rwxr-xr-x 0 0 0 6882 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/etree/ElementInclude.py - - -rwxr-xr-x 0 0 0 13063 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/etree/ElementPath.py - - -rwxr-xr-x 0 0 0 73913 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/etree/ElementTree.py - - -rwxr-xr-x 0 0 0 1605 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/etree/__init__.py - - -rwxr-xr-x 0 0 0 82 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/etree/cElementTree.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/parsers/ - - -rwxr-xr-x 0 0 0 167 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/parsers/__init__.py - - -rwxr-xr-x 0 0 0 248 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/parsers/expat.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/ - - -rwxr-xr-x 0 0 0 3642 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/__init__.py - - -rwxr-xr-x 0 0 0 4785 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/_exceptions.py - - -rwxr-xr-x 0 0 0 15727 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/expatreader.py - - -rwxr-xr-x 0 0 0 13922 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/handler.py - - -rwxr-xr-x 0 0 0 12255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/saxutils.py - - -rwxr-xr-x 0 0 0 12684 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/xmlreader.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xmlrpc/ - - -rwxr-xr-x 0 0 0 38 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xmlrpc/__init__.py - - -rwxr-xr-x 0 0 0 49391 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xmlrpc/client.py - - -rwxr-xr-x 0 0 0 36672 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xmlrpc/server.py - - -rwxr-xr-x 0 0 0 7535 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/zipapp.py - - -rwxr-xr-x 0 0 0 87492 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/zipfile.py - - -rwxr-xr-x 0 0 0 30765 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/zipimport.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/zoneinfo/ - - -rwxr-xr-x 0 0 0 703 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/zoneinfo/__init__.py - - -rwxr-xr-x 0 0 0 5320 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/zoneinfo/_common.py - - -rwxr-xr-x 0 0 0 5081 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/zoneinfo/_tzpath.py - - -rwxr-xr-x 0 0 0 24318 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/zoneinfo/_zoneinfo.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/ - - -rwxr-xr-x 0 0 0 20875 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/auto.tcl - - -rwxr-xr-x 0 0 0 128893 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/clock.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/ - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/ascii.enc - - -rwxr-xr-x 0 0 0 92873 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/big5.enc - - -rwxr-xr-x 0 0 0 97050 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cns11643.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1250.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1251.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1252.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1253.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1254.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1255.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1256.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1257.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1258.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp437.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp737.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp775.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp850.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp852.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp855.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp857.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp860.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp861.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp862.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp863.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp864.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp865.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp866.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp869.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp874.enc - - -rwxr-xr-x 0 0 0 48207 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp932.enc - - -rwxr-xr-x 0 0 0 132509 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp936.enc - - -rwxr-xr-x 0 0 0 130423 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp949.enc - - -rwxr-xr-x 0 0 0 91831 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp950.enc - - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/dingbats.enc - - -rwxr-xr-x 0 0 0 1054 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/ebcdic.enc - - -rwxr-xr-x 0 0 0 85574 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/euc-cn.enc - - -rwxr-xr-x 0 0 0 82537 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/euc-jp.enc - - -rwxr-xr-x 0 0 0 93918 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/euc-kr.enc - - -rwxr-xr-x 0 0 0 86619 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/gb12345.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/gb1988.enc - - -rwxr-xr-x 0 0 0 84532 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/gb2312-raw.enc - - -rwxr-xr-x 0 0 0 85574 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/gb2312.enc - - -rwxr-xr-x 0 0 0 192 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso2022-jp.enc - - -rwxr-xr-x 0 0 0 115 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso2022-kr.enc - - -rwxr-xr-x 0 0 0 226 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso2022.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-1.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-10.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-11.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-13.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-14.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-15.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-16.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-2.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-3.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-4.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-5.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-6.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-7.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-8.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-9.enc - - -rwxr-xr-x 0 0 0 1092 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/jis0201.enc - - -rwxr-xr-x 0 0 0 80453 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/jis0208.enc - - -rwxr-xr-x 0 0 0 70974 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/jis0212.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/koi8-r.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/koi8-u.enc - - -rwxr-xr-x 0 0 0 92877 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/ksc5601.enc - - -rwxr-xr-x 0 0 0 1096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macCentEuro.enc - - -rwxr-xr-x 0 0 0 1096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macCroatian.enc - - -rwxr-xr-x 0 0 0 1096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macCyrillic.enc - - -rwxr-xr-x 0 0 0 1096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macDingbats.enc - - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macGreek.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macIceland.enc - - -rwxr-xr-x 0 0 0 48028 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macJapan.enc - - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macRoman.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macRomania.enc - - -rwxr-xr-x 0 0 0 1092 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macThai.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macTurkish.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macUkraine.enc - - -rwxr-xr-x 0 0 0 41862 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/shiftjis.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/symbol.enc - - -rwxr-xr-x 0 0 0 1092 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/tis-620.enc - - -rwxr-xr-x 0 0 0 7900 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/history.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/http1.0/ - - -rwxr-xr-x 0 0 0 9689 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/http1.0/http.tcl - - -rwxr-xr-x 0 0 0 735 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/http1.0/pkgIndex.tcl - - -rwxr-xr-x 0 0 0 24806 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/init.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ - - -rwxr-xr-x 0 0 0 989 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/af.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/af_za.msg - - -rwxr-xr-x 0 0 0 1964 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ar.msg - - -rwxr-xr-x 0 0 0 259 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ar_in.msg - - -rwxr-xr-x 0 0 0 1812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ar_jo.msg - - -rwxr-xr-x 0 0 0 1812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ar_lb.msg - - -rwxr-xr-x 0 0 0 1812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ar_sy.msg - - -rwxr-xr-x 0 0 0 2105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/be.msg - - -rwxr-xr-x 0 0 0 1819 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/bg.msg - - -rwxr-xr-x 0 0 0 2286 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/bn.msg - - -rwxr-xr-x 0 0 0 259 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/bn_in.msg - - -rwxr-xr-x 0 0 0 1102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ca.msg - - -rwxr-xr-x 0 0 0 1300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/cs.msg - - -rwxr-xr-x 0 0 0 1156 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/da.msg - - -rwxr-xr-x 0 0 0 1222 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/de.msg - - -rwxr-xr-x 0 0 0 812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/de_at.msg - - -rwxr-xr-x 0 0 0 1223 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/de_be.msg - - -rwxr-xr-x 0 0 0 2252 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/el.msg - - -rwxr-xr-x 0 0 0 300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_au.msg - - -rwxr-xr-x 0 0 0 305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_be.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_bw.msg - - -rwxr-xr-x 0 0 0 288 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_ca.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_gb.msg - - -rwxr-xr-x 0 0 0 321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_hk.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_ie.msg - - -rwxr-xr-x 0 0 0 310 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_in.msg - - -rwxr-xr-x 0 0 0 300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_nz.msg - - -rwxr-xr-x 0 0 0 321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_ph.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_sg.msg - - -rwxr-xr-x 0 0 0 245 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_za.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_zw.msg - - -rwxr-xr-x 0 0 0 1231 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/eo.msg - - -rwxr-xr-x 0 0 0 1180 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es.msg - - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_ar.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_bo.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_cl.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_co.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_cr.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_do.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_ec.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_gt.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_hn.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_mx.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_ni.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_pa.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_pe.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_pr.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_py.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_sv.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_uy.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_ve.msg - - -rwxr-xr-x 0 0 0 1206 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/et.msg - - -rwxr-xr-x 0 0 0 985 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/eu.msg - - -rwxr-xr-x 0 0 0 287 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/eu_es.msg - - -rwxr-xr-x 0 0 0 1664 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fa.msg - - -rwxr-xr-x 0 0 0 1957 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fa_in.msg - - -rwxr-xr-x 0 0 0 417 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fa_ir.msg - - -rwxr-xr-x 0 0 0 1145 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fi.msg - - -rwxr-xr-x 0 0 0 986 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fo.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fo_fo.msg - - -rwxr-xr-x 0 0 0 1205 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fr.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fr_be.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fr_ca.msg - - -rwxr-xr-x 0 0 0 281 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fr_ch.msg - - -rwxr-xr-x 0 0 0 1141 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ga.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ga_ie.msg - - -rwxr-xr-x 0 0 0 950 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/gl.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/gl_es.msg - - -rwxr-xr-x 0 0 0 1037 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/gv.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/gv_gb.msg - - -rwxr-xr-x 0 0 0 1938 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/he.msg - - -rwxr-xr-x 0 0 0 1738 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/hi.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/hi_in.msg - - -rwxr-xr-x 0 0 0 1121 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/hr.msg - - -rwxr-xr-x 0 0 0 1327 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/hu.msg - - -rwxr-xr-x 0 0 0 914 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/id.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/id_id.msg - - -rwxr-xr-x 0 0 0 1255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/is.msg - - -rwxr-xr-x 0 0 0 1240 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/it.msg - - -rwxr-xr-x 0 0 0 244 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/it_ch.msg - - -rwxr-xr-x 0 0 0 1645 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ja.msg - - -rwxr-xr-x 0 0 0 978 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/kl.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/kl_gl.msg - - -rwxr-xr-x 0 0 0 1566 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ko.msg - - -rwxr-xr-x 0 0 0 346 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ko_kr.msg - - -rwxr-xr-x 0 0 0 1958 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/kok.msg - - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/kok_in.msg - - -rwxr-xr-x 0 0 0 966 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/kw.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/kw_gb.msg - - -rwxr-xr-x 0 0 0 1255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/lt.msg - - -rwxr-xr-x 0 0 0 1219 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/lv.msg - - -rwxr-xr-x 0 0 0 2105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/mk.msg - - -rwxr-xr-x 0 0 0 1807 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/mr.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/mr_in.msg - - -rwxr-xr-x 0 0 0 910 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ms.msg - - -rwxr-xr-x 0 0 0 259 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ms_my.msg - - -rwxr-xr-x 0 0 0 690 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/mt.msg - - -rwxr-xr-x 0 0 0 1157 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/nb.msg - - -rwxr-xr-x 0 0 0 1079 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/nl.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/nl_be.msg - - -rwxr-xr-x 0 0 0 1148 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/nn.msg - - -rwxr-xr-x 0 0 0 1211 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/pl.msg - - -rwxr-xr-x 0 0 0 1127 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/pt.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/pt_br.msg - - -rwxr-xr-x 0 0 0 1172 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ro.msg - - -rwxr-xr-x 0 0 0 2039 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ru.msg - - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ru_ua.msg - - -rwxr-xr-x 0 0 0 1160 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sh.msg - - -rwxr-xr-x 0 0 0 1203 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sk.msg - - -rwxr-xr-x 0 0 0 1164 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sl.msg - - -rwxr-xr-x 0 0 0 1267 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sq.msg - - -rwxr-xr-x 0 0 0 2035 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sr.msg - - -rwxr-xr-x 0 0 0 1167 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sv.msg - - -rwxr-xr-x 0 0 0 991 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sw.msg - - -rwxr-xr-x 0 0 0 1835 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ta.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ta_in.msg - - -rwxr-xr-x 0 0 0 2102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/te.msg - - -rwxr-xr-x 0 0 0 411 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/te_in.msg - - -rwxr-xr-x 0 0 0 2305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/th.msg - - -rwxr-xr-x 0 0 0 1133 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/tr.msg - - -rwxr-xr-x 0 0 0 2113 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/uk.msg - - -rwxr-xr-x 0 0 0 1421 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/vi.msg - - -rwxr-xr-x 0 0 0 3330 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/zh.msg - - -rwxr-xr-x 0 0 0 312 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/zh_cn.msg - - -rwxr-xr-x 0 0 0 752 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/zh_hk.msg - - -rwxr-xr-x 0 0 0 339 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/zh_sg.msg - - -rwxr-xr-x 0 0 0 346 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/zh_tw.msg - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/opt0.4/ - - -rwxr-xr-x 0 0 0 32705 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/opt0.4/optparse.tcl - - -rwxr-xr-x 0 0 0 608 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/opt0.4/pkgIndex.tcl - - -rwxr-xr-x 0 0 0 23244 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/package.tcl - - -rwxr-xr-x 0 0 0 816 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/parray.tcl - - -rwxr-xr-x 0 0 0 40934 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/safe.tcl - - -rwxr-xr-x 0 0 0 4511 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/tclAppInit.c - - -rwxr-xr-x 0 0 0 5539 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/tclIndex - - -rwxr-xr-x 0 0 0 11824 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/tm.tcl - - -rwxr-xr-x 0 0 0 4876 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/word.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8/8.4/ - - -rwxr-xr-x 0 0 0 10984 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8/8.4/platform-1.0.18.tm - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8/8.4/platform/ - - -rwxr-xr-x 0 0 0 5977 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8/8.4/platform/shell-1.1.4.tm - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8/8.5/ - - -rwxr-xr-x 0 0 0 33926 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8/8.5/msgcat-1.6.1.tm - - -rwxr-xr-x 0 0 0 103526 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8/8.5/tcltest-2.5.3.tm - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8/8.6/ - - -rwxr-xr-x 0 0 0 111709 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8/8.6/http-2.9.5.tm - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/thread2.8.7/ - - -rwxr-xr-x 0 0 0 29530 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/thread2.8.7/ttrace.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ - - -rwxr-xr-x 0 0 0 8534 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/bgerror.tcl - - -rwxr-xr-x 0 0 0 20830 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/button.tcl - - -rwxr-xr-x 0 0 0 9652 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/choosedir.tcl - - -rwxr-xr-x 0 0 0 21417 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/clrpick.tcl - - -rwxr-xr-x 0 0 0 8368 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/comdlg.tcl - - -rwxr-xr-x 0 0 0 32792 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/console.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ - - -rwxr-xr-x 0 0 0 2082 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/README - - -rwxr-xr-x 0 0 0 6670 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/anilabel.tcl - - -rwxr-xr-x 0 0 0 3494 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/aniwave.tcl - - -rwxr-xr-x 0 0 0 8110 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/arrow.tcl - - -rwxr-xr-x 0 0 0 3078 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/bind.tcl - - -rwxr-xr-x 0 0 0 1411 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/bitmap.tcl - - -rwxr-xr-x 0 0 0 1758 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/browse - - -rwxr-xr-x 0 0 0 1504 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/button.tcl - - -rwxr-xr-x 0 0 0 2278 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/check.tcl - - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/clrpick.tcl - - -rwxr-xr-x 0 0 0 5002 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/colors.tcl - - -rwxr-xr-x 0 0 0 1963 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/combo.tcl - - -rwxr-xr-x 0 0 0 5036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/cscroll.tcl - - -rwxr-xr-x 0 0 0 6205 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ctext.tcl - - -rwxr-xr-x 0 0 0 974 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/dialog1.tcl - - -rwxr-xr-x 0 0 0 828 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/dialog2.tcl - - -rwxr-xr-x 0 0 0 3867 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/en.msg - - -rwxr-xr-x 0 0 0 1401 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/entry1.tcl - - -rwxr-xr-x 0 0 0 2091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/entry2.tcl - - -rwxr-xr-x 0 0 0 6102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/entry3.tcl - - -rwxr-xr-x 0 0 0 2351 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/filebox.tcl - - -rwxr-xr-x 0 0 0 79803 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/floor.tcl - - -rwxr-xr-x 0 0 0 1710 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/fontchoose.tcl - - -rwxr-xr-x 0 0 0 1046 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/form.tcl - - -rwxr-xr-x 0 0 0 56598 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/goldberg.tcl - - -rwxr-xr-x 0 0 0 512 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/hello - - -rwxr-xr-x 0 0 0 1497 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/hscale.tcl - - -rwxr-xr-x 0 0 0 2063 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/icon.tcl - - -rwxr-xr-x 0 0 0 1002 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/image1.tcl - - -rwxr-xr-x 0 0 0 3359 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/image2.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/ - - -rwxr-xr-x 0 0 0 51712 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/earth.gif - - -rwxr-xr-x 0 0 0 8157 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/earthmenu.png - - -rwxr-xr-x 0 0 0 6343 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/earthris.gif - - -rwxr-xr-x 0 0 0 1886 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/flagdown.xbm - - -rwxr-xr-x 0 0 0 1880 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/flagup.xbm - - -rwxr-xr-x 0 0 0 275 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/gray25.xbm - - -rwxr-xr-x 0 0 0 1883 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/letters.xbm - - -rwxr-xr-x 0 0 0 1889 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/noletter.xbm - - -rwxr-xr-x 0 0 0 54257 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/ouster.png - - -rwxr-xr-x 0 0 0 272 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/pattern.xbm - - -rwxr-xr-x 0 0 0 2341 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/tcllogo.gif - - -rwxr-xr-x 0 0 0 196623 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/teapot.ppm - - -rwxr-xr-x 0 0 0 10490 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/items.tcl - - -rwxr-xr-x 0 0 0 8075 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ixset - - -rwxr-xr-x 0 0 0 9123 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/knightstour.tcl - - -rwxr-xr-x 0 0 0 1379 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/label.tcl - - -rwxr-xr-x 0 0 0 1847 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/labelframe.tcl - - -rwxr-xr-x 0 0 0 2267 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/license.terms - - -rwxr-xr-x 0 0 0 4357 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/mclist.tcl - - -rwxr-xr-x 0 0 0 7479 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/menu.tcl - - -rwxr-xr-x 0 0 0 4476 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/menubu.tcl - - -rwxr-xr-x 0 0 0 1998 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/msgbox.tcl - - -rwxr-xr-x 0 0 0 6750 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/nl.msg - - -rwxr-xr-x 0 0 0 1130 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/paned1.tcl - - -rwxr-xr-x 0 0 0 2244 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/paned2.tcl - - -rwxr-xr-x 0 0 0 7623 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/pendulum.tcl - - -rwxr-xr-x 0 0 0 2757 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/plot.tcl - - -rwxr-xr-x 0 0 0 2602 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/puzzle.tcl - - -rwxr-xr-x 0 0 0 2752 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/radio.tcl - - -rwxr-xr-x 0 0 0 5319 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/rmt - - -rwxr-xr-x 0 0 0 8300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/rolodex - - -rwxr-xr-x 0 0 0 5333 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ruler.tcl - - -rwxr-xr-x 0 0 0 2273 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/sayings.tcl - - -rwxr-xr-x 0 0 0 4403 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/search.tcl - - -rwxr-xr-x 0 0 0 1820 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/spin.tcl - - -rwxr-xr-x 0 0 0 2048 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/states.tcl - - -rwxr-xr-x 0 0 0 6943 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/style.tcl - - -rwxr-xr-x 0 0 0 5298 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/tclIndex - - -rwxr-xr-x 0 0 0 11253 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/tcolor - - -rwxr-xr-x 0 0 0 4291 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/text.tcl - - -rwxr-xr-x 0 0 0 2188 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/textpeer.tcl - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/timer - - -rwxr-xr-x 0 0 0 3272 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/toolbar.tcl - - -rwxr-xr-x 0 0 0 3178 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/tree.tcl - - -rwxr-xr-x 0 0 0 3405 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ttkbut.tcl - - -rwxr-xr-x 0 0 0 2391 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ttkmenu.tcl - - -rwxr-xr-x 0 0 0 2317 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ttknote.tcl - - -rwxr-xr-x 0 0 0 4177 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ttkpane.tcl - - -rwxr-xr-x 0 0 0 1536 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ttkprogress.tcl - - -rwxr-xr-x 0 0 0 1420 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ttkscale.tcl - - -rwxr-xr-x 0 0 0 11654 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/twind.tcl - - -rwxr-xr-x 0 0 0 4706 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/unicodeout.tcl - - -rwxr-xr-x 0 0 0 1477 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/vscale.tcl - - -rwxr-xr-x 0 0 0 24063 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/widget - - -rwxr-xr-x 0 0 0 5813 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/dialog.tcl - - -rwxr-xr-x 0 0 0 17715 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/entry.tcl - - -rwxr-xr-x 0 0 0 4857 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/focus.tcl - - -rwxr-xr-x 0 0 0 16011 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/fontchooser.tcl - - -rwxr-xr-x 0 0 0 16704 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/iconlist.tcl - - -rwxr-xr-x 0 0 0 10884 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/icons.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/ - - -rwxr-xr-x 0 0 0 322 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/README - - -rwxr-xr-x 0 0 0 32900 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/logo.eps - - -rwxr-xr-x 0 0 0 2341 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/logo100.gif - - -rwxr-xr-x 0 0 0 1670 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/logo64.gif - - -rwxr-xr-x 0 0 0 11000 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/logoLarge.gif - - -rwxr-xr-x 0 0 0 3889 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/logoMed.gif - - -rwxr-xr-x 0 0 0 27809 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo.eps - - -rwxr-xr-x 0 0 0 1615 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo100.gif - - -rwxr-xr-x 0 0 0 2489 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo150.gif - - -rwxr-xr-x 0 0 0 2981 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo175.gif - - -rwxr-xr-x 0 0 0 3491 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo200.gif - - -rwxr-xr-x 0 0 0 1171 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo75.gif - - -rwxr-xr-x 0 0 0 5473 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/tai-ku.gif - - -rwxr-xr-x 0 0 0 14695 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/listbox.tcl - - -rwxr-xr-x 0 0 0 9565 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/megawidget.tcl - - -rwxr-xr-x 0 0 0 38122 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/menu.tcl - - -rwxr-xr-x 0 0 0 29352 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/mkpsenc.tcl - - -rwxr-xr-x 0 0 0 16359 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgbox.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/ - - -rwxr-xr-x 0 0 0 4158 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/cs.msg - - -rwxr-xr-x 0 0 0 3909 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/da.msg - - -rwxr-xr-x 0 0 0 4823 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/de.msg - - -rwxr-xr-x 0 0 0 8698 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/el.msg - - -rwxr-xr-x 0 0 0 3286 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/en.msg - - -rwxr-xr-x 0 0 0 63 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/en_gb.msg - - -rwxr-xr-x 0 0 0 3916 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/eo.msg - - -rwxr-xr-x 0 0 0 3948 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/es.msg - - -rwxr-xr-x 0 0 0 3805 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/fr.msg - - -rwxr-xr-x 0 0 0 4600 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/hu.msg - - -rwxr-xr-x 0 0 0 3692 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/it.msg - - -rwxr-xr-x 0 0 0 4466 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/nl.msg - - -rwxr-xr-x 0 0 0 4841 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/pl.msg - - -rwxr-xr-x 0 0 0 3913 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/pt.msg - - -rwxr-xr-x 0 0 0 7214 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/ru.msg - - -rwxr-xr-x 0 0 0 3832 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/sv.msg - - -rwxr-xr-x 0 0 0 5594 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/obsolete.tcl - - -rwxr-xr-x 0 0 0 1586 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/optMenu.tcl - - -rwxr-xr-x 0 0 0 8174 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/palette.tcl - - -rwxr-xr-x 0 0 0 5176 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/panedwindow.tcl - - -rwxr-xr-x 0 0 0 7370 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/safetk.tcl - - -rwxr-xr-x 0 0 0 7766 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/scale.tcl - - -rwxr-xr-x 0 0 0 12732 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/scrlbar.tcl - - -rwxr-xr-x 0 0 0 15933 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/spinbox.tcl - - -rwxr-xr-x 0 0 0 20270 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/tclIndex - - -rwxr-xr-x 0 0 0 5125 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/tearoff.tcl - - -rwxr-xr-x 0 0 0 33724 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/text.tcl - - -rwxr-xr-x 0 0 0 23554 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/tk.tcl - - -rwxr-xr-x 0 0 0 4615 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/tkAppInit.c - - -rwxr-xr-x 0 0 0 38373 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/tkfbox.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/ - - -rwxr-xr-x 0 0 0 3604 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/altTheme.tcl - - -rwxr-xr-x 0 0 0 3719 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/aquaTheme.tcl - - -rwxr-xr-x 0 0 0 2931 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/button.tcl - - -rwxr-xr-x 0 0 0 4662 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/clamTheme.tcl - - -rwxr-xr-x 0 0 0 3749 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/classicTheme.tcl - - -rwxr-xr-x 0 0 0 12270 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/combobox.tcl - - -rwxr-xr-x 0 0 0 4619 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/cursors.tcl - - -rwxr-xr-x 0 0 0 4410 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/defaults.tcl - - -rwxr-xr-x 0 0 0 16985 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/entry.tcl - - -rwxr-xr-x 0 0 0 5575 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/fonts.tcl - - -rwxr-xr-x 0 0 0 6400 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/menubutton.tcl - - -rwxr-xr-x 0 0 0 5626 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/notebook.tcl - - -rwxr-xr-x 0 0 0 2199 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/panedwindow.tcl - - -rwxr-xr-x 0 0 0 1089 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/progress.tcl - - -rwxr-xr-x 0 0 0 2693 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/scale.tcl - - -rwxr-xr-x 0 0 0 3159 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/scrollbar.tcl - - -rwxr-xr-x 0 0 0 2401 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/sizegrip.tcl - - -rwxr-xr-x 0 0 0 4811 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/spinbox.tcl - - -rwxr-xr-x 0 0 0 9797 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/treeview.tcl - - -rwxr-xr-x 0 0 0 4817 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/ttk.tcl - - -rwxr-xr-x 0 0 0 8287 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/utils.tcl - - -rwxr-xr-x 0 0 0 9481 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/vistaTheme.tcl - - -rwxr-xr-x 0 0 0 2781 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/winTheme.tcl - - -rwxr-xr-x 0 0 0 2036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/xpTheme.tcl - - -rwxr-xr-x 0 0 0 10252 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/unsupported.tcl - - -rwxr-xr-x 0 0 0 26075 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/xmfbox.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/share/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/share/man/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/share/man/man1/ - - -rwxr-xr-x 0 0 0 18711 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/share/man/man1/python3.1 - - -rwxr-xr-x 0 0 0 18711 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/share/man/man1/python3.9.1 + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/ + - -rwxr-xr-x 0 0 0 127 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/2to3 + - -rwxr-xr-x 0 0 0 127 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/2to3-3.9 + - -rwxr-xr-x 0 0 0 125 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/idle3 + - -rwxr-xr-x 0 0 0 125 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/idle3.9 + - -rwxr-xr-x 0 0 0 255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/pip + - -rwxr-xr-x 0 0 0 255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/pip3 + - -rwxr-xr-x 0 0 0 255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/pip3.9 + - -rwxr-xr-x 0 0 0 110 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/pydoc3 + - -rwxr-xr-x 0 0 0 110 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/pydoc3.9 + - -rwxr-xr-x 0 0 0 20944 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python + - -rwxr-xr-x 0 0 0 20944 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3 + - -rwxr-xr-x 0 0 0 3089 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3-config + - -rwxr-xr-x 0 0 0 20944 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3.9 + - -rwxr-xr-x 0 0 0 3089 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3.9-config + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/ + - -rwxr-xr-x 0 0 0 26193 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/Python-ast.h + - -rwxr-xr-x 0 0 0 3532 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/Python.h + - -rwxr-xr-x 0 0 0 30476 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/abstract.h + - -rwxr-xr-x 0 0 0 1224 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/asdl.h + - -rwxr-xr-x 0 0 0 947 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/ast.h + - -rwxr-xr-x 0 0 0 468 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/bitset.h + - -rwxr-xr-x 0 0 0 264 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/bltinmodule.h + - -rwxr-xr-x 0 0 0 885 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/boolobject.h + - -rwxr-xr-x 0 0 0 1484 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/bytearrayobject.h + - -rwxr-xr-x 0 0 0 3048 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/bytesobject.h + - -rwxr-xr-x 0 0 0 712 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cellobject.h + - -rwxr-xr-x 0 0 0 5954 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/ceval.h + - -rwxr-xr-x 0 0 0 1657 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/classobject.h + - -rwxr-xr-x 0 0 0 318 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/code.h + - -rwxr-xr-x 0 0 0 6793 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/codecs.h + - -rwxr-xr-x 0 0 0 3778 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/compile.h + - -rwxr-xr-x 0 0 0 1806 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/complexobject.h + - -rwxr-xr-x 0 0 0 1962 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/context.h + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/ + - -rwxr-xr-x 0 0 0 14200 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/abstract.h + - -rwxr-xr-x 0 0 0 769 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/bytearrayobject.h + - -rwxr-xr-x 0 0 0 4114 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/bytesobject.h + - -rwxr-xr-x 0 0 0 1537 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/ceval.h + - -rwxr-xr-x 0 0 0 6989 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/code.h + - -rwxr-xr-x 0 0 0 3797 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/dictobject.h + - -rwxr-xr-x 0 0 0 721 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/fileobject.h + - -rwxr-xr-x 0 0 0 4004 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/fileutils.h + - -rwxr-xr-x 0 0 0 3059 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/frameobject.h + - -rwxr-xr-x 0 0 0 1473 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/import.h + - -rwxr-xr-x 0 0 0 16979 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/initconfig.h + - -rwxr-xr-x 0 0 0 456 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/interpreteridobject.h + - -rwxr-xr-x 0 0 0 1364 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/listobject.h + - -rwxr-xr-x 0 0 0 1399 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/methodobject.h + - -rwxr-xr-x 0 0 0 19358 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/object.h + - -rwxr-xr-x 0 0 0 4456 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/objimpl.h + - -rwxr-xr-x 0 0 0 5101 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/pyerrors.h + - -rwxr-xr-x 0 0 0 2096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/pylifecycle.h + - -rwxr-xr-x 0 0 0 3511 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/pymem.h + - -rwxr-xr-x 0 0 0 10134 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/pystate.h + - -rwxr-xr-x 0 0 0 575 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/sysmodule.h + - -rwxr-xr-x 0 0 0 473 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/traceback.h + - -rwxr-xr-x 0 0 0 1036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/tupleobject.h + - -rwxr-xr-x 0 0 0 46154 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/unicodeobject.h + - -rwxr-xr-x 0 0 0 9255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/datetime.h + - -rwxr-xr-x 0 0 0 3019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/descrobject.h + - -rwxr-xr-x 0 0 0 3715 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/dictobject.h + - -rwxr-xr-x 0 0 0 22469 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/dynamic_annotations.h + - -rwxr-xr-x 0 0 0 253 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/enumobject.h + - -rwxr-xr-x 0 0 0 1624 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/errcode.h + - -rwxr-xr-x 0 0 0 1209 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/eval.h + - -rwxr-xr-x 0 0 0 1098 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/exports.h + - -rwxr-xr-x 0 0 0 1571 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/fileobject.h + - -rwxr-xr-x 0 0 0 597 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/fileutils.h + - -rwxr-xr-x 0 0 0 4360 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/floatobject.h + - -rwxr-xr-x 0 0 0 337 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/frameobject.h + - -rwxr-xr-x 0 0 0 4057 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/funcobject.h + - -rwxr-xr-x 0 0 0 334 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/genericaliasobject.h + - -rwxr-xr-x 0 0 0 3525 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/genobject.h + - -rwxr-xr-x 0 0 0 2118 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/graminit.h + - -rwxr-xr-x 0 0 0 1821 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/grammar.h + - -rwxr-xr-x 0 0 0 3026 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/import.h + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/ + - -rwxr-xr-x 0 0 0 953 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pegen_interface.h + - -rwxr-xr-x 0 0 0 479 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_abstract.h + - -rwxr-xr-x 0 0 0 1126 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_accu.h + - -rwxr-xr-x 0 0 0 16977 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_atomic.h + - -rwxr-xr-x 0 0 0 3384 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_bytes_methods.h + - -rwxr-xr-x 0 0 0 2620 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_byteswap.h + - -rwxr-xr-x 0 0 0 870 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_call.h + - -rwxr-xr-x 0 0 0 3403 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_ceval.h + - -rwxr-xr-x 0 0 0 541 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_code.h + - -rwxr-xr-x 0 0 0 2809 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_condvar.h + - -rwxr-xr-x 0 0 0 800 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_context.h + - -rwxr-xr-x 0 0 0 646 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_dtoa.h + - -rwxr-xr-x 0 0 0 1541 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_fileutils.h + - -rwxr-xr-x 0 0 0 6647 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_gc.h + - -rwxr-xr-x 0 0 0 490 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_getopt.h + - -rwxr-xr-x 0 0 0 1565 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_gil.h + - -rwxr-xr-x 0 0 0 3697 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_hamt.h + - -rwxr-xr-x 0 0 0 4197 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_hashtable.h + - -rwxr-xr-x 0 0 0 473 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_import.h + - -rwxr-xr-x 0 0 0 5233 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_initconfig.h + - -rwxr-xr-x 0 0 0 5299 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_interp.h + - -rwxr-xr-x 0 0 0 1548 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_long.h + - -rwxr-xr-x 0 0 0 4157 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_object.h + - -rwxr-xr-x 0 0 0 1936 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_pathconfig.h + - -rwxr-xr-x 0 0 0 2032 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_pyerrors.h + - -rwxr-xr-x 0 0 0 206 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_pyhash.h + - -rwxr-xr-x 0 0 0 3741 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_pylifecycle.h + - -rwxr-xr-x 0 0 0 3363 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_pymem.h + - -rwxr-xr-x 0 0 0 3583 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_pystate.h + - -rwxr-xr-x 0 0 0 4452 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_runtime.h + - -rwxr-xr-x 0 0 0 548 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_sysmodule.h + - -rwxr-xr-x 0 0 0 3056 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_traceback.h + - -rwxr-xr-x 0 0 0 442 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_tupleobject.h + - -rwxr-xr-x 0 0 0 633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_warnings.h + - -rwxr-xr-x 0 0 0 334 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/interpreteridobject.h + - -rwxr-xr-x 0 0 0 861 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/intrcheck.h + - -rwxr-xr-x 0 0 0 521 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/iterobject.h + - -rwxr-xr-x 0 0 0 1781 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/listobject.h + - -rwxr-xr-x 0 0 0 3799 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/longintrepr.h + - -rwxr-xr-x 0 0 0 9513 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/longobject.h + - -rwxr-xr-x 0 0 0 803 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/marshal.h + - -rwxr-xr-x 0 0 0 2764 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/memoryobject.h + - -rwxr-xr-x 0 0 0 3775 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/methodobject.h + - -rwxr-xr-x 0 0 0 9959 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/modsupport.h + - -rwxr-xr-x 0 0 0 2361 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/moduleobject.h + - -rwxr-xr-x 0 0 0 349 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/namespaceobject.h + - -rwxr-xr-x 0 0 0 1281 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/node.h + - -rwxr-xr-x 0 0 0 24628 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/object.h + - -rwxr-xr-x 0 0 0 8423 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/objimpl.h + - -rwxr-xr-x 0 0 0 1299 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/odictobject.h + - -rwxr-xr-x 0 0 0 4900 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/opcode.h + - -rwxr-xr-x 0 0 0 737 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/osdefs.h + - -rwxr-xr-x 0 0 0 291 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/osmodule.h + - -rwxr-xr-x 0 0 0 2958 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/parsetok.h + - -rwxr-xr-x 0 0 0 1299 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/patchlevel.h + - -rwxr-xr-x 0 0 0 846 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/picklebufobject.h + - -rwxr-xr-x 0 0 0 2474 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/py_curses.h + - -rwxr-xr-x 0 0 0 2744 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pyarena.h + - -rwxr-xr-x 0 0 0 1725 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pycapsule.h + - -rwxr-xr-x 0 0 0 48085 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pyconfig.h + - -rwxr-xr-x 0 0 0 1387 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pyctype.h + - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pydebug.h + - -rwxr-xr-x 0 0 0 2413 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pydtrace.h + - -rwxr-xr-x 0 0 0 12427 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pyerrors.h + - -rwxr-xr-x 0 0 0 2572 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pyexpat.h + - -rwxr-xr-x 0 0 0 444 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pyfpe.h + - -rwxr-xr-x 0 0 0 466 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pyframe.h + - -rwxr-xr-x 0 0 0 4263 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pyhash.h + - -rwxr-xr-x 0 0 0 2136 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pylifecycle.h + - -rwxr-xr-x 0 0 0 2989 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pymacconfig.h + - -rwxr-xr-x 0 0 0 4920 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pymacro.h + - -rwxr-xr-x 0 0 0 8580 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pymath.h + - -rwxr-xr-x 0 0 0 4406 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pymem.h + - -rwxr-xr-x 0 0 0 31273 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pyport.h + - -rwxr-xr-x 0 0 0 5250 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pystate.h + - -rwxr-xr-x 0 0 0 436 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pystrcmp.h + - -rwxr-xr-x 0 0 0 849 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pystrhex.h + - -rwxr-xr-x 0 0 0 1483 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pystrtod.h + - -rwxr-xr-x 0 0 0 7673 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pythonrun.h + - -rwxr-xr-x 0 0 0 5938 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pythread.h + - -rwxr-xr-x 0 0 0 8928 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pytime.h + - -rwxr-xr-x 0 0 0 628 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/rangeobject.h + - -rwxr-xr-x 0 0 0 3324 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/setobject.h + - -rwxr-xr-x 0 0 0 2516 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/sliceobject.h + - -rwxr-xr-x 0 0 0 2030 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/structmember.h + - -rwxr-xr-x 0 0 0 1390 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/structseq.h + - -rwxr-xr-x 0 0 0 5307 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/symtable.h + - -rwxr-xr-x 0 0 0 1242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/sysmodule.h + - -rwxr-xr-x 0 0 0 2642 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/token.h + - -rwxr-xr-x 0 0 0 584 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/traceback.h + - -rwxr-xr-x 0 0 0 1114 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/tracemalloc.h + - -rwxr-xr-x 0 0 0 1614 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/tupleobject.h + - -rwxr-xr-x 0 0 0 2350 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/typeslots.h + - -rwxr-xr-x 0 0 0 1056 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/ucnhash.h + - -rwxr-xr-x 0 0 0 35426 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/unicodeobject.h + - -rwxr-xr-x 0 0 0 1776 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/warnings.h + - -rwxr-xr-x 0 0 0 2863 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/weakrefobject.h + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/ + - -rwxr-xr-x 0 0 0 13870 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Balloon.tcl + - -rwxr-xr-x 0 0 0 2791 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/BtnBox.tcl + - -rwxr-xr-x 0 0 0 8098 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/CObjView.tcl + - -rwxr-xr-x 0 0 0 5326 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/ChkList.tcl + - -rwxr-xr-x 0 0 0 37829 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/ComboBox.tcl + - -rwxr-xr-x 0 0 0 903 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Compat.tcl + - -rwxr-xr-x 0 0 0 15923 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Console.tcl + - -rwxr-xr-x 0 0 0 12884 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Control.tcl + - -rwxr-xr-x 0 0 0 3116 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DefSchm.tcl + - -rwxr-xr-x 0 0 0 4471 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DialogS.tcl + - -rwxr-xr-x 0 0 0 5632 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DirBox.tcl + - -rwxr-xr-x 0 0 0 2301 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DirDlg.tcl + - -rwxr-xr-x 0 0 0 7336 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DirList.tcl + - -rwxr-xr-x 0 0 0 9322 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DirTree.tcl + - -rwxr-xr-x 0 0 0 4191 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DragDrop.tcl + - -rwxr-xr-x 0 0 0 1051 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DtlList.tcl + - -rwxr-xr-x 0 0 0 11826 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/EFileBox.tcl + - -rwxr-xr-x 0 0 0 1783 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/EFileDlg.tcl + - -rwxr-xr-x 0 0 0 5448 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Event.tcl + - -rwxr-xr-x 0 0 0 14904 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/FileBox.tcl + - -rwxr-xr-x 0 0 0 2591 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/FileCbx.tcl + - -rwxr-xr-x 0 0 0 2260 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/FileDlg.tcl + - -rwxr-xr-x 0 0 0 7589 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/FileEnt.tcl + - -rwxr-xr-x 0 0 0 3308 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/FloatEnt.tcl + - -rwxr-xr-x 0 0 0 22787 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Grid.tcl + - -rwxr-xr-x 0 0 0 19065 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/HList.tcl + - -rwxr-xr-x 0 0 0 4704 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/HListDD.tcl + - -rwxr-xr-x 0 0 0 6382 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/IconView.tcl + - -rwxr-xr-x 0 0 0 6431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Init.tcl + - -rwxr-xr-x 0 0 0 2229 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/LabEntry.tcl + - -rwxr-xr-x 0 0 0 1230 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/LabFrame.tcl + - -rwxr-xr-x 0 0 0 4108 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/LabWidg.tcl + - -rwxr-xr-x 0 0 0 3734 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/ListNBk.tcl + - -rwxr-xr-x 0 0 0 3251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Meter.tcl + - -rwxr-xr-x 0 0 0 3861 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/MultView.tcl + - -rwxr-xr-x 0 0 0 6407 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/NoteBook.tcl + - -rwxr-xr-x 0 0 0 3164 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/OldUtil.tcl + - -rwxr-xr-x 0 0 0 9786 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/OptMenu.tcl + - -rwxr-xr-x 0 0 0 29562 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/PanedWin.tcl + - -rwxr-xr-x 0 0 0 5739 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/PopMenu.tcl + - -rwxr-xr-x 0 0 0 10955 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Primitiv.tcl + - -rwxr-xr-x 0 0 0 1013 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/README.txt + - -rwxr-xr-x 0 0 0 13752 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/ResizeH.tcl + - -rwxr-xr-x 0 0 0 6178 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SGrid.tcl + - -rwxr-xr-x 0 0 0 3933 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SHList.tcl + - -rwxr-xr-x 0 0 0 7433 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SListBox.tcl + - -rwxr-xr-x 0 0 0 2521 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/STList.tcl + - -rwxr-xr-x 0 0 0 3297 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SText.tcl + - -rwxr-xr-x 0 0 0 10213 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SWidget.tcl + - -rwxr-xr-x 0 0 0 7182 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SWindow.tcl + - -rwxr-xr-x 0 0 0 7504 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Select.tcl + - -rwxr-xr-x 0 0 0 1129 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Shell.tcl + - -rwxr-xr-x 0 0 0 1204 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SimpDlg.tcl + - -rwxr-xr-x 0 0 0 2076 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/StackWin.tcl + - -rwxr-xr-x 0 0 0 1395 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/StatBar.tcl + - -rwxr-xr-x 0 0 0 1727 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/StdBBox.tcl + - -rwxr-xr-x 0 0 0 1222 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/StdShell.tcl + - -rwxr-xr-x 0 0 0 18962 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/TList.tcl + - -rwxr-xr-x 0 0 0 10135 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Tix.tcl + - -rwxr-xr-x 0 0 0 4890 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Tree.tcl + - -rwxr-xr-x 0 0 0 11230 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Utils.tcl + - -rwxr-xr-x 0 0 0 5280 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/VResize.tcl + - -rwxr-xr-x 0 0 0 10081 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/VStack.tcl + - -rwxr-xr-x 0 0 0 4605 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/VTree.tcl + - -rwxr-xr-x 0 0 0 2664 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Variable.tcl + - -rwxr-xr-x 0 0 0 1005 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/WInfo.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/ + - -rwxr-xr-x 0 0 0 90 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/act_fold.gif + - -rwxr-xr-x 0 0 0 221 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/act_fold.xbm + - -rwxr-xr-x 0 0 0 436 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/act_fold.xpm + - -rwxr-xr-x 0 0 0 123 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/balarrow.xbm + - -rwxr-xr-x 0 0 0 263 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/cbxarrow.xbm + - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/ck_def.xbm + - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/ck_off.xbm + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/ck_on.xbm + - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/cross.xbm + - -rwxr-xr-x 0 0 0 99 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/decr.xbm + - -rwxr-xr-x 0 0 0 326 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/drop.xbm + - -rwxr-xr-x 0 0 0 76 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/file.gif + - -rwxr-xr-x 0 0 0 233 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/file.xbm + - -rwxr-xr-x 0 0 0 298 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/file.xpm + - -rwxr-xr-x 0 0 0 79 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/folder.gif + - -rwxr-xr-x 0 0 0 215 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/folder.xbm + - -rwxr-xr-x 0 0 0 418 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/folder.xpm + - -rwxr-xr-x 0 0 0 896 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/harddisk.xbm + - -rwxr-xr-x 0 0 0 969 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/hourglas.mask + - -rwxr-xr-x 0 0 0 940 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/hourglas.xbm + - -rwxr-xr-x 0 0 0 99 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/incr.xbm + - -rwxr-xr-x 0 0 0 159 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/info.gif + - -rwxr-xr-x 0 0 0 1258 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/info.xpm + - -rwxr-xr-x 0 0 0 284 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/maximize.xbm + - -rwxr-xr-x 0 0 0 284 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minimize.xbm + - -rwxr-xr-x 0 0 0 57 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minus.gif + - -rwxr-xr-x 0 0 0 198 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minus.xbm + - -rwxr-xr-x 0 0 0 201 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minus.xpm + - -rwxr-xr-x 0 0 0 59 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minusarm.gif + - -rwxr-xr-x 0 0 0 207 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minusarm.xbm + - -rwxr-xr-x 0 0 0 220 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minusarm.xpm + - -rwxr-xr-x 0 0 0 263 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/mktransgif.tcl + - -rwxr-xr-x 0 0 0 893 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/network.xbm + - -rwxr-xr-x 0 0 0 176 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/no_entry.gif + - -rwxr-xr-x 0 0 0 1274 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/no_entry.xpm + - -rwxr-xr-x 0 0 0 221 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/openfile.xbm + - -rwxr-xr-x 0 0 0 84 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/openfold.gif + - -rwxr-xr-x 0 0 0 221 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/openfold.xbm + - -rwxr-xr-x 0 0 0 418 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/openfold.xpm + - -rwxr-xr-x 0 0 0 58 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plus.gif + - -rwxr-xr-x 0 0 0 195 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plus.xbm + - -rwxr-xr-x 0 0 0 200 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plus.xpm + - -rwxr-xr-x 0 0 0 60 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plusarm.gif + - -rwxr-xr-x 0 0 0 204 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plusarm.xbm + - -rwxr-xr-x 0 0 0 212 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plusarm.xpm + - -rwxr-xr-x 0 0 0 305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/resize1.xbm + - -rwxr-xr-x 0 0 0 305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/resize2.xbm + - -rwxr-xr-x 0 0 0 281 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/restore.xbm + - -rwxr-xr-x 0 0 0 79 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/srcfile.gif + - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/srcfile.xbm + - -rwxr-xr-x 0 0 0 294 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/srcfile.xpm + - -rwxr-xr-x 0 0 0 278 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/system.xbm + - -rwxr-xr-x 0 0 0 79 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/textfile.gif + - -rwxr-xr-x 0 0 0 245 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/textfile.xbm + - -rwxr-xr-x 0 0 0 302 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/textfile.xpm + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/tick.xbm + - -rwxr-xr-x 0 0 0 180 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/warning.gif + - -rwxr-xr-x 0 0 0 1262 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/warning.xpm + - -rwxr-xr-x 0 0 0 4165 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/fs.tcl + - -rwxr-xr-x 0 0 0 2828 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/license.terms + - -rwxr-xr-x 0 0 0 126 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pkgIndex.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/ + - -rwxr-xr-x 0 0 0 641 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/10Point.fs + - -rwxr-xr-x 0 0 0 2046 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/10Point.fsc + - -rwxr-xr-x 0 0 0 640 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/12Point.fs + - -rwxr-xr-x 0 0 0 2045 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/12Point.fsc + - -rwxr-xr-x 0 0 0 639 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/14Point.fs + - -rwxr-xr-x 0 0 0 2105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/14Point.fsc + - -rwxr-xr-x 0 0 0 1028 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Bisque.cs + - -rwxr-xr-x 0 0 0 22539 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Bisque.csc + - -rwxr-xr-x 0 0 0 1045 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Blue.cs + - -rwxr-xr-x 0 0 0 22552 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Blue.csc + - -rwxr-xr-x 0 0 0 1045 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Gray.cs + - -rwxr-xr-x 0 0 0 22552 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Gray.csc + - -rwxr-xr-x 0 0 0 541 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Old12Pt.fs + - -rwxr-xr-x 0 0 0 499 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Old14Pt.fs + - -rwxr-xr-x 0 0 0 1026 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/SGIGray.cs + - -rwxr-xr-x 0 0 0 22537 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/SGIGray.csc + - -rwxr-xr-x 0 0 0 1024 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TK.cs + - -rwxr-xr-x 0 0 0 2023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TK.csc + - -rwxr-xr-x 0 0 0 506 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TK.fs + - -rwxr-xr-x 0 0 0 569 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TK.fsc + - -rwxr-xr-x 0 0 0 1026 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TixGray.cs + - -rwxr-xr-x 0 0 0 22539 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TixGray.csc + - -rwxr-xr-x 0 0 0 2246 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TkWin.cs + - -rwxr-xr-x 0 0 0 22302 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TkWin.csc + - -rwxr-xr-x 0 0 0 390 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TkWin.fs + - -rwxr-xr-x 0 0 0 1674 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TkWin.fsc + - -rwxr-xr-x 0 0 0 1452 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.cs + - -rwxr-xr-x 0 0 0 14566 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.csc + - -rwxr-xr-x 0 0 0 755 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.fs + - -rwxr-xr-x 0 0 0 2184 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.fsc + - -rwxr-xr-x 0 0 0 3597 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.py + - -rwxr-xr-x 0 0 0 34898 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.tcl + - -rwxr-xr-x 0 0 0 4466 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.txt + - -rwxr-xr-x 0 0 0 271 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/pkgIndex.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/itcl4.2.2/ + - -rwxr-xr-x 0 0 0 5153 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/itcl4.2.2/itcl.tcl + - -rwxr-xr-x 0 0 0 2932 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/itcl4.2.2/itclConfig.sh + - -rwxr-xr-x 0 0 0 21056 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/itcl4.2.2/itclHullCmds.tcl + - -rwxr-xr-x 0 0 0 12651 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/itcl4.2.2/itclWidget.tcl + - -rwxr-xr-x 0 0 0 47556352 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/libpython3.9.so.1.0 + - -rwxr-xr-x 0 0 0 16800 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/libpython3.so + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/pkgconfig/ + - -rwxr-xr-x 0 0 0 303 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/pkgconfig/python-3.9-embed.pc + - -rwxr-xr-x 0 0 0 277 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/pkgconfig/python-3.9.pc + - -rwxr-xr-x 0 0 0 303 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/pkgconfig/python3-embed.pc + - -rwxr-xr-x 0 0 0 277 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/pkgconfig/python3.pc + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ + - -rwxr-xr-x 0 0 0 13937 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/LICENSE.txt + - -rwxr-xr-x 0 0 0 5147 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__future__.py + - -rwxr-xr-x 0 0 0 64 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__phello__.foo.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/ + - -rwxr-xr-x 0 0 0 1246 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/_bootlocale.cpython-39.pyc + - -rwxr-xr-x 0 0 0 31750 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/_collections_abc.cpython-39.pyc + - -rwxr-xr-x 0 0 0 3520 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/_sitebuiltins.cpython-39.pyc + - -rwxr-xr-x 0 0 0 5794 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/abc.cpython-39.pyc + - -rwxr-xr-x 0 0 0 33907 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/codecs.cpython-39.pyc + - -rwxr-xr-x 0 0 0 4043 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/genericpath.cpython-39.pyc + - -rwxr-xr-x 0 0 0 3427 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/io.cpython-39.pyc + - -rwxr-xr-x 0 0 0 31665 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/os.cpython-39.pyc + - -rwxr-xr-x 0 0 0 10348 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/posixpath.cpython-39.pyc + - -rwxr-xr-x 0 0 0 17029 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/site.cpython-39.pyc + - -rwxr-xr-x 0 0 0 4391 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/stat.cpython-39.pyc + - -rwxr-xr-x 0 0 0 3389 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_aix_support.py + - -rwxr-xr-x 0 0 0 1801 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_bootlocale.py + - -rwxr-xr-x 0 0 0 2675 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_bootsubprocess.py + - -rwxr-xr-x 0 0 0 29374 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_collections_abc.py + - -rwxr-xr-x 0 0 0 8749 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_compat_pickle.py + - -rwxr-xr-x 0 0 0 5340 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_compression.py + - -rwxr-xr-x 0 0 0 14623 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_markupbase.py + - -rwxr-xr-x 0 0 0 21773 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_osx_support.py + - -rwxr-xr-x 0 0 0 6189 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_py_abc.py + - -rwxr-xr-x 0 0 0 228666 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_pydecimal.py + - -rwxr-xr-x 0 0 0 93316 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_pyio.py + - -rwxr-xr-x 0 0 0 3115 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_sitebuiltins.py + - -rwxr-xr-x 0 0 0 25277 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_strptime.py + - -rwxr-xr-x 0 0 0 28013 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_sysconfigdata__linux_x86_64-linux-gnu.py + - -rwxr-xr-x 0 0 0 7220 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_threading_local.py + - -rwxr-xr-x 0 0 0 5923 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_weakrefset.py + - -rwxr-xr-x 0 0 0 4920 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/abc.py + - -rwxr-xr-x 0 0 0 32605 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/aifc.py + - -rwxr-xr-x 0 0 0 500 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/antigravity.py + - -rwxr-xr-x 0 0 0 98119 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/argparse.py + - -rwxr-xr-x 0 0 0 56179 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ast.py + - -rwxr-xr-x 0 0 0 11321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asynchat.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/ + - -rwxr-xr-x 0 0 0 1279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/__init__.py + - -rwxr-xr-x 0 0 0 3379 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/__main__.py + - -rwxr-xr-x 0 0 0 74192 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/base_events.py + - -rwxr-xr-x 0 0 0 2574 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/base_futures.py + - -rwxr-xr-x 0 0 0 8843 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/base_subprocess.py + - -rwxr-xr-x 0 0 0 2467 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/base_tasks.py + - -rwxr-xr-x 0 0 0 888 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/constants.py + - -rwxr-xr-x 0 0 0 8797 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/coroutines.py + - -rwxr-xr-x 0 0 0 26451 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/events.py + - -rwxr-xr-x 0 0 0 1633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/exceptions.py + - -rwxr-xr-x 0 0 0 2404 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/format_helpers.py + - -rwxr-xr-x 0 0 0 14042 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/futures.py + - -rwxr-xr-x 0 0 0 15181 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/locks.py + - -rwxr-xr-x 0 0 0 124 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/log.py + - -rwxr-xr-x 0 0 0 32146 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/proactor_events.py + - -rwxr-xr-x 0 0 0 6957 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/protocols.py + - -rwxr-xr-x 0 0 0 8305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/queues.py + - -rwxr-xr-x 0 0 0 2125 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/runners.py + - -rwxr-xr-x 0 0 0 39500 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/selector_events.py + - -rwxr-xr-x 0 0 0 27459 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/sslproto.py + - -rwxr-xr-x 0 0 0 5992 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/staggered.py + - -rwxr-xr-x 0 0 0 26656 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/streams.py + - -rwxr-xr-x 0 0 0 8070 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/subprocess.py + - -rwxr-xr-x 0 0 0 34419 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/tasks.py + - -rwxr-xr-x 0 0 0 790 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/threads.py + - -rwxr-xr-x 0 0 0 10724 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/transports.py + - -rwxr-xr-x 0 0 0 5876 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/trsock.py + - -rwxr-xr-x 0 0 0 51754 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/unix_events.py + - -rwxr-xr-x 0 0 0 33054 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/windows_events.py + - -rwxr-xr-x 0 0 0 5060 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/windows_utils.py + - -rwxr-xr-x 0 0 0 20102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncore.py + - -rwxr-xr-x 0 0 0 19861 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/base64.py + - -rwxr-xr-x 0 0 0 31389 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/bdb.py + - -rwxr-xr-x 0 0 0 14784 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/binhex.py + - -rwxr-xr-x 0 0 0 2350 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/bisect.py + - -rwxr-xr-x 0 0 0 12447 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/bz2.py + - -rwxr-xr-x 0 0 0 6347 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/cProfile.py + - -rwxr-xr-x 0 0 0 24832 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/calendar.py + - -rwxr-xr-x 0 0 0 33963 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/cgi.py + - -rwxr-xr-x 0 0 0 12096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/cgitb.py + - -rwxr-xr-x 0 0 0 5435 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/chunk.py + - -rwxr-xr-x 0 0 0 14860 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/cmd.py + - -rwxr-xr-x 0 0 0 10622 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/code.py + - -rwxr-xr-x 0 0 0 36673 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/codecs.py + - -rwxr-xr-x 0 0 0 6326 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/codeop.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/collections/ + - -rwxr-xr-x 0 0 0 49819 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/collections/__init__.py + - -rwxr-xr-x 0 0 0 119 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/collections/abc.py + - -rwxr-xr-x 0 0 0 4064 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/colorsys.py + - -rwxr-xr-x 0 0 0 20105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/compileall.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/ + - -rwxr-xr-x 0 0 0 38 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/futures/ + - -rwxr-xr-x 0 0 0 1554 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/futures/__init__.py + - -rwxr-xr-x 0 0 0 22577 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/futures/_base.py + - -rwxr-xr-x 0 0 0 31395 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/futures/process.py + - -rwxr-xr-x 0 0 0 8771 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/futures/thread.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/ + - -rwxr-xr-x 0 0 0 112671 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/Makefile + - -rwxr-xr-x 0 0 0 15019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/Setup + - -rwxr-xr-x 0 0 0 3123 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/Setup.local + - -rwxr-xr-x 0 0 0 8848 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/config.c + - -rwxr-xr-x 0 0 0 1623 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/config.c.in + - -rwxr-xr-x 0 0 0 15368 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/install-sh + - -rwxr-xr-x 0 0 0 7929 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/makesetup + - -rwxr-xr-x 0 0 0 2069 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/python-config.py + - -rwxr-xr-x 0 0 0 4060 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/python.o + - -rwxr-xr-x 0 0 0 54584 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/configparser.py + - -rwxr-xr-x 0 0 0 24624 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/contextlib.py + - -rwxr-xr-x 0 0 0 129 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/contextvars.py + - -rwxr-xr-x 0 0 0 8650 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/copy.py + - -rwxr-xr-x 0 0 0 7274 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/copyreg.py + - -rwxr-xr-x 0 0 0 3819 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/crypt.py + - -rwxr-xr-x 0 0 0 16144 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/csv.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/ + - -rwxr-xr-x 0 0 0 18046 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/__init__.py + - -rwxr-xr-x 0 0 0 12575 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/_aix.py + - -rwxr-xr-x 0 0 0 2000 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/_endian.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/ + - -rwxr-xr-x 0 0 0 296 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/README.ctypes + - -rwxr-xr-x 0 0 0 154 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/__init__.py + - -rwxr-xr-x 0 0 0 5283 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/dyld.py + - -rwxr-xr-x 0 0 0 1828 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/dylib.py + - -rwxr-xr-x 0 0 0 84 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/fetch_macholib + - -rwxr-xr-x 0 0 0 75 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/fetch_macholib.bat + - -rwxr-xr-x 0 0 0 2201 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/framework.py + - -rwxr-xr-x 0 0 0 13879 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/util.py + - -rwxr-xr-x 0 0 0 5628 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/wintypes.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/curses/ + - -rwxr-xr-x 0 0 0 3369 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/curses/__init__.py + - -rwxr-xr-x 0 0 0 2547 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/curses/ascii.py + - -rwxr-xr-x 0 0 0 5634 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/curses/has_key.py + - -rwxr-xr-x 0 0 0 87 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/curses/panel.py + - -rwxr-xr-x 0 0 0 7657 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/curses/textpad.py + - -rwxr-xr-x 0 0 0 49586 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/dataclasses.py + - -rwxr-xr-x 0 0 0 89177 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/datetime.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/dbm/ + - -rwxr-xr-x 0 0 0 5839 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/dbm/__init__.py + - -rwxr-xr-x 0 0 0 11536 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/dbm/dumb.py + - -rwxr-xr-x 0 0 0 72 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/dbm/gnu.py + - -rwxr-xr-x 0 0 0 70 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/dbm/ndbm.py + - -rwxr-xr-x 0 0 0 320 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/decimal.py + - -rwxr-xr-x 0 0 0 83307 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/difflib.py + - -rwxr-xr-x 0 0 0 20570 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/dis.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/ + - -rwxr-xr-x 0 0 0 244 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/README + - -rwxr-xr-x 0 0 0 236 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/__init__.py + - -rwxr-xr-x 0 0 0 20007 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/_msvccompiler.py + - -rwxr-xr-x 0 0 0 8572 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/archive_util.py + - -rwxr-xr-x 0 0 0 14894 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/bcppcompiler.py + - -rwxr-xr-x 0 0 0 47418 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/ccompiler.py + - -rwxr-xr-x 0 0 0 18079 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/cmd.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/ + - -rwxr-xr-x 0 0 0 799 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/__init__.py + - -rwxr-xr-x 0 0 0 5562 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist.py + - -rwxr-xr-x 0 0 0 4913 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist_dumb.py + - -rwxr-xr-x 0 0 0 35579 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist_msi.py + - -rwxr-xr-x 0 0 0 21537 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist_rpm.py + - -rwxr-xr-x 0 0 0 16030 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist_wininst.py + - -rwxr-xr-x 0 0 0 5767 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/build.py + - -rwxr-xr-x 0 0 0 8022 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/build_clib.py + - -rwxr-xr-x 0 0 0 31635 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/build_ext.py + - -rwxr-xr-x 0 0 0 17190 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/build_py.py + - -rwxr-xr-x 0 0 0 6232 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/build_scripts.py + - -rwxr-xr-x 0 0 0 5636 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/check.py + - -rwxr-xr-x 0 0 0 2776 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/clean.py + - -rwxr-xr-x 0 0 0 633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/command_template + - -rwxr-xr-x 0 0 0 13117 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/config.py + - -rwxr-xr-x 0 0 0 26805 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/install.py + - -rwxr-xr-x 0 0 0 2822 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/install_data.py + - -rwxr-xr-x 0 0 0 2603 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/install_egg_info.py + - -rwxr-xr-x 0 0 0 1298 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/install_headers.py + - -rwxr-xr-x 0 0 0 8397 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/install_lib.py + - -rwxr-xr-x 0 0 0 2017 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/install_scripts.py + - -rwxr-xr-x 0 0 0 11712 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/register.py + - -rwxr-xr-x 0 0 0 19005 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/sdist.py + - -rwxr-xr-x 0 0 0 7621 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/upload.py + - -rwxr-xr-x 0 0 0 4827 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/config.py + - -rwxr-xr-x 0 0 0 8876 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/core.py + - -rwxr-xr-x 0 0 0 16380 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/cygwinccompiler.py + - -rwxr-xr-x 0 0 0 139 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/debug.py + - -rwxr-xr-x 0 0 0 3491 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/dep_util.py + - -rwxr-xr-x 0 0 0 7778 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/dir_util.py + - -rwxr-xr-x 0 0 0 50385 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/dist.py + - -rwxr-xr-x 0 0 0 3577 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/errors.py + - -rwxr-xr-x 0 0 0 10515 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/extension.py + - -rwxr-xr-x 0 0 0 17784 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/fancy_getopt.py + - -rwxr-xr-x 0 0 0 8148 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/file_util.py + - -rwxr-xr-x 0 0 0 12832 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/filelist.py + - -rwxr-xr-x 0 0 0 1969 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/log.py + - -rwxr-xr-x 0 0 0 30453 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/msvc9compiler.py + - -rwxr-xr-x 0 0 0 23540 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/msvccompiler.py + - -rwxr-xr-x 0 0 0 4660 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/spawn.py + - -rwxr-xr-x 0 0 0 20632 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/sysconfig.py + - -rwxr-xr-x 0 0 0 12483 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/text_file.py + - -rwxr-xr-x 0 0 0 14818 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/unixccompiler.py + - -rwxr-xr-x 0 0 0 20913 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/util.py + - -rwxr-xr-x 0 0 0 12514 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/version.py + - -rwxr-xr-x 0 0 0 5133 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/versionpredicate.py + - -rwxr-xr-x 0 0 0 104568 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/doctest.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/ + - -rwxr-xr-x 0 0 0 1766 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/__init__.py + - -rwxr-xr-x 0 0 0 8541 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/_encoded_words.py + - -rwxr-xr-x 0 0 0 107205 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/_header_value_parser.py + - -rwxr-xr-x 0 0 0 17722 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/_parseaddr.py + - -rwxr-xr-x 0 0 0 15534 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/_policybase.py + - -rwxr-xr-x 0 0 0 9561 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/architecture.rst + - -rwxr-xr-x 0 0 0 3558 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/base64mime.py + - -rwxr-xr-x 0 0 0 17128 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/charset.py + - -rwxr-xr-x 0 0 0 10555 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/contentmanager.py + - -rwxr-xr-x 0 0 0 1786 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/encoders.py + - -rwxr-xr-x 0 0 0 3726 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/errors.py + - -rwxr-xr-x 0 0 0 22780 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/feedparser.py + - -rwxr-xr-x 0 0 0 20816 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/generator.py + - -rwxr-xr-x 0 0 0 24102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/header.py + - -rwxr-xr-x 0 0 0 20628 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/headerregistry.py + - -rwxr-xr-x 0 0 0 2135 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/iterators.py + - -rwxr-xr-x 0 0 0 47060 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/message.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/__init__.py + - -rwxr-xr-x 0 0 0 1321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/application.py + - -rwxr-xr-x 0 0 0 2739 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/audio.py + - -rwxr-xr-x 0 0 0 916 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/base.py + - -rwxr-xr-x 0 0 0 1829 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/image.py + - -rwxr-xr-x 0 0 0 1317 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/message.py + - -rwxr-xr-x 0 0 0 1621 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/multipart.py + - -rwxr-xr-x 0 0 0 691 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/nonmultipart.py + - -rwxr-xr-x 0 0 0 1437 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/text.py + - -rwxr-xr-x 0 0 0 5041 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/parser.py + - -rwxr-xr-x 0 0 0 10383 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/policy.py + - -rwxr-xr-x 0 0 0 9858 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/quoprimime.py + - -rwxr-xr-x 0 0 0 17060 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/utils.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/ + - -rwxr-xr-x 0 0 0 5588 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/__pycache__/ + - -rwxr-xr-x 0 0 0 3916 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/__pycache__/__init__.cpython-39.pyc + - -rwxr-xr-x 0 0 0 6349 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/__pycache__/aliases.cpython-39.pyc + - -rwxr-xr-x 0 0 0 1914 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/__pycache__/latin_1.cpython-39.pyc + - -rwxr-xr-x 0 0 0 1651 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/__pycache__/utf_8.cpython-39.pyc + - -rwxr-xr-x 0 0 0 15677 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/aliases.py + - -rwxr-xr-x 0 0 0 1248 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/ascii.py + - -rwxr-xr-x 0 0 0 1533 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/base64_codec.py + - -rwxr-xr-x 0 0 0 1019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/big5.py + - -rwxr-xr-x 0 0 0 1039 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/big5hkscs.py + - -rwxr-xr-x 0 0 0 2249 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/bz2_codec.py + - -rwxr-xr-x 0 0 0 2084 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/charmap.py + - -rwxr-xr-x 0 0 0 13121 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp037.py + - -rwxr-xr-x 0 0 0 13568 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1006.py + - -rwxr-xr-x 0 0 0 13113 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1026.py + - -rwxr-xr-x 0 0 0 34597 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1125.py + - -rwxr-xr-x 0 0 0 13105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1140.py + - -rwxr-xr-x 0 0 0 13686 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1250.py + - -rwxr-xr-x 0 0 0 13361 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1251.py + - -rwxr-xr-x 0 0 0 13511 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1252.py + - -rwxr-xr-x 0 0 0 13094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1253.py + - -rwxr-xr-x 0 0 0 13502 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1254.py + - -rwxr-xr-x 0 0 0 12466 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1255.py + - -rwxr-xr-x 0 0 0 12814 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1256.py + - -rwxr-xr-x 0 0 0 13374 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1257.py + - -rwxr-xr-x 0 0 0 13364 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1258.py + - -rwxr-xr-x 0 0 0 14132 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp273.py + - -rwxr-xr-x 0 0 0 12055 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp424.py + - -rwxr-xr-x 0 0 0 34564 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp437.py + - -rwxr-xr-x 0 0 0 13121 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp500.py + - -rwxr-xr-x 0 0 0 13686 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp720.py + - -rwxr-xr-x 0 0 0 34681 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp737.py + - -rwxr-xr-x 0 0 0 34476 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp775.py + - -rwxr-xr-x 0 0 0 34105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp850.py + - -rwxr-xr-x 0 0 0 35002 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp852.py + - -rwxr-xr-x 0 0 0 33850 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp855.py + - -rwxr-xr-x 0 0 0 12423 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp856.py + - -rwxr-xr-x 0 0 0 33908 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp857.py + - -rwxr-xr-x 0 0 0 34015 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp858.py + - -rwxr-xr-x 0 0 0 34681 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp860.py + - -rwxr-xr-x 0 0 0 34633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp861.py + - -rwxr-xr-x 0 0 0 33370 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp862.py + - -rwxr-xr-x 0 0 0 34252 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp863.py + - -rwxr-xr-x 0 0 0 33663 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp864.py + - -rwxr-xr-x 0 0 0 34618 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp865.py + - -rwxr-xr-x 0 0 0 34396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp866.py + - -rwxr-xr-x 0 0 0 32965 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp869.py + - -rwxr-xr-x 0 0 0 12595 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp874.py + - -rwxr-xr-x 0 0 0 12854 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp875.py + - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp932.py + - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp949.py + - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp950.py + - -rwxr-xr-x 0 0 0 1051 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/euc_jis_2004.py + - -rwxr-xr-x 0 0 0 1051 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/euc_jisx0213.py + - -rwxr-xr-x 0 0 0 1027 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/euc_jp.py + - -rwxr-xr-x 0 0 0 1027 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/euc_kr.py + - -rwxr-xr-x 0 0 0 1031 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/gb18030.py + - -rwxr-xr-x 0 0 0 1027 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/gb2312.py + - -rwxr-xr-x 0 0 0 1015 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/gbk.py + - -rwxr-xr-x 0 0 0 1508 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/hex_codec.py + - -rwxr-xr-x 0 0 0 13475 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/hp_roman8.py + - -rwxr-xr-x 0 0 0 1011 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/hz.py + - -rwxr-xr-x 0 0 0 9098 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/idna.py + - -rwxr-xr-x 0 0 0 1053 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp.py + - -rwxr-xr-x 0 0 0 1061 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_1.py + - -rwxr-xr-x 0 0 0 1061 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_2.py + - -rwxr-xr-x 0 0 0 1073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_2004.py + - -rwxr-xr-x 0 0 0 1061 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_3.py + - -rwxr-xr-x 0 0 0 1069 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_ext.py + - -rwxr-xr-x 0 0 0 1053 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_kr.py + - -rwxr-xr-x 0 0 0 13176 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_1.py + - -rwxr-xr-x 0 0 0 13589 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_10.py + - -rwxr-xr-x 0 0 0 12335 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_11.py + - -rwxr-xr-x 0 0 0 13271 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_13.py + - -rwxr-xr-x 0 0 0 13652 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_14.py + - -rwxr-xr-x 0 0 0 13212 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_15.py + - -rwxr-xr-x 0 0 0 13557 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_16.py + - -rwxr-xr-x 0 0 0 13404 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_2.py + - -rwxr-xr-x 0 0 0 13089 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_3.py + - -rwxr-xr-x 0 0 0 13376 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_4.py + - -rwxr-xr-x 0 0 0 13015 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_5.py + - -rwxr-xr-x 0 0 0 10833 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_6.py + - -rwxr-xr-x 0 0 0 12844 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_7.py + - -rwxr-xr-x 0 0 0 11036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_8.py + - -rwxr-xr-x 0 0 0 13156 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_9.py + - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/johab.py + - -rwxr-xr-x 0 0 0 13779 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/koi8_r.py + - -rwxr-xr-x 0 0 0 13193 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/koi8_t.py + - -rwxr-xr-x 0 0 0 13762 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/koi8_u.py + - -rwxr-xr-x 0 0 0 13723 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/kz1048.py + - -rwxr-xr-x 0 0 0 1264 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/latin_1.py + - -rwxr-xr-x 0 0 0 36467 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_arabic.py + - -rwxr-xr-x 0 0 0 13633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_croatian.py + - -rwxr-xr-x 0 0 0 13454 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_cyrillic.py + - -rwxr-xr-x 0 0 0 15170 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_farsi.py + - -rwxr-xr-x 0 0 0 13721 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_greek.py + - -rwxr-xr-x 0 0 0 13498 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_iceland.py + - -rwxr-xr-x 0 0 0 14118 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_latin2.py + - -rwxr-xr-x 0 0 0 13480 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_roman.py + - -rwxr-xr-x 0 0 0 13661 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_romanian.py + - -rwxr-xr-x 0 0 0 13513 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_turkish.py + - -rwxr-xr-x 0 0 0 1211 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mbcs.py + - -rwxr-xr-x 0 0 0 1019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/oem.py + - -rwxr-xr-x 0 0 0 13519 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/palmos.py + - -rwxr-xr-x 0 0 0 14015 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/ptcp154.py + - -rwxr-xr-x 0 0 0 6883 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/punycode.py + - -rwxr-xr-x 0 0 0 1525 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/quopri_codec.py + - -rwxr-xr-x 0 0 0 1332 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/raw_unicode_escape.py + - -rwxr-xr-x 0 0 0 2448 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/rot_13.py + - -rwxr-xr-x 0 0 0 1039 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/shift_jis.py + - -rwxr-xr-x 0 0 0 1059 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/shift_jis_2004.py + - -rwxr-xr-x 0 0 0 1059 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/shift_jisx0213.py + - -rwxr-xr-x 0 0 0 12300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/tis_620.py + - -rwxr-xr-x 0 0 0 1299 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/undefined.py + - -rwxr-xr-x 0 0 0 1304 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/unicode_escape.py + - -rwxr-xr-x 0 0 0 5236 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_16.py + - -rwxr-xr-x 0 0 0 1037 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_16_be.py + - -rwxr-xr-x 0 0 0 1037 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_16_le.py + - -rwxr-xr-x 0 0 0 5129 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_32.py + - -rwxr-xr-x 0 0 0 930 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_32_be.py + - -rwxr-xr-x 0 0 0 930 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_32_le.py + - -rwxr-xr-x 0 0 0 946 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_7.py + - -rwxr-xr-x 0 0 0 1005 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_8.py + - -rwxr-xr-x 0 0 0 4133 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_8_sig.py + - -rwxr-xr-x 0 0 0 2851 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/uu_codec.py + - -rwxr-xr-x 0 0 0 2204 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/zlib_codec.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ensurepip/ + - -rwxr-xr-x 0 0 0 6963 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ensurepip/__init__.py + - -rwxr-xr-x 0 0 0 88 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ensurepip/__main__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ensurepip/_bundled/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ensurepip/_bundled/__init__.py + - -rwxr-xr-x 0 0 0 808 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ensurepip/_uninstall.py + - -rwxr-xr-x 0 0 0 39440 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/enum.py + - -rwxr-xr-x 0 0 0 10024 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/filecmp.py + - -rwxr-xr-x 0 0 0 14791 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/fileinput.py + - -rwxr-xr-x 0 0 0 6004 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/fnmatch.py + - -rwxr-xr-x 0 0 0 15143 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/formatter.py + - -rwxr-xr-x 0 0 0 24323 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/fractions.py + - -rwxr-xr-x 0 0 0 35496 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ftplib.py + - -rwxr-xr-x 0 0 0 38881 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/functools.py + - -rwxr-xr-x 0 0 0 4975 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/genericpath.py + - -rwxr-xr-x 0 0 0 7489 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/getopt.py + - -rwxr-xr-x 0 0 0 5990 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/getpass.py + - -rwxr-xr-x 0 0 0 27266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/gettext.py + - -rwxr-xr-x 0 0 0 5823 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/glob.py + - -rwxr-xr-x 0 0 0 9573 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/graphlib.py + - -rwxr-xr-x 0 0 0 21772 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/gzip.py + - -rwxr-xr-x 0 0 0 10010 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/hashlib.py + - -rwxr-xr-x 0 0 0 22877 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/heapq.py + - -rwxr-xr-x 0 0 0 7003 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/hmac.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/html/ + - -rwxr-xr-x 0 0 0 4756 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/html/__init__.py + - -rwxr-xr-x 0 0 0 75383 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/html/entities.py + - -rwxr-xr-x 0 0 0 17392 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/html/parser.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/http/ + - -rwxr-xr-x 0 0 0 6732 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/http/__init__.py + - -rwxr-xr-x 0 0 0 56549 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/http/client.py + - -rwxr-xr-x 0 0 0 76835 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/http/cookiejar.py + - -rwxr-xr-x 0 0 0 19840 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/http/cookies.py + - -rwxr-xr-x 0 0 0 48231 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/http/server.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/ + - -rwxr-xr-x 0 0 0 1866 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/CREDITS.txt + - -rwxr-xr-x 0 0 0 56360 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/ChangeLog + - -rwxr-xr-x 0 0 0 10312 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/HISTORY.txt + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/ + - -rwxr-xr-x 0 0 0 443 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/README.txt + - -rwxr-xr-x 0 0 0 120 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/folder.gif + - -rwxr-xr-x 0 0 0 57746 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle.ico + - -rwxr-xr-x 0 0 0 634 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_16.gif + - -rwxr-xr-x 0 0 0 1031 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_16.png + - -rwxr-xr-x 0 0 0 39205 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_256.png + - -rwxr-xr-x 0 0 0 1019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_32.gif + - -rwxr-xr-x 0 0 0 2036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_32.png + - -rwxr-xr-x 0 0 0 1388 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_48.gif + - -rwxr-xr-x 0 0 0 3977 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_48.png + - -rwxr-xr-x 0 0 0 75 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/minusnode.gif + - -rwxr-xr-x 0 0 0 125 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/openfolder.gif + - -rwxr-xr-x 0 0 0 78 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/plusnode.gif + - -rwxr-xr-x 0 0 0 380 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/python.gif + - -rwxr-xr-x 0 0 0 72 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/tk.gif + - -rwxr-xr-x 0 0 0 51948 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/NEWS.txt + - -rwxr-xr-x 0 0 0 27172 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/NEWS2x.txt + - -rwxr-xr-x 0 0 0 9680 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/README.txt + - -rwxr-xr-x 0 0 0 8478 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/TODO.txt + - -rwxr-xr-x 0 0 0 396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/__init__.py + - -rwxr-xr-x 0 0 0 159 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/__main__.py + - -rwxr-xr-x 0 0 0 9150 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/autocomplete.py + - -rwxr-xr-x 0 0 0 20981 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/autocomplete_w.py + - -rwxr-xr-x 0 0 0 3216 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/autoexpand.py + - -rwxr-xr-x 0 0 0 8314 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/browser.py + - -rwxr-xr-x 0 0 0 7267 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/calltip.py + - -rwxr-xr-x 0 0 0 7158 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/calltip_w.py + - -rwxr-xr-x 0 0 0 11420 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/codecontext.py + - -rwxr-xr-x 0 0 0 13201 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/colorizer.py + - -rwxr-xr-x 0 0 0 2266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/config-extensions.def + - -rwxr-xr-x 0 0 0 2864 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/config-highlight.def + - -rwxr-xr-x 0 0 0 10910 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/config-keys.def + - -rwxr-xr-x 0 0 0 3168 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/config-main.def + - -rwxr-xr-x 0 0 0 38173 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/config.py + - -rwxr-xr-x 0 0 0 14540 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/config_key.py + - -rwxr-xr-x 0 0 0 105738 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/configdialog.py + - -rwxr-xr-x 0 0 0 19104 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/debugger.py + - -rwxr-xr-x 0 0 0 12167 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/debugger_r.py + - -rwxr-xr-x 0 0 0 4055 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/debugobj.py + - -rwxr-xr-x 0 0 0 1082 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/debugobj_r.py + - -rwxr-xr-x 0 0 0 1043 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/delegator.py + - -rwxr-xr-x 0 0 0 2017 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/dynoption.py + - -rwxr-xr-x 0 0 0 65733 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/editor.py + - -rwxr-xr-x 0 0 0 3631 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/extend.txt + - -rwxr-xr-x 0 0 0 3876 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/filelist.py + - -rwxr-xr-x 0 0 0 15777 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/format.py + - -rwxr-xr-x 0 0 0 7479 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/grep.py + - -rwxr-xr-x 0 0 0 68554 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/help.html + - -rwxr-xr-x 0 0 0 11851 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/help.py + - -rwxr-xr-x 0 0 0 9084 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/help_about.py + - -rwxr-xr-x 0 0 0 4043 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/history.py + - -rwxr-xr-x 0 0 0 12883 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/hyperparser.py + - -rwxr-xr-x 0 0 0 177 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/idle.bat + - -rwxr-xr-x 0 0 0 454 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/idle.py + - -rwxr-xr-x 0 0 0 570 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/idle.pyw + - -rwxr-xr-x 0 0 0 15832 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/iomenu.py + - -rwxr-xr-x 0 0 0 9663 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/macosx.py + - -rwxr-xr-x 0 0 0 3930 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/mainmenu.py + - -rwxr-xr-x 0 0 0 18648 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/multicall.py + - -rwxr-xr-x 0 0 0 5709 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/outwin.py + - -rwxr-xr-x 0 0 0 7204 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/parenmatch.py + - -rwxr-xr-x 0 0 0 3193 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/pathbrowser.py + - -rwxr-xr-x 0 0 0 3130 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/percolator.py + - -rwxr-xr-x 0 0 0 19864 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/pyparse.py + - -rwxr-xr-x 0 0 0 57605 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/pyshell.py + - -rwxr-xr-x 0 0 0 15075 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/query.py + - -rwxr-xr-x 0 0 0 6875 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/redirector.py + - -rwxr-xr-x 0 0 0 9799 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/replace.py + - -rwxr-xr-x 0 0 0 21076 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/rpc.py + - -rwxr-xr-x 0 0 0 21046 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/run.py + - -rwxr-xr-x 0 0 0 8273 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/runscript.py + - -rwxr-xr-x 0 0 0 4465 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/scrolledlist.py + - -rwxr-xr-x 0 0 0 5566 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/search.py + - -rwxr-xr-x 0 0 0 7856 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/searchbase.py + - -rwxr-xr-x 0 0 0 7362 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/searchengine.py + - -rwxr-xr-x 0 0 0 13585 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/sidebar.py + - -rwxr-xr-x 0 0 0 12825 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/squeezer.py + - -rwxr-xr-x 0 0 0 4454 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/stackviewer.py + - -rwxr-xr-x 0 0 0 1472 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/statusbar.py + - -rwxr-xr-x 0 0 0 6813 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/textview.py + - -rwxr-xr-x 0 0 0 6557 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/tooltip.py + - -rwxr-xr-x 0 0 0 16370 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/tree.py + - -rwxr-xr-x 0 0 0 11046 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/undo.py + - -rwxr-xr-x 0 0 0 721 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/util.py + - -rwxr-xr-x 0 0 0 2616 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/window.py + - -rwxr-xr-x 0 0 0 4203 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/zoomheight.py + - -rwxr-xr-x 0 0 0 2005 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/zzdummy.py + - -rwxr-xr-x 0 0 0 54904 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/imaplib.py + - -rwxr-xr-x 0 0 0 3808 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/imghdr.py + - -rwxr-xr-x 0 0 0 10536 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/imp.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/importlib/ + - -rwxr-xr-x 0 0 0 6061 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/importlib/__init__.py + - -rwxr-xr-x 0 0 0 40322 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/importlib/_bootstrap.py + - -rwxr-xr-x 0 0 0 64947 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/importlib/_bootstrap_external.py + - -rwxr-xr-x 0 0 0 1497 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/importlib/_common.py + - -rwxr-xr-x 0 0 0 14924 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/importlib/abc.py + - -rwxr-xr-x 0 0 0 844 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/importlib/machinery.py + - -rwxr-xr-x 0 0 0 18750 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/importlib/metadata.py + - -rwxr-xr-x 0 0 0 7209 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/importlib/resources.py + - -rwxr-xr-x 0 0 0 11321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/importlib/util.py + - -rwxr-xr-x 0 0 0 118235 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/inspect.py + - -rwxr-xr-x 0 0 0 3541 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/io.py + - -rwxr-xr-x 0 0 0 77867 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ipaddress.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/json/ + - -rwxr-xr-x 0 0 0 14019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/json/__init__.py + - -rwxr-xr-x 0 0 0 12472 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/json/decoder.py + - -rwxr-xr-x 0 0 0 16073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/json/encoder.py + - -rwxr-xr-x 0 0 0 2425 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/json/scanner.py + - -rwxr-xr-x 0 0 0 3339 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/json/tool.py + - -rwxr-xr-x 0 0 0 1047 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/keyword.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib-dynload/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib-dynload/.empty + - -rwxr-xr-x 0 0 0 24360 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib-dynload/_crypt.cpython-39-x86_64-linux-gnu.so + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/ + - -rwxr-xr-x 0 0 0 8696 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/Grammar.txt + - -rwxr-xr-x 0 0 0 15313 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/Grammar3.9.20.final.0.pickle + - -rwxr-xr-x 0 0 0 793 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/PatternGrammar.txt + - -rwxr-xr-x 0 0 0 1225 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/PatternGrammar3.9.20.final.0.pickle + - -rwxr-xr-x 0 0 0 163 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/__init__.py + - -rwxr-xr-x 0 0 0 67 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/__main__.py + - -rwxr-xr-x 0 0 0 6623 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/btm_matcher.py + - -rwxr-xr-x 0 0 0 9966 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/btm_utils.py + - -rwxr-xr-x 0 0 0 6690 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixer_base.py + - -rwxr-xr-x 0 0 0 15206 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixer_util.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/ + - -rwxr-xr-x 0 0 0 47 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/__init__.py + - -rwxr-xr-x 0 0 0 2346 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_apply.py + - -rwxr-xr-x 0 0 0 984 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_asserts.py + - -rwxr-xr-x 0 0 0 320 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_basestring.py + - -rwxr-xr-x 0 0 0 590 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_buffer.py + - -rwxr-xr-x 0 0 0 3760 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_dict.py + - -rwxr-xr-x 0 0 0 3344 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_except.py + - -rwxr-xr-x 0 0 0 979 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_exec.py + - -rwxr-xr-x 0 0 0 2048 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_execfile.py + - -rwxr-xr-x 0 0 0 2495 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_exitfunc.py + - -rwxr-xr-x 0 0 0 2765 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_filter.py + - -rwxr-xr-x 0 0 0 644 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_funcattrs.py + - -rwxr-xr-x 0 0 0 547 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_future.py + - -rwxr-xr-x 0 0 0 451 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_getcwdu.py + - -rwxr-xr-x 0 0 0 3196 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_has_key.py + - -rwxr-xr-x 0 0 0 4876 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_idioms.py + - -rwxr-xr-x 0 0 0 3256 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_import.py + - -rwxr-xr-x 0 0 0 5684 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_imports.py + - -rwxr-xr-x 0 0 0 289 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_imports2.py + - -rwxr-xr-x 0 0 0 708 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_input.py + - -rwxr-xr-x 0 0 0 1144 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_intern.py + - -rwxr-xr-x 0 0 0 1608 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_isinstance.py + - -rwxr-xr-x 0 0 0 1548 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_itertools.py + - -rwxr-xr-x 0 0 0 2086 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_itertools_imports.py + - -rwxr-xr-x 0 0 0 476 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_long.py + - -rwxr-xr-x 0 0 0 3640 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_map.py + - -rwxr-xr-x 0 0 0 8197 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_metaclass.py + - -rwxr-xr-x 0 0 0 606 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_methodattrs.py + - -rwxr-xr-x 0 0 0 571 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_ne.py + - -rwxr-xr-x 0 0 0 3174 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_next.py + - -rwxr-xr-x 0 0 0 591 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_nonzero.py + - -rwxr-xr-x 0 0 0 768 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_numliterals.py + - -rwxr-xr-x 0 0 0 3426 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_operator.py + - -rwxr-xr-x 0 0 0 1226 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_paren.py + - -rwxr-xr-x 0 0 0 2844 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_print.py + - -rwxr-xr-x 0 0 0 2926 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_raise.py + - -rwxr-xr-x 0 0 0 454 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_raw_input.py + - -rwxr-xr-x 0 0 0 837 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_reduce.py + - -rwxr-xr-x 0 0 0 1081 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_reload.py + - -rwxr-xr-x 0 0 0 2221 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_renames.py + - -rwxr-xr-x 0 0 0 613 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_repr.py + - -rwxr-xr-x 0 0 0 1697 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_set_literal.py + - -rwxr-xr-x 0 0 0 449 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_standarderror.py + - -rwxr-xr-x 0 0 0 1034 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_sys_exc.py + - -rwxr-xr-x 0 0 0 1582 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_throw.py + - -rwxr-xr-x 0 0 0 5565 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_tuple_params.py + - -rwxr-xr-x 0 0 0 1774 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_types.py + - -rwxr-xr-x 0 0 0 1256 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_unicode.py + - -rwxr-xr-x 0 0 0 8367 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_urllib.py + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_ws_comma.py + - -rwxr-xr-x 0 0 0 2694 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_xrange.py + - -rwxr-xr-x 0 0 0 689 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_xreadlines.py + - -rwxr-xr-x 0 0 0 1289 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_zip.py + - -rwxr-xr-x 0 0 0 11854 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/main.py + - -rwxr-xr-x 0 0 0 7054 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/patcomp.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/ + - -rwxr-xr-x 0 0 0 143 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/__init__.py + - -rwxr-xr-x 0 0 0 9642 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/conv.py + - -rwxr-xr-x 0 0 0 5969 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/driver.py + - -rwxr-xr-x 0 0 0 5533 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/grammar.py + - -rwxr-xr-x 0 0 0 1635 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/literals.py + - -rwxr-xr-x 0 0 0 8155 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/parse.py + - -rwxr-xr-x 0 0 0 13812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/pgen.py + - -rwxr-xr-x 0 0 0 1302 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/token.py + - -rwxr-xr-x 0 0 0 21119 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/tokenize.py + - -rwxr-xr-x 0 0 0 1305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pygram.py + - -rwxr-xr-x 0 0 0 27974 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pytree.py + - -rwxr-xr-x 0 0 0 27507 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/refactor.py + - -rwxr-xr-x 0 0 0 5461 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/linecache.py + - -rwxr-xr-x 0 0 0 78271 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/locale.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/logging/ + - -rwxr-xr-x 0 0 0 78600 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/logging/__init__.py + - -rwxr-xr-x 0 0 0 36379 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/logging/config.py + - -rwxr-xr-x 0 0 0 60423 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/logging/handlers.py + - -rwxr-xr-x 0 0 0 13231 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lzma.py + - -rwxr-xr-x 0 0 0 78794 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/mailbox.py + - -rwxr-xr-x 0 0 0 9116 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/mailcap.py + - -rwxr-xr-x 0 0 0 21564 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/mimetypes.py + - -rwxr-xr-x 0 0 0 24401 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/modulefinder.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/ + - -rwxr-xr-x 0 0 0 916 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/__init__.py + - -rwxr-xr-x 0 0 0 31685 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/connection.py + - -rwxr-xr-x 0 0 0 11257 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/context.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/dummy/ + - -rwxr-xr-x 0 0 0 3061 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/dummy/__init__.py + - -rwxr-xr-x 0 0 0 1598 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/dummy/connection.py + - -rwxr-xr-x 0 0 0 12142 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/forkserver.py + - -rwxr-xr-x 0 0 0 11626 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/heap.py + - -rwxr-xr-x 0 0 0 47303 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/managers.py + - -rwxr-xr-x 0 0 0 32555 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/pool.py + - -rwxr-xr-x 0 0 0 2377 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/popen_fork.py + - -rwxr-xr-x 0 0 0 2230 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/popen_forkserver.py + - -rwxr-xr-x 0 0 0 2029 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/popen_spawn_posix.py + - -rwxr-xr-x 0 0 0 4011 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/popen_spawn_win32.py + - -rwxr-xr-x 0 0 0 12000 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/process.py + - -rwxr-xr-x 0 0 0 12023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/queues.py + - -rwxr-xr-x 0 0 0 9512 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/reduction.py + - -rwxr-xr-x 0 0 0 5132 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/resource_sharer.py + - -rwxr-xr-x 0 0 0 8613 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/resource_tracker.py + - -rwxr-xr-x 0 0 0 18396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/shared_memory.py + - -rwxr-xr-x 0 0 0 6306 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/sharedctypes.py + - -rwxr-xr-x 0 0 0 9296 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/spawn.py + - -rwxr-xr-x 0 0 0 11610 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/synchronize.py + - -rwxr-xr-x 0 0 0 14006 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/util.py + - -rwxr-xr-x 0 0 0 5566 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/netrc.py + - -rwxr-xr-x 0 0 0 41023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/nntplib.py + - -rwxr-xr-x 0 0 0 27734 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ntpath.py + - -rwxr-xr-x 0 0 0 2887 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/nturl2path.py + - -rwxr-xr-x 0 0 0 10338 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/numbers.py + - -rwxr-xr-x 0 0 0 5660 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/opcode.py + - -rwxr-xr-x 0 0 0 10751 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/operator.py + - -rwxr-xr-x 0 0 0 60369 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/optparse.py + - -rwxr-xr-x 0 0 0 39065 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/os.py + - -rwxr-xr-x 0 0 0 54073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pathlib.py + - -rwxr-xr-x 0 0 0 63239 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pdb.py + - -rwxr-xr-x 0 0 0 64920 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pickle.py + - -rwxr-xr-x 0 0 0 93486 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pickletools.py + - -rwxr-xr-x 0 0 0 8916 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pipes.py + - -rwxr-xr-x 0 0 0 24276 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pkgutil.py + - -rwxr-xr-x 0 0 0 40602 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/platform.py + - -rwxr-xr-x 0 0 0 28248 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/plistlib.py + - -rwxr-xr-x 0 0 0 15198 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/poplib.py + - -rwxr-xr-x 0 0 0 15721 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/posixpath.py + - -rwxr-xr-x 0 0 0 22527 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pprint.py + - -rwxr-xr-x 0 0 0 22883 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/profile.py + - -rwxr-xr-x 0 0 0 29326 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pstats.py + - -rwxr-xr-x 0 0 0 4807 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pty.py + - -rwxr-xr-x 0 0 0 8148 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/py_compile.py + - -rwxr-xr-x 0 0 0 15255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pyclbr.py + - -rwxr-xr-x 0 0 0 109600 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pydoc.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pydoc_data/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pydoc_data/__init__.py + - -rwxr-xr-x 0 0 0 96 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pydoc_data/_pydoc.css + - -rwxr-xr-x 0 0 0 703325 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pydoc_data/topics.py + - -rwxr-xr-x 0 0 0 11496 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/queue.py + - -rwxr-xr-x 0 0 0 7268 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/quopri.py + - -rwxr-xr-x 0 0 0 31484 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/random.py + - -rwxr-xr-x 0 0 0 15861 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/re.py + - -rwxr-xr-x 0 0 0 5267 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/reprlib.py + - -rwxr-xr-x 0 0 0 7648 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/rlcompleter.py + - -rwxr-xr-x 0 0 0 13084 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/runpy.py + - -rwxr-xr-x 0 0 0 6442 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/sched.py + - -rwxr-xr-x 0 0 0 2036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/secrets.py + - -rwxr-xr-x 0 0 0 19536 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/selectors.py + - -rwxr-xr-x 0 0 0 8527 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/shelve.py + - -rwxr-xr-x 0 0 0 13501 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/shlex.py + - -rwxr-xr-x 0 0 0 53030 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/shutil.py + - -rwxr-xr-x 0 0 0 2438 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/signal.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/ + - -rwxr-xr-x 0 0 0 119 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/README.txt + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/ + - -rwxr-xr-x 0 0 0 6715 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/__pycache__/ + - -rwxr-xr-x 0 0 0 8117 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/__pycache__/__init__.cpython-39.pyc + - -rwxr-xr-x 0 0 0 44 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/override.py + - -rwxr-xr-x 0 0 0 151 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/distutils-precedence.pth + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/ + - -rwxr-xr-x 0 0 0 10669 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/AUTHORS.txt + - -rwxr-xr-x 0 0 0 4 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/INSTALLER + - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/LICENSE.txt + - -rwxr-xr-x 0 0 0 3626 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/METADATA + - -rwxr-xr-x 0 0 0 66872 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/RECORD + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/REQUESTED + - -rwxr-xr-x 0 0 0 91 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/WHEEL + - -rwxr-xr-x 0 0 0 243 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/direct_url.json + - -rwxr-xr-x 0 0 0 87 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/entry_points.txt + - -rwxr-xr-x 0 0 0 4 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/top_level.txt + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/ + - -rwxr-xr-x 0 0 0 357 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/__init__.py + - -rwxr-xr-x 0 0 0 854 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/__main__.py + - -rwxr-xr-x 0 0 0 1450 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/__pip-runner__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/ + - -rwxr-xr-x 0 0 0 513 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/__init__.py + - -rwxr-xr-x 0 0 0 10374 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/build_env.py + - -rwxr-xr-x 0 0 0 10369 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cache.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/ + - -rwxr-xr-x 0 0 0 132 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/__init__.py + - -rwxr-xr-x 0 0 0 6865 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/autocompletion.py + - -rwxr-xr-x 0 0 0 8667 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/base_command.py + - -rwxr-xr-x 0 0 0 30066 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/cmdoptions.py + - -rwxr-xr-x 0 0 0 774 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/command_context.py + - -rwxr-xr-x 0 0 0 5857 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/index_command.py + - -rwxr-xr-x 0 0 0 2817 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/main.py + - -rwxr-xr-x 0 0 0 4338 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/main_parser.py + - -rwxr-xr-x 0 0 0 10811 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/parser.py + - -rwxr-xr-x 0 0 0 2714 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/progress_bars.py + - -rwxr-xr-x 0 0 0 12250 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/req_command.py + - -rwxr-xr-x 0 0 0 5118 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/spinners.py + - -rwxr-xr-x 0 0 0 116 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/status_codes.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/ + - -rwxr-xr-x 0 0 0 3882 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/__init__.py + - -rwxr-xr-x 0 0 0 7944 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/cache.py + - -rwxr-xr-x 0 0 0 1684 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/check.py + - -rwxr-xr-x 0 0 0 4287 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/completion.py + - -rwxr-xr-x 0 0 0 9766 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/configuration.py + - -rwxr-xr-x 0 0 0 6797 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/debug.py + - -rwxr-xr-x 0 0 0 5273 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/download.py + - -rwxr-xr-x 0 0 0 3172 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/freeze.py + - -rwxr-xr-x 0 0 0 1703 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/hash.py + - -rwxr-xr-x 0 0 0 1132 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/help.py + - -rwxr-xr-x 0 0 0 4731 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/index.py + - -rwxr-xr-x 0 0 0 3189 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/inspect.py + - -rwxr-xr-x 0 0 0 28997 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/install.py + - -rwxr-xr-x 0 0 0 12771 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/list.py + - -rwxr-xr-x 0 0 0 5628 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/search.py + - -rwxr-xr-x 0 0 0 7507 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/show.py + - -rwxr-xr-x 0 0 0 3892 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/uninstall.py + - -rwxr-xr-x 0 0 0 6414 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/wheel.py + - -rwxr-xr-x 0 0 0 14006 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/configuration.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/ + - -rwxr-xr-x 0 0 0 858 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/__init__.py + - -rwxr-xr-x 0 0 0 1783 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/base.py + - -rwxr-xr-x 0 0 0 842 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/installed.py + - -rwxr-xr-x 0 0 0 6751 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/sdist.py + - -rwxr-xr-x 0 0 0 1317 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/wheel.py + - -rwxr-xr-x 0 0 0 25371 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/exceptions.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/ + - -rwxr-xr-x 0 0 0 30 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/__init__.py + - -rwxr-xr-x 0 0 0 16265 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/collector.py + - -rwxr-xr-x 0 0 0 37733 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/package_finder.py + - -rwxr-xr-x 0 0 0 8688 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/sources.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/ + - -rwxr-xr-x 0 0 0 14925 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/__init__.py + - -rwxr-xr-x 0 0 0 6009 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/_distutils.py + - -rwxr-xr-x 0 0 0 7724 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/_sysconfig.py + - -rwxr-xr-x 0 0 0 2556 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/base.py + - -rwxr-xr-x 0 0 0 340 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/main.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/ + - -rwxr-xr-x 0 0 0 4339 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/__init__.py + - -rwxr-xr-x 0 0 0 2644 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/_json.py + - -rwxr-xr-x 0 0 0 25298 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/base.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/ + - -rwxr-xr-x 0 0 0 135 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/__init__.py + - -rwxr-xr-x 0 0 0 1882 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/_compat.py + - -rwxr-xr-x 0 0 0 8275 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/_dists.py + - -rwxr-xr-x 0 0 0 7455 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/_envs.py + - -rwxr-xr-x 0 0 0 10542 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/pkg_resources.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/ + - -rwxr-xr-x 0 0 0 63 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/__init__.py + - -rwxr-xr-x 0 0 0 753 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/candidate.py + - -rwxr-xr-x 0 0 0 6578 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/direct_url.py + - -rwxr-xr-x 0 0 0 2486 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/format_control.py + - -rwxr-xr-x 0 0 0 1030 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/index.py + - -rwxr-xr-x 0 0 0 2818 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/installation_report.py + - -rwxr-xr-x 0 0 0 21034 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/link.py + - -rwxr-xr-x 0 0 0 575 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/scheme.py + - -rwxr-xr-x 0 0 0 4531 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/search_scope.py + - -rwxr-xr-x 0 0 0 2015 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/selection_prefs.py + - -rwxr-xr-x 0 0 0 4271 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/target_python.py + - -rwxr-xr-x 0 0 0 3601 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/wheel.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/ + - -rwxr-xr-x 0 0 0 50 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/__init__.py + - -rwxr-xr-x 0 0 0 20533 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/auth.py + - -rwxr-xr-x 0 0 0 3935 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/cache.py + - -rwxr-xr-x 0 0 0 6087 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/download.py + - -rwxr-xr-x 0 0 0 7638 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/lazy_wheel.py + - -rwxr-xr-x 0 0 0 18741 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/session.py + - -rwxr-xr-x 0 0 0 4073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/utils.py + - -rwxr-xr-x 0 0 0 1838 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/xmlrpc.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/__init__.py + - -rwxr-xr-x 0 0 0 4774 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/build_tracker.py + - -rwxr-xr-x 0 0 0 1422 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/metadata.py + - -rwxr-xr-x 0 0 0 1474 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/metadata_editable.py + - -rwxr-xr-x 0 0 0 2190 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/metadata_legacy.py + - -rwxr-xr-x 0 0 0 1075 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/wheel.py + - -rwxr-xr-x 0 0 0 1417 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/wheel_editable.py + - -rwxr-xr-x 0 0 0 3045 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/wheel_legacy.py + - -rwxr-xr-x 0 0 0 5087 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/check.py + - -rwxr-xr-x 0 0 0 9864 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/freeze.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/install/ + - -rwxr-xr-x 0 0 0 51 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/install/__init__.py + - -rwxr-xr-x 0 0 0 1283 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/install/editable_legacy.py + - -rwxr-xr-x 0 0 0 27197 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/install/wheel.py + - -rwxr-xr-x 0 0 0 28118 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/prepare.py + - -rwxr-xr-x 0 0 0 7152 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/pyproject.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/ + - -rwxr-xr-x 0 0 0 2653 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/__init__.py + - -rwxr-xr-x 0 0 0 18412 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/constructors.py + - -rwxr-xr-x 0 0 0 17687 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/req_file.py + - -rwxr-xr-x 0 0 0 35054 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/req_install.py + - -rwxr-xr-x 0 0 0 2858 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/req_set.py + - -rwxr-xr-x 0 0 0 23853 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/req_uninstall.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/__init__.py + - -rwxr-xr-x 0 0 0 583 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/base.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/legacy/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/legacy/__init__.py + - -rwxr-xr-x 0 0 0 24068 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__init__.py + - -rwxr-xr-x 0 0 0 5023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/base.py + - -rwxr-xr-x 0 0 0 19823 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/candidates.py + - -rwxr-xr-x 0 0 0 32395 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/factory.py + - -rwxr-xr-x 0 0 0 6383 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py + - -rwxr-xr-x 0 0 0 9935 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/provider.py + - -rwxr-xr-x 0 0 0 3100 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/reporter.py + - -rwxr-xr-x 0 0 0 8065 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/requirements.py + - -rwxr-xr-x 0 0 0 12592 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/resolver.py + - -rwxr-xr-x 0 0 0 8356 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/self_outdated_check.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/__init__.py + - -rwxr-xr-x 0 0 0 3350 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/_jaraco_text.py + - -rwxr-xr-x 0 0 0 1015 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/_log.py + - -rwxr-xr-x 0 0 0 1665 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/appdirs.py + - -rwxr-xr-x 0 0 0 2399 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/compat.py + - -rwxr-xr-x 0 0 0 5377 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/compatibility_tags.py + - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/datetime.py + - -rwxr-xr-x 0 0 0 3707 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/deprecation.py + - -rwxr-xr-x 0 0 0 3196 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/direct_url_helpers.py + - -rwxr-xr-x 0 0 0 2463 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/egg_link.py + - -rwxr-xr-x 0 0 0 1169 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/encoding.py + - -rwxr-xr-x 0 0 0 3064 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/entrypoints.py + - -rwxr-xr-x 0 0 0 5122 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/filesystem.py + - -rwxr-xr-x 0 0 0 716 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/filetypes.py + - -rwxr-xr-x 0 0 0 3166 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/glibc.py + - -rwxr-xr-x 0 0 0 3113 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/glibc.py.orig + - -rwxr-xr-x 0 0 0 4951 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/hashes.py + - -rwxr-xr-x 0 0 0 11602 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/logging.py + - -rwxr-xr-x 0 0 0 23814 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/misc.py + - -rwxr-xr-x 0 0 0 2108 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/packaging.py + - -rwxr-xr-x 0 0 0 4435 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/setuptools_build.py + - -rwxr-xr-x 0 0 0 8988 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/subprocess.py + - -rwxr-xr-x 0 0 0 9312 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/temp_dir.py + - -rwxr-xr-x 0 0 0 11951 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/unpacking.py + - -rwxr-xr-x 0 0 0 1599 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/urls.py + - -rwxr-xr-x 0 0 0 3456 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/virtualenv.py + - -rwxr-xr-x 0 0 0 4494 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/wheel.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/ + - -rwxr-xr-x 0 0 0 596 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/__init__.py + - -rwxr-xr-x 0 0 0 3528 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/bazaar.py + - -rwxr-xr-x 0 0 0 18177 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/git.py + - -rwxr-xr-x 0 0 0 5249 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/mercurial.py + - -rwxr-xr-x 0 0 0 11735 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/subversion.py + - -rwxr-xr-x 0 0 0 22440 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/versioncontrol.py + - -rwxr-xr-x 0 0 0 11799 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/wheel_builder.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/ + - -rwxr-xr-x 0 0 0 4850 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/ + - -rwxr-xr-x 0 0 0 676 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__init__.py + - -rwxr-xr-x 0 0 0 1737 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/_cmd.py + - -rwxr-xr-x 0 0 0 6355 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/adapter.py + - -rwxr-xr-x 0 0 0 1952 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/cache.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/ + - -rwxr-xr-x 0 0 0 303 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/__init__.py + - -rwxr-xr-x 0 0 0 5406 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py + - -rwxr-xr-x 0 0 0 1386 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py + - -rwxr-xr-x 0 0 0 18575 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/controller.py + - -rwxr-xr-x 0 0 0 4292 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/filewrapper.py + - -rwxr-xr-x 0 0 0 4834 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/heuristics.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/py.typed + - -rwxr-xr-x 0 0 0 5163 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/serialize.py + - -rwxr-xr-x 0 0 0 1417 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/wrapper.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/ + - -rwxr-xr-x 0 0 0 94 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/__init__.py + - -rwxr-xr-x 0 0 0 255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/__main__.py + - -rwxr-xr-x 0 0 0 292541 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/cacert.pem + - -rwxr-xr-x 0 0 0 4486 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/core.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/py.typed + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/ + - -rwxr-xr-x 0 0 0 625 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/__init__.py + - -rwxr-xr-x 0 0 0 41487 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/compat.py + - -rwxr-xr-x 0 0 0 51965 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/database.py + - -rwxr-xr-x 0 0 0 20797 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/index.py + - -rwxr-xr-x 0 0 0 51767 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/locators.py + - -rwxr-xr-x 0 0 0 14168 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/manifest.py + - -rwxr-xr-x 0 0 0 5268 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/markers.py + - -rwxr-xr-x 0 0 0 39693 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/metadata.py + - -rwxr-xr-x 0 0 0 10820 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/resources.py + - -rwxr-xr-x 0 0 0 18780 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/scripts.py + - -rwxr-xr-x 0 0 0 97792 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/t32.exe + - -rwxr-xr-x 0 0 0 182784 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/t64-arm.exe + - -rwxr-xr-x 0 0 0 108032 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/t64.exe + - -rwxr-xr-x 0 0 0 67530 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/util.py + - -rwxr-xr-x 0 0 0 23747 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/version.py + - -rwxr-xr-x 0 0 0 91648 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/w32.exe + - -rwxr-xr-x 0 0 0 168448 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/w64-arm.exe + - -rwxr-xr-x 0 0 0 101888 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/w64.exe + - -rwxr-xr-x 0 0 0 43958 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/wheel.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/ + - -rwxr-xr-x 0 0 0 981 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/__init__.py + - -rwxr-xr-x 0 0 0 64 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/__main__.py + - -rwxr-xr-x 0 0 0 49430 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/distro.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/py.typed + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/ + - -rwxr-xr-x 0 0 0 849 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/__init__.py + - -rwxr-xr-x 0 0 0 3426 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/codec.py + - -rwxr-xr-x 0 0 0 321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/compat.py + - -rwxr-xr-x 0 0 0 12663 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/core.py + - -rwxr-xr-x 0 0 0 78320 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/idnadata.py + - -rwxr-xr-x 0 0 0 1881 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/intranges.py + - -rwxr-xr-x 0 0 0 21 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/package_data.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/py.typed + - -rwxr-xr-x 0 0 0 206503 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/uts46data.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/ + - -rwxr-xr-x 0 0 0 1077 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/__init__.py + - -rwxr-xr-x 0 0 0 1081 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/exceptions.py + - -rwxr-xr-x 0 0 0 5629 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/ext.py + - -rwxr-xr-x 0 0 0 33175 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/fallback.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/ + - -rwxr-xr-x 0 0 0 496 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/__init__.py + - -rwxr-xr-x 0 0 0 3282 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_elffile.py + - -rwxr-xr-x 0 0 0 9586 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_manylinux.py + - -rwxr-xr-x 0 0 0 2694 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_musllinux.py + - -rwxr-xr-x 0 0 0 10236 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_parser.py + - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_structures.py + - -rwxr-xr-x 0 0 0 5273 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_tokenizer.py + - -rwxr-xr-x 0 0 0 10671 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/markers.py + - -rwxr-xr-x 0 0 0 32349 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/metadata.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/py.typed + - -rwxr-xr-x 0 0 0 2947 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/requirements.py + - -rwxr-xr-x 0 0 0 39738 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/specifiers.py + - -rwxr-xr-x 0 0 0 18883 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/tags.py + - -rwxr-xr-x 0 0 0 5287 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/utils.py + - -rwxr-xr-x 0 0 0 16210 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/version.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pkg_resources/ + - -rwxr-xr-x 0 0 0 108869 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pkg_resources/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/ + - -rwxr-xr-x 0 0 0 22285 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/__init__.py + - -rwxr-xr-x 0 0 0 1505 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/__main__.py + - -rwxr-xr-x 0 0 0 7681 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/android.py + - -rwxr-xr-x 0 0 0 8996 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/api.py + - -rwxr-xr-x 0 0 0 5580 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/macos.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/py.typed + - -rwxr-xr-x 0 0 0 10643 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/unix.py + - -rwxr-xr-x 0 0 0 411 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/version.py + - -rwxr-xr-x 0 0 0 10125 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/windows.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/ + - -rwxr-xr-x 0 0 0 2983 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/__init__.py + - -rwxr-xr-x 0 0 0 353 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/__main__.py + - -rwxr-xr-x 0 0 0 23650 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/cmdline.py + - -rwxr-xr-x 0 0 0 1697 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/console.py + - -rwxr-xr-x 0 0 0 1938 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/filter.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/filters/ + - -rwxr-xr-x 0 0 0 40386 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/filters/__init__.py + - -rwxr-xr-x 0 0 0 4178 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatter.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/ + - -rwxr-xr-x 0 0 0 5431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/__init__.py + - -rwxr-xr-x 0 0 0 4176 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/_mapping.py + - -rwxr-xr-x 0 0 0 3314 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/bbcode.py + - -rwxr-xr-x 0 0 0 5094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/groff.py + - -rwxr-xr-x 0 0 0 35676 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/html.py + - -rwxr-xr-x 0 0 0 23140 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/img.py + - -rwxr-xr-x 0 0 0 4981 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/irc.py + - -rwxr-xr-x 0 0 0 19351 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/latex.py + - -rwxr-xr-x 0 0 0 5073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/other.py + - -rwxr-xr-x 0 0 0 2212 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py + - -rwxr-xr-x 0 0 0 5014 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/rtf.py + - -rwxr-xr-x 0 0 0 7335 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/svg.py + - -rwxr-xr-x 0 0 0 4674 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/terminal.py + - -rwxr-xr-x 0 0 0 11753 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/terminal256.py + - -rwxr-xr-x 0 0 0 35284 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexer.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexers/ + - -rwxr-xr-x 0 0 0 12161 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexers/__init__.py + - -rwxr-xr-x 0 0 0 74926 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexers/_mapping.py + - -rwxr-xr-x 0 0 0 53448 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexers/python.py + - -rwxr-xr-x 0 0 0 986 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/modeline.py + - -rwxr-xr-x 0 0 0 2591 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/plugin.py + - -rwxr-xr-x 0 0 0 3072 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/regexopt.py + - -rwxr-xr-x 0 0 0 3092 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/scanner.py + - -rwxr-xr-x 0 0 0 7770 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/sphinxext.py + - -rwxr-xr-x 0 0 0 6420 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/style.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/styles/ + - -rwxr-xr-x 0 0 0 2042 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/styles/__init__.py + - -rwxr-xr-x 0 0 0 3251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/styles/_mapping.py + - -rwxr-xr-x 0 0 0 6226 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/token.py + - -rwxr-xr-x 0 0 0 63223 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/unistring.py + - -rwxr-xr-x 0 0 0 10230 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/util.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/ + - -rwxr-xr-x 0 0 0 491 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/__init__.py + - -rwxr-xr-x 0 0 0 138 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_compat.py + - -rwxr-xr-x 0 0 0 11920 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_impl.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_in_process/ + - -rwxr-xr-x 0 0 0 546 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py + - -rwxr-xr-x 0 0 0 10927 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/ + - -rwxr-xr-x 0 0 0 5057 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/__init__.py + - -rwxr-xr-x 0 0 0 435 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/__version__.py + - -rwxr-xr-x 0 0 0 1495 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/_internal_utils.py + - -rwxr-xr-x 0 0 0 27607 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py + - -rwxr-xr-x 0 0 0 6449 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/api.py + - -rwxr-xr-x 0 0 0 10186 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/auth.py + - -rwxr-xr-x 0 0 0 575 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/certs.py + - -rwxr-xr-x 0 0 0 1485 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/compat.py + - -rwxr-xr-x 0 0 0 18590 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/cookies.py + - -rwxr-xr-x 0 0 0 4272 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/exceptions.py + - -rwxr-xr-x 0 0 0 3813 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/help.py + - -rwxr-xr-x 0 0 0 733 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/hooks.py + - -rwxr-xr-x 0 0 0 35483 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/models.py + - -rwxr-xr-x 0 0 0 1057 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/packages.py + - -rwxr-xr-x 0 0 0 30495 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py + - -rwxr-xr-x 0 0 0 4322 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/status_codes.py + - -rwxr-xr-x 0 0 0 2912 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/structures.py + - -rwxr-xr-x 0 0 0 33631 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/utils.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/ + - -rwxr-xr-x 0 0 0 537 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/__init__.py + - -rwxr-xr-x 0 0 0 156 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py + - -rwxr-xr-x 0 0 0 5871 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/providers.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/py.typed + - -rwxr-xr-x 0 0 0 1601 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/reporters.py + - -rwxr-xr-x 0 0 0 20511 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/resolvers.py + - -rwxr-xr-x 0 0 0 4963 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/structs.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/ + - -rwxr-xr-x 0 0 0 6090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/__init__.py + - -rwxr-xr-x 0 0 0 8477 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/__main__.py + - -rwxr-xr-x 0 0 0 10209 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_cell_widths.py + - -rwxr-xr-x 0 0 0 140235 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_emoji_codes.py + - -rwxr-xr-x 0 0 0 1064 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_emoji_replace.py + - -rwxr-xr-x 0 0 0 2128 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_export_format.py + - -rwxr-xr-x 0 0 0 265 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_extension.py + - -rwxr-xr-x 0 0 0 799 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_fileno.py + - -rwxr-xr-x 0 0 0 9695 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_inspect.py + - -rwxr-xr-x 0 0 0 3225 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_log_render.py + - -rwxr-xr-x 0 0 0 1236 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_loop.py + - -rwxr-xr-x 0 0 0 1387 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_null_file.py + - -rwxr-xr-x 0 0 0 7063 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_palettes.py + - -rwxr-xr-x 0 0 0 423 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_pick.py + - -rwxr-xr-x 0 0 0 5471 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_ratio.py + - -rwxr-xr-x 0 0 0 19919 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_spinners.py + - -rwxr-xr-x 0 0 0 351 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_stack.py + - -rwxr-xr-x 0 0 0 417 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_timer.py + - -rwxr-xr-x 0 0 0 22820 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_win32_console.py + - -rwxr-xr-x 0 0 0 1925 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_windows.py + - -rwxr-xr-x 0 0 0 2783 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_windows_renderer.py + - -rwxr-xr-x 0 0 0 3404 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_wrap.py + - -rwxr-xr-x 0 0 0 890 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/abc.py + - -rwxr-xr-x 0 0 0 10368 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/align.py + - -rwxr-xr-x 0 0 0 6906 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/ansi.py + - -rwxr-xr-x 0 0 0 3263 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/bar.py + - -rwxr-xr-x 0 0 0 10831 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/box.py + - -rwxr-xr-x 0 0 0 4780 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/cells.py + - -rwxr-xr-x 0 0 0 18223 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/color.py + - -rwxr-xr-x 0 0 0 1054 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/color_triplet.py + - -rwxr-xr-x 0 0 0 7131 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/columns.py + - -rwxr-xr-x 0 0 0 99173 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/console.py + - -rwxr-xr-x 0 0 0 1288 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/constrain.py + - -rwxr-xr-x 0 0 0 5502 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/containers.py + - -rwxr-xr-x 0 0 0 6630 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/control.py + - -rwxr-xr-x 0 0 0 8082 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/default_styles.py + - -rwxr-xr-x 0 0 0 972 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/diagnose.py + - -rwxr-xr-x 0 0 0 2501 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/emoji.py + - -rwxr-xr-x 0 0 0 642 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/errors.py + - -rwxr-xr-x 0 0 0 1683 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/file_proxy.py + - -rwxr-xr-x 0 0 0 2508 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/filesize.py + - -rwxr-xr-x 0 0 0 9585 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/highlighter.py + - -rwxr-xr-x 0 0 0 5031 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/json.py + - -rwxr-xr-x 0 0 0 3252 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/jupyter.py + - -rwxr-xr-x 0 0 0 14004 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/layout.py + - -rwxr-xr-x 0 0 0 14271 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/live.py + - -rwxr-xr-x 0 0 0 3666 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/live_render.py + - -rwxr-xr-x 0 0 0 11903 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/logging.py + - -rwxr-xr-x 0 0 0 8451 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/markup.py + - -rwxr-xr-x 0 0 0 5305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/measure.py + - -rwxr-xr-x 0 0 0 4970 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/padding.py + - -rwxr-xr-x 0 0 0 828 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/pager.py + - -rwxr-xr-x 0 0 0 3396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/palette.py + - -rwxr-xr-x 0 0 0 10705 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/panel.py + - -rwxr-xr-x 0 0 0 35848 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/pretty.py + - -rwxr-xr-x 0 0 0 59715 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/progress.py + - -rwxr-xr-x 0 0 0 8164 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/progress_bar.py + - -rwxr-xr-x 0 0 0 11304 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/prompt.py + - -rwxr-xr-x 0 0 0 1391 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/protocol.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/py.typed + - -rwxr-xr-x 0 0 0 166 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/region.py + - -rwxr-xr-x 0 0 0 4431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/repr.py + - -rwxr-xr-x 0 0 0 4602 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/rule.py + - -rwxr-xr-x 0 0 0 2843 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/scope.py + - -rwxr-xr-x 0 0 0 1591 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/screen.py + - -rwxr-xr-x 0 0 0 24246 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/segment.py + - -rwxr-xr-x 0 0 0 4339 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/spinner.py + - -rwxr-xr-x 0 0 0 4424 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/status.py + - -rwxr-xr-x 0 0 0 27073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/style.py + - -rwxr-xr-x 0 0 0 1258 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/styled.py + - -rwxr-xr-x 0 0 0 35475 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/syntax.py + - -rwxr-xr-x 0 0 0 39680 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/table.py + - -rwxr-xr-x 0 0 0 3370 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/terminal_theme.py + - -rwxr-xr-x 0 0 0 47312 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/text.py + - -rwxr-xr-x 0 0 0 3777 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/theme.py + - -rwxr-xr-x 0 0 0 102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/themes.py + - -rwxr-xr-x 0 0 0 29601 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/traceback.py + - -rwxr-xr-x 0 0 0 9167 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/tree.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/ + - -rwxr-xr-x 0 0 0 20518 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/__init__.py + - -rwxr-xr-x 0 0 0 3551 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/_asyncio.py + - -rwxr-xr-x 0 0 0 2179 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/_utils.py + - -rwxr-xr-x 0 0 0 1682 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/after.py + - -rwxr-xr-x 0 0 0 1562 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/before.py + - -rwxr-xr-x 0 0 0 2372 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/before_sleep.py + - -rwxr-xr-x 0 0 0 1383 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/nap.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/py.typed + - -rwxr-xr-x 0 0 0 8746 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/retry.py + - -rwxr-xr-x 0 0 0 3086 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/stop.py + - -rwxr-xr-x 0 0 0 2142 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/tornadoweb.py + - -rwxr-xr-x 0 0 0 8024 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/wait.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/ + - -rwxr-xr-x 0 0 0 396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/__init__.py + - -rwxr-xr-x 0 0 0 22633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/_parser.py + - -rwxr-xr-x 0 0 0 2943 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/_re.py + - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/_types.py + - -rwxr-xr-x 0 0 0 26 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/py.typed + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/truststore/ + - -rwxr-xr-x 0 0 0 403 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/truststore/__init__.py + - -rwxr-xr-x 0 0 0 10461 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/truststore/_api.py + - -rwxr-xr-x 0 0 0 17608 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/truststore/_macos.py + - -rwxr-xr-x 0 0 0 2324 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/truststore/_openssl.py + - -rwxr-xr-x 0 0 0 1130 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/truststore/_ssl_constants.py + - -rwxr-xr-x 0 0 0 17891 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/truststore/_windows.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/truststore/py.typed + - -rwxr-xr-x 0 0 0 122341 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/typing_extensions.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/ + - -rwxr-xr-x 0 0 0 3333 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/__init__.py + - -rwxr-xr-x 0 0 0 11372 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/_collections.py + - -rwxr-xr-x 0 0 0 64 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/_version.py + - -rwxr-xr-x 0 0 0 20300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/connection.py + - -rwxr-xr-x 0 0 0 40285 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/__init__.py + - -rwxr-xr-x 0 0 0 957 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py + - -rwxr-xr-x 0 0 0 17632 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py + - -rwxr-xr-x 0 0 0 13922 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py + - -rwxr-xr-x 0 0 0 11036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/appengine.py + - -rwxr-xr-x 0 0 0 4528 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py + - -rwxr-xr-x 0 0 0 17081 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py + - -rwxr-xr-x 0 0 0 34446 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/securetransport.py + - -rwxr-xr-x 0 0 0 7097 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/socks.py + - -rwxr-xr-x 0 0 0 8217 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/exceptions.py + - -rwxr-xr-x 0 0 0 8579 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/fields.py + - -rwxr-xr-x 0 0 0 2440 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/filepost.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py + - -rwxr-xr-x 0 0 0 1417 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py + - -rwxr-xr-x 0 0 0 5343 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py + - -rwxr-xr-x 0 0 0 34665 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/six.py + - -rwxr-xr-x 0 0 0 19990 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/poolmanager.py + - -rwxr-xr-x 0 0 0 6691 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/request.py + - -rwxr-xr-x 0 0 0 30641 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/response.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ + - -rwxr-xr-x 0 0 0 1155 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/__init__.py + - -rwxr-xr-x 0 0 0 4901 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/connection.py + - -rwxr-xr-x 0 0 0 1605 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/proxy.py + - -rwxr-xr-x 0 0 0 498 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/queue.py + - -rwxr-xr-x 0 0 0 3997 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/request.py + - -rwxr-xr-x 0 0 0 3510 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/response.py + - -rwxr-xr-x 0 0 0 22013 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/retry.py + - -rwxr-xr-x 0 0 0 17177 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_.py + - -rwxr-xr-x 0 0 0 5758 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py + - -rwxr-xr-x 0 0 0 6895 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssltransport.py + - -rwxr-xr-x 0 0 0 10168 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/timeout.py + - -rwxr-xr-x 0 0 0 14296 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/url.py + - -rwxr-xr-x 0 0 0 5403 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/wait.py + - -rwxr-xr-x 0 0 0 346 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/vendor.txt + - -rwxr-xr-x 0 0 0 286 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/py.typed + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/ + - -rwxr-xr-x 0 0 0 124456 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/backports/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/backports/__init__.py + - -rwxr-xr-x 0 0 0 106920 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/backports/tarfile.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/ + - -rwxr-xr-x 0 0 0 506 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py + - -rwxr-xr-x 0 0 0 4504 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_adapters.py + - -rwxr-xr-x 0 0 0 5457 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_common.py + - -rwxr-xr-x 0 0 0 2925 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_compat.py + - -rwxr-xr-x 0 0 0 884 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py + - -rwxr-xr-x 0 0 0 3481 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_legacy.py + - -rwxr-xr-x 0 0 0 5140 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/abc.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/py.typed + - -rwxr-xr-x 0 0 0 3581 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/readers.py + - -rwxr-xr-x 0 0 0 2576 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/simple.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/__init__.py + - -rwxr-xr-x 0 0 0 9573 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/context.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/functools/ + - -rwxr-xr-x 0 0 0 16705 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/functools/__init__.py + - -rwxr-xr-x 0 0 0 3982 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/functools/__init__.pyi + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/functools/py.typed + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/text/ + - -rwxr-xr-x 0 0 0 15526 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/text/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/ + - -rwxr-xr-x 0 0 0 149 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/__init__.py + - -rwxr-xr-x 0 0 0 43 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/__init__.pyi + - -rwxr-xr-x 0 0 0 143053 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/more.py + - -rwxr-xr-x 0 0 0 21044 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/more.pyi + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/py.typed + - -rwxr-xr-x 0 0 0 27548 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/recipes.py + - -rwxr-xr-x 0 0 0 4436 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/recipes.pyi + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/ + - -rwxr-xr-x 0 0 0 496 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/__init__.py + - -rwxr-xr-x 0 0 0 3266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_elffile.py + - -rwxr-xr-x 0 0 0 9590 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_manylinux.py + - -rwxr-xr-x 0 0 0 2676 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_musllinux.py + - -rwxr-xr-x 0 0 0 10347 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_parser.py + - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_structures.py + - -rwxr-xr-x 0 0 0 5292 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_tokenizer.py + - -rwxr-xr-x 0 0 0 8208 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/markers.py + - -rwxr-xr-x 0 0 0 33036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/metadata.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/py.typed + - -rwxr-xr-x 0 0 0 2933 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/requirements.py + - -rwxr-xr-x 0 0 0 39784 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/specifiers.py + - -rwxr-xr-x 0 0 0 18950 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/tags.py + - -rwxr-xr-x 0 0 0 5268 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/utils.py + - -rwxr-xr-x 0 0 0 16236 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/version.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/ + - -rwxr-xr-x 0 0 0 12806 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/__init__.py + - -rwxr-xr-x 0 0 0 1164 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/__main__.py + - -rwxr-xr-x 0 0 0 4068 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/android.py + - -rwxr-xr-x 0 0 0 4910 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/api.py + - -rwxr-xr-x 0 0 0 2655 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/macos.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/py.typed + - -rwxr-xr-x 0 0 0 6911 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/unix.py + - -rwxr-xr-x 0 0 0 160 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/version.py + - -rwxr-xr-x 0 0 0 6596 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/windows.py + - -rwxr-xr-x 0 0 0 8425 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/zipp.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/extern/ + - -rwxr-xr-x 0 0 0 3123 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/extern/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/ + - -rwxr-xr-x 0 0 0 4 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/INSTALLER + - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/LICENSE + - -rwxr-xr-x 0 0 0 5817 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/METADATA + - -rwxr-xr-x 0 0 0 43922 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/RECORD + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/REQUESTED + - -rwxr-xr-x 0 0 0 91 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/WHEEL + - -rwxr-xr-x 0 0 0 250 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/direct_url.json + - -rwxr-xr-x 0 0 0 2733 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/entry_points.txt + - -rwxr-xr-x 0 0 0 41 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/top_level.txt + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/ + - -rwxr-xr-x 0 0 0 8950 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/__init__.py + - -rwxr-xr-x 0 0 0 9826 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_core_metadata.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/ + - -rwxr-xr-x 0 0 0 359 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/__init__.py + - -rwxr-xr-x 0 0 0 5440 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_collections.py + - -rwxr-xr-x 0 0 0 1771 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_functools.py + - -rwxr-xr-x 0 0 0 1453 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_itertools.py + - -rwxr-xr-x 0 0 0 42 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_log.py + - -rwxr-xr-x 0 0 0 239 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_macos_compat.py + - -rwxr-xr-x 0 0 0 2410 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_modified.py + - -rwxr-xr-x 0 0 0 19641 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_msvccompiler.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/ + - -rwxr-xr-x 0 0 0 496 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/__init__.py + - -rwxr-xr-x 0 0 0 3266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/_elffile.py + - -rwxr-xr-x 0 0 0 9590 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/_manylinux.py + - -rwxr-xr-x 0 0 0 2676 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/_musllinux.py + - -rwxr-xr-x 0 0 0 10347 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/_parser.py + - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/_structures.py + - -rwxr-xr-x 0 0 0 5292 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/_tokenizer.py + - -rwxr-xr-x 0 0 0 8208 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/markers.py + - -rwxr-xr-x 0 0 0 33036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/metadata.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/py.typed + - -rwxr-xr-x 0 0 0 2933 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/requirements.py + - -rwxr-xr-x 0 0 0 39784 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/specifiers.py + - -rwxr-xr-x 0 0 0 18950 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/tags.py + - -rwxr-xr-x 0 0 0 5268 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/utils.py + - -rwxr-xr-x 0 0 0 16236 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/version.py + - -rwxr-xr-x 0 0 0 8551 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/archive_util.py + - -rwxr-xr-x 0 0 0 14674 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/bcppcompiler.py + - -rwxr-xr-x 0 0 0 48935 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/ccompiler.py + - -rwxr-xr-x 0 0 0 17877 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/cmd.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/ + - -rwxr-xr-x 0 0 0 416 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/__init__.py + - -rwxr-xr-x 0 0 0 1609 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/_framework_compat.py + - -rwxr-xr-x 0 0 0 5354 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/bdist.py + - -rwxr-xr-x 0 0 0 4582 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/bdist_dumb.py + - -rwxr-xr-x 0 0 0 21686 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/bdist_rpm.py + - -rwxr-xr-x 0 0 0 5729 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build.py + - -rwxr-xr-x 0 0 0 7684 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build_clib.py + - -rwxr-xr-x 0 0 0 31850 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build_ext.py + - -rwxr-xr-x 0 0 0 16552 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build_py.py + - -rwxr-xr-x 0 0 0 5534 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build_scripts.py + - -rwxr-xr-x 0 0 0 4928 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/check.py + - -rwxr-xr-x 0 0 0 2595 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/clean.py + - -rwxr-xr-x 0 0 0 13008 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/config.py + - -rwxr-xr-x 0 0 0 30079 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install.py + - -rwxr-xr-x 0 0 0 2764 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_data.py + - -rwxr-xr-x 0 0 0 2788 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_egg_info.py + - -rwxr-xr-x 0 0 0 1184 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_headers.py + - -rwxr-xr-x 0 0 0 8410 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_lib.py + - -rwxr-xr-x 0 0 0 1937 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_scripts.py + - -rwxr-xr-x 0 0 0 11793 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/register.py + - -rwxr-xr-x 0 0 0 19196 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/sdist.py + - -rwxr-xr-x 0 0 0 7493 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/upload.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/compat/ + - -rwxr-xr-x 0 0 0 429 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/compat/__init__.py + - -rwxr-xr-x 0 0 0 790 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/compat/py38.py + - -rwxr-xr-x 0 0 0 1964 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/compat/py39.py + - -rwxr-xr-x 0 0 0 5226 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/config.py + - -rwxr-xr-x 0 0 0 9318 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/core.py + - -rwxr-xr-x 0 0 0 11954 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/cygwinccompiler.py + - -rwxr-xr-x 0 0 0 139 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/debug.py + - -rwxr-xr-x 0 0 0 349 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/dep_util.py + - -rwxr-xr-x 0 0 0 8007 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/dir_util.py + - -rwxr-xr-x 0 0 0 50977 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/dist.py + - -rwxr-xr-x 0 0 0 3589 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/errors.py + - -rwxr-xr-x 0 0 0 10206 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/extension.py + - -rwxr-xr-x 0 0 0 17822 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/fancy_getopt.py + - -rwxr-xr-x 0 0 0 7944 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/file_util.py + - -rwxr-xr-x 0 0 0 13654 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/filelist.py + - -rwxr-xr-x 0 0 0 1200 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/log.py + - -rwxr-xr-x 0 0 0 30129 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/msvc9compiler.py + - -rwxr-xr-x 0 0 0 23451 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/msvccompiler.py + - -rwxr-xr-x 0 0 0 3626 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/spawn.py + - -rwxr-xr-x 0 0 0 18747 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py + - -rwxr-xr-x 0 0 0 12098 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/text_file.py + - -rwxr-xr-x 0 0 0 15698 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/unixccompiler.py + - -rwxr-xr-x 0 0 0 18093 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/util.py + - -rwxr-xr-x 0 0 0 12634 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/version.py + - -rwxr-xr-x 0 0 0 5205 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/versionpredicate.py + - -rwxr-xr-x 0 0 0 6589 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/zosccompiler.py + - -rwxr-xr-x 0 0 0 2333 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_entry_points.py + - -rwxr-xr-x 0 0 0 2443 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_imp.py + - -rwxr-xr-x 0 0 0 1454 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_importlib.py + - -rwxr-xr-x 0 0 0 675 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_itertools.py + - -rwxr-xr-x 0 0 0 4567 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_normalization.py + - -rwxr-xr-x 0 0 0 1178 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_path.py + - -rwxr-xr-x 0 0 0 1112 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_reqs.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/backports/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/backports/__init__.py + - -rwxr-xr-x 0 0 0 106920 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/backports/tarfile.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/ + - -rwxr-xr-x 0 0 0 26498 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/__init__.py + - -rwxr-xr-x 0 0 0 2454 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py + - -rwxr-xr-x 0 0 0 743 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_collections.py + - -rwxr-xr-x 0 0 0 1859 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_compat.py + - -rwxr-xr-x 0 0 0 2895 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_functools.py + - -rwxr-xr-x 0 0 0 2068 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py + - -rwxr-xr-x 0 0 0 1165 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_meta.py + - -rwxr-xr-x 0 0 0 1098 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_py39compat.py + - -rwxr-xr-x 0 0 0 2166 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_text.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/py.typed + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/ + - -rwxr-xr-x 0 0 0 506 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/__init__.py + - -rwxr-xr-x 0 0 0 4504 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_adapters.py + - -rwxr-xr-x 0 0 0 5457 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_common.py + - -rwxr-xr-x 0 0 0 2925 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_compat.py + - -rwxr-xr-x 0 0 0 884 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_itertools.py + - -rwxr-xr-x 0 0 0 3481 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_legacy.py + - -rwxr-xr-x 0 0 0 5140 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/abc.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/py.typed + - -rwxr-xr-x 0 0 0 3581 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/readers.py + - -rwxr-xr-x 0 0 0 2576 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/simple.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/__init__.py + - -rwxr-xr-x 0 0 0 9570 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/context.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/functools/ + - -rwxr-xr-x 0 0 0 16696 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/functools/__init__.py + - -rwxr-xr-x 0 0 0 3982 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/functools/__init__.pyi + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/functools/py.typed + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/text/ + - -rwxr-xr-x 0 0 0 15517 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/text/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/ + - -rwxr-xr-x 0 0 0 82 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/__init__.py + - -rwxr-xr-x 0 0 0 43 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/__init__.pyi + - -rwxr-xr-x 0 0 0 117959 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/more.py + - -rwxr-xr-x 0 0 0 14977 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/more.pyi + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/py.typed + - -rwxr-xr-x 0 0 0 16256 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/recipes.py + - -rwxr-xr-x 0 0 0 3551 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/recipes.pyi + - -rwxr-xr-x 0 0 0 15130 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/ordered_set.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/ + - -rwxr-xr-x 0 0 0 496 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/__init__.py + - -rwxr-xr-x 0 0 0 3266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_elffile.py + - -rwxr-xr-x 0 0 0 9590 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_manylinux.py + - -rwxr-xr-x 0 0 0 2676 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_musllinux.py + - -rwxr-xr-x 0 0 0 10347 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_parser.py + - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_structures.py + - -rwxr-xr-x 0 0 0 5292 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_tokenizer.py + - -rwxr-xr-x 0 0 0 8208 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/markers.py + - -rwxr-xr-x 0 0 0 33036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/metadata.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/py.typed + - -rwxr-xr-x 0 0 0 2933 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/requirements.py + - -rwxr-xr-x 0 0 0 39784 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/specifiers.py + - -rwxr-xr-x 0 0 0 18950 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/tags.py + - -rwxr-xr-x 0 0 0 5268 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/utils.py + - -rwxr-xr-x 0 0 0 16236 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/version.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/ + - -rwxr-xr-x 0 0 0 396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/__init__.py + - -rwxr-xr-x 0 0 0 22633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/_parser.py + - -rwxr-xr-x 0 0 0 2943 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/_re.py + - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/_types.py + - -rwxr-xr-x 0 0 0 26 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/py.typed + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/wheel/ + - -rwxr-xr-x 0 0 0 59 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/wheel/__init__.py + - -rwxr-xr-x 0 0 0 16103 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/wheel/macosx_libfile.py + - -rwxr-xr-x 0 0 0 5876 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/wheel/metadata.py + - -rwxr-xr-x 0 0 0 621 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/wheel/util.py + - -rwxr-xr-x 0 0 0 7696 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/wheel/wheelfile.py + - -rwxr-xr-x 0 0 0 8425 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/zipp.py + - -rwxr-xr-x 0 0 0 7331 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/archive_util.py + - -rwxr-xr-x 0 0 0 19085 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/build_meta.py + - -rwxr-xr-x 0 0 0 11776 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/cli-32.exe + - -rwxr-xr-x 0 0 0 14336 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/cli-64.exe + - -rwxr-xr-x 0 0 0 13824 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/cli-arm64.exe + - -rwxr-xr-x 0 0 0 11776 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/cli.exe + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/ + - -rwxr-xr-x 0 0 0 396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/__init__.py + - -rwxr-xr-x 0 0 0 4245 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/_requirestxt.py + - -rwxr-xr-x 0 0 0 2383 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/alias.py + - -rwxr-xr-x 0 0 0 16525 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/bdist_egg.py + - -rwxr-xr-x 0 0 0 1289 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/bdist_rpm.py + - -rwxr-xr-x 0 0 0 21412 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/bdist_wheel.py + - -rwxr-xr-x 0 0 0 5816 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/build.py + - -rwxr-xr-x 0 0 0 4539 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/build_clib.py + - -rwxr-xr-x 0 0 0 17760 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/build_ext.py + - -rwxr-xr-x 0 0 0 15193 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/build_py.py + - -rwxr-xr-x 0 0 0 6892 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/develop.py + - -rwxr-xr-x 0 0 0 3507 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/dist_info.py + - -rwxr-xr-x 0 0 0 86995 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/easy_install.py + - -rwxr-xr-x 0 0 0 35275 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/editable_wheel.py + - -rwxr-xr-x 0 0 0 26522 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/egg_info.py + - -rwxr-xr-x 0 0 0 5779 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/install.py + - -rwxr-xr-x 0 0 0 2066 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/install_egg_info.py + - -rwxr-xr-x 0 0 0 3965 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/install_lib.py + - -rwxr-xr-x 0 0 0 2474 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/install_scripts.py + - -rwxr-xr-x 0 0 0 628 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/launcher manifest.xml + - -rwxr-xr-x 0 0 0 466 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/register.py + - -rwxr-xr-x 0 0 0 2144 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/rotate.py + - -rwxr-xr-x 0 0 0 657 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/saveopts.py + - -rwxr-xr-x 0 0 0 6808 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/sdist.py + - -rwxr-xr-x 0 0 0 5018 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/setopt.py + - -rwxr-xr-x 0 0 0 8104 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/test.py + - -rwxr-xr-x 0 0 0 460 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/upload.py + - -rwxr-xr-x 0 0 0 7821 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/upload_docs.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/compat/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/compat/__init__.py + - -rwxr-xr-x 0 0 0 165 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/compat/py310.py + - -rwxr-xr-x 0 0 0 735 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/compat/py311.py + - -rwxr-xr-x 0 0 0 493 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/compat/py39.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/ + - -rwxr-xr-x 0 0 0 1499 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/__init__.py + - -rwxr-xr-x 0 0 0 14700 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_apply_pyprojecttoml.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/ + - -rwxr-xr-x 0 0 0 1042 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/__init__.py + - -rwxr-xr-x 0 0 0 11862 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/error_reporting.py + - -rwxr-xr-x 0 0 0 1625 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/extra_validations.py + - -rwxr-xr-x 0 0 0 1612 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py + - -rwxr-xr-x 0 0 0 295453 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py + - -rwxr-xr-x 0 0 0 12062 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/formats.py + - -rwxr-xr-x 0 0 0 15527 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/expand.py + - -rwxr-xr-x 0 0 0 17653 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/pyprojecttoml.py + - -rwxr-xr-x 0 0 0 25592 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/setupcfg.py + - -rwxr-xr-x 0 0 0 5551 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/depends.py + - -rwxr-xr-x 0 0 0 21124 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/discovery.py + - -rwxr-xr-x 0 0 0 37933 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/dist.py + - -rwxr-xr-x 0 0 0 2669 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/errors.py + - -rwxr-xr-x 0 0 0 5794 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/extension.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/extern/ + - -rwxr-xr-x 0 0 0 2728 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/extern/__init__.py + - -rwxr-xr-x 0 0 0 4852 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/glob.py + - -rwxr-xr-x 0 0 0 11776 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/gui-32.exe + - -rwxr-xr-x 0 0 0 14336 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/gui-64.exe + - -rwxr-xr-x 0 0 0 13824 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/gui-arm64.exe + - -rwxr-xr-x 0 0 0 11776 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/gui.exe + - -rwxr-xr-x 0 0 0 4969 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/installer.py + - -rwxr-xr-x 0 0 0 812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/launch.py + - -rwxr-xr-x 0 0 0 1239 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/logging.py + - -rwxr-xr-x 0 0 0 190 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/modified.py + - -rwxr-xr-x 0 0 0 4333 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/monkey.py + - -rwxr-xr-x 0 0 0 47532 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/msvc.py + - -rwxr-xr-x 0 0 0 3128 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/namespaces.py + - -rwxr-xr-x 0 0 0 39081 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/package_index.py + - -rwxr-xr-x 0 0 0 14730 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/sandbox.py + - -rwxr-xr-x 0 0 0 218 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/script (dev).tmpl + - -rwxr-xr-x 0 0 0 138 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/script.tmpl + - -rwxr-xr-x 0 0 0 3181 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/unicode_utils.py + - -rwxr-xr-x 0 0 0 161 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/version.py + - -rwxr-xr-x 0 0 0 3699 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/warnings.py + - -rwxr-xr-x 0 0 0 8682 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/wheel.py + - -rwxr-xr-x 0 0 0 720 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/windows_support.py + - -rwxr-xr-x 0 0 0 21844 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site.py + - -rwxr-xr-x 0 0 0 34823 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/smtpd.py + - -rwxr-xr-x 0 0 0 45407 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/smtplib.py + - -rwxr-xr-x 0 0 0 7099 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/sndhdr.py + - -rwxr-xr-x 0 0 0 36915 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/socket.py + - -rwxr-xr-x 0 0 0 27296 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/socketserver.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/sqlite3/ + - -rwxr-xr-x 0 0 0 2014 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/sqlite3/__init__.py + - -rwxr-xr-x 0 0 0 2687 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/sqlite3/dbapi2.py + - -rwxr-xr-x 0 0 0 2825 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/sqlite3/dump.py + - -rwxr-xr-x 0 0 0 27973 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/sre_compile.py + - -rwxr-xr-x 0 0 0 7177 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/sre_constants.py + - -rwxr-xr-x 0 0 0 40779 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/sre_parse.py + - -rwxr-xr-x 0 0 0 52530 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ssl.py + - -rwxr-xr-x 0 0 0 5485 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/stat.py + - -rwxr-xr-x 0 0 0 38067 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/statistics.py + - -rwxr-xr-x 0 0 0 10566 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/string.py + - -rwxr-xr-x 0 0 0 12917 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/stringprep.py + - -rwxr-xr-x 0 0 0 257 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/struct.py + - -rwxr-xr-x 0 0 0 83564 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/subprocess.py + - -rwxr-xr-x 0 0 0 18158 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/sunau.py + - -rwxr-xr-x 0 0 0 2281 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/symbol.py + - -rwxr-xr-x 0 0 0 7905 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/symtable.py + - -rwxr-xr-x 0 0 0 24914 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/sysconfig.py + - -rwxr-xr-x 0 0 0 11408 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tabnanny.py + - -rwxr-xr-x 0 0 0 106881 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tarfile.py + - -rwxr-xr-x 0 0 0 23254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/telnetlib.py + - -rwxr-xr-x 0 0 0 27963 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tempfile.py + - -rwxr-xr-x 0 0 0 19407 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/textwrap.py + - -rwxr-xr-x 0 0 0 1003 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/this.py + - -rwxr-xr-x 0 0 0 54176 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/threading.py + - -rwxr-xr-x 0 0 0 13482 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/timeit.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/ + - -rwxr-xr-x 0 0 0 169626 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/__init__.py + - -rwxr-xr-x 0 0 0 148 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/__main__.py + - -rwxr-xr-x 0 0 0 2660 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/colorchooser.py + - -rwxr-xr-x 0 0 0 1245 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/commondialog.py + - -rwxr-xr-x 0 0 0 1493 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/constants.py + - -rwxr-xr-x 0 0 0 1543 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/dialog.py + - -rwxr-xr-x 0 0 0 11528 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/dnd.py + - -rwxr-xr-x 0 0 0 14947 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/filedialog.py + - -rwxr-xr-x 0 0 0 6821 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/font.py + - -rwxr-xr-x 0 0 0 3861 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/messagebox.py + - -rwxr-xr-x 0 0 0 1816 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/scrolledtext.py + - -rwxr-xr-x 0 0 0 11757 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/simpledialog.py + - -rwxr-xr-x 0 0 0 76845 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/tix.py + - -rwxr-xr-x 0 0 0 57139 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/ttk.py + - -rwxr-xr-x 0 0 0 2368 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/token.py + - -rwxr-xr-x 0 0 0 25883 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tokenize.py + - -rwxr-xr-x 0 0 0 29208 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/trace.py + - -rwxr-xr-x 0 0 0 24660 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/traceback.py + - -rwxr-xr-x 0 0 0 18047 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tracemalloc.py + - -rwxr-xr-x 0 0 0 879 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tty.py + - -rwxr-xr-x 0 0 0 143796 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtle.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/ + - -rwxr-xr-x 0 0 0 314 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/__init__.py + - -rwxr-xr-x 0 0 0 15050 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/__main__.py + - -rwxr-xr-x 0 0 0 4248 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/bytedesign.py + - -rwxr-xr-x 0 0 0 951 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/chaos.py + - -rwxr-xr-x 0 0 0 3201 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/clock.py + - -rwxr-xr-x 0 0 0 1339 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/colormixer.py + - -rwxr-xr-x 0 0 0 2966 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/forest.py + - -rwxr-xr-x 0 0 0 3473 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/fractalcurves.py + - -rwxr-xr-x 0 0 0 2434 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/lindenmayer.py + - -rwxr-xr-x 0 0 0 2051 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/minimal_hanoi.py + - -rwxr-xr-x 0 0 0 6513 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/nim.py + - -rwxr-xr-x 0 0 0 1291 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/paint.py + - -rwxr-xr-x 0 0 0 1066 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/peace.py + - -rwxr-xr-x 0 0 0 3380 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/penrose.py + - -rwxr-xr-x 0 0 0 2825 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/planet_and_moon.py + - -rwxr-xr-x 0 0 0 1361 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/rosette.py + - -rwxr-xr-x 0 0 0 1804 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/round_dance.py + - -rwxr-xr-x 0 0 0 5052 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/sorting_animate.py + - -rwxr-xr-x 0 0 0 1401 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/tree.py + - -rwxr-xr-x 0 0 0 160 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/turtle.cfg + - -rwxr-xr-x 0 0 0 1119 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/two_canvases.py + - -rwxr-xr-x 0 0 0 821 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/yinyang.py + - -rwxr-xr-x 0 0 0 9785 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/types.py + - -rwxr-xr-x 0 0 0 77044 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/typing.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/ + - -rwxr-xr-x 0 0 0 3761 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/__init__.py + - -rwxr-xr-x 0 0 0 472 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/__main__.py + - -rwxr-xr-x 0 0 0 2295 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/_log.py + - -rwxr-xr-x 0 0 0 6368 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/async_case.py + - -rwxr-xr-x 0 0 0 57155 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/case.py + - -rwxr-xr-x 0 0 0 22702 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/loader.py + - -rwxr-xr-x 0 0 0 11256 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/main.py + - -rwxr-xr-x 0 0 0 99217 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/mock.py + - -rwxr-xr-x 0 0 0 8364 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/result.py + - -rwxr-xr-x 0 0 0 8051 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/runner.py + - -rwxr-xr-x 0 0 0 2403 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/signals.py + - -rwxr-xr-x 0 0 0 13512 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/suite.py + - -rwxr-xr-x 0 0 0 5215 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/util.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/urllib/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/urllib/__init__.py + - -rwxr-xr-x 0 0 0 2632 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/urllib/error.py + - -rwxr-xr-x 0 0 0 43064 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/urllib/parse.py + - -rwxr-xr-x 0 0 0 101306 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/urllib/request.py + - -rwxr-xr-x 0 0 0 2361 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/urllib/response.py + - -rwxr-xr-x 0 0 0 9424 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/urllib/robotparser.py + - -rwxr-xr-x 0 0 0 7301 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/uu.py + - -rwxr-xr-x 0 0 0 27324 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/uuid.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/venv/ + - -rwxr-xr-x 0 0 0 23213 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/venv/__init__.py + - -rwxr-xr-x 0 0 0 145 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/venv/__main__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/common/ + - -rwxr-xr-x 0 0 0 8834 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/common/Activate.ps1 + - -rwxr-xr-x 0 0 0 1909 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/common/activate + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/posix/ + - -rwxr-xr-x 0 0 0 858 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/posix/activate.csh + - -rwxr-xr-x 0 0 0 1998 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/posix/activate.fish + - -rwxr-xr-x 0 0 0 19688 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/warnings.py + - -rwxr-xr-x 0 0 0 18004 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/wave.py + - -rwxr-xr-x 0 0 0 21560 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/weakref.py + - -rwxr-xr-x 0 0 0 24085 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/webbrowser.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/ + - -rwxr-xr-x 0 0 0 587 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/__init__.py + - -rwxr-xr-x 0 0 0 21669 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/handlers.py + - -rwxr-xr-x 0 0 0 6766 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/headers.py + - -rwxr-xr-x 0 0 0 5171 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/simple_server.py + - -rwxr-xr-x 0 0 0 5851 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/util.py + - -rwxr-xr-x 0 0 0 15099 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/validate.py + - -rwxr-xr-x 0 0 0 5913 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xdrlib.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/ + - -rwxr-xr-x 0 0 0 557 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/ + - -rwxr-xr-x 0 0 0 936 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/NodeFilter.py + - -rwxr-xr-x 0 0 0 4019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/__init__.py + - -rwxr-xr-x 0 0 0 3451 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/domreg.py + - -rwxr-xr-x 0 0 0 35767 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/expatbuilder.py + - -rwxr-xr-x 0 0 0 3367 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/minicompat.py + - -rwxr-xr-x 0 0 0 68066 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/minidom.py + - -rwxr-xr-x 0 0 0 11997 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/pulldom.py + - -rwxr-xr-x 0 0 0 12387 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/xmlbuilder.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/etree/ + - -rwxr-xr-x 0 0 0 6882 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/etree/ElementInclude.py + - -rwxr-xr-x 0 0 0 13063 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/etree/ElementPath.py + - -rwxr-xr-x 0 0 0 74404 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/etree/ElementTree.py + - -rwxr-xr-x 0 0 0 1605 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/etree/__init__.py + - -rwxr-xr-x 0 0 0 82 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/etree/cElementTree.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/parsers/ + - -rwxr-xr-x 0 0 0 167 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/parsers/__init__.py + - -rwxr-xr-x 0 0 0 248 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/parsers/expat.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/ + - -rwxr-xr-x 0 0 0 3642 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/__init__.py + - -rwxr-xr-x 0 0 0 4785 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/_exceptions.py + - -rwxr-xr-x 0 0 0 16211 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/expatreader.py + - -rwxr-xr-x 0 0 0 13922 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/handler.py + - -rwxr-xr-x 0 0 0 12255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/saxutils.py + - -rwxr-xr-x 0 0 0 12684 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/xmlreader.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xmlrpc/ + - -rwxr-xr-x 0 0 0 38 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xmlrpc/__init__.py + - -rwxr-xr-x 0 0 0 49391 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xmlrpc/client.py + - -rwxr-xr-x 0 0 0 36672 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xmlrpc/server.py + - -rwxr-xr-x 0 0 0 7535 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/zipapp.py + - -rwxr-xr-x 0 0 0 88240 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/zipfile.py + - -rwxr-xr-x 0 0 0 30765 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/zipimport.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/zoneinfo/ + - -rwxr-xr-x 0 0 0 703 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/zoneinfo/__init__.py + - -rwxr-xr-x 0 0 0 5320 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/zoneinfo/_common.py + - -rwxr-xr-x 0 0 0 5081 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/zoneinfo/_tzpath.py + - -rwxr-xr-x 0 0 0 24318 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/zoneinfo/_zoneinfo.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/ + - -rwxr-xr-x 0 0 0 20875 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/auto.tcl + - -rwxr-xr-x 0 0 0 128893 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/clock.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/ + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/ascii.enc + - -rwxr-xr-x 0 0 0 92873 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/big5.enc + - -rwxr-xr-x 0 0 0 97050 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cns11643.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1250.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1251.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1252.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1253.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1254.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1255.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1256.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1257.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1258.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp437.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp737.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp775.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp850.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp852.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp855.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp857.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp860.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp861.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp862.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp863.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp864.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp865.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp866.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp869.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp874.enc + - -rwxr-xr-x 0 0 0 48207 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp932.enc + - -rwxr-xr-x 0 0 0 132509 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp936.enc + - -rwxr-xr-x 0 0 0 130423 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp949.enc + - -rwxr-xr-x 0 0 0 91831 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp950.enc + - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/dingbats.enc + - -rwxr-xr-x 0 0 0 1054 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/ebcdic.enc + - -rwxr-xr-x 0 0 0 85574 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/euc-cn.enc + - -rwxr-xr-x 0 0 0 82537 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/euc-jp.enc + - -rwxr-xr-x 0 0 0 93918 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/euc-kr.enc + - -rwxr-xr-x 0 0 0 86619 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/gb12345.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/gb1988.enc + - -rwxr-xr-x 0 0 0 84532 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/gb2312-raw.enc + - -rwxr-xr-x 0 0 0 85574 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/gb2312.enc + - -rwxr-xr-x 0 0 0 192 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso2022-jp.enc + - -rwxr-xr-x 0 0 0 115 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso2022-kr.enc + - -rwxr-xr-x 0 0 0 226 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso2022.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-1.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-10.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-11.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-13.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-14.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-15.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-16.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-2.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-3.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-4.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-5.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-6.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-7.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-8.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-9.enc + - -rwxr-xr-x 0 0 0 1092 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/jis0201.enc + - -rwxr-xr-x 0 0 0 80453 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/jis0208.enc + - -rwxr-xr-x 0 0 0 70974 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/jis0212.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/koi8-r.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/koi8-u.enc + - -rwxr-xr-x 0 0 0 92877 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/ksc5601.enc + - -rwxr-xr-x 0 0 0 1096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macCentEuro.enc + - -rwxr-xr-x 0 0 0 1096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macCroatian.enc + - -rwxr-xr-x 0 0 0 1096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macCyrillic.enc + - -rwxr-xr-x 0 0 0 1096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macDingbats.enc + - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macGreek.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macIceland.enc + - -rwxr-xr-x 0 0 0 48028 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macJapan.enc + - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macRoman.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macRomania.enc + - -rwxr-xr-x 0 0 0 1092 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macThai.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macTurkish.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macUkraine.enc + - -rwxr-xr-x 0 0 0 41862 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/shiftjis.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/symbol.enc + - -rwxr-xr-x 0 0 0 1092 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/tis-620.enc + - -rwxr-xr-x 0 0 0 7900 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/history.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/http1.0/ + - -rwxr-xr-x 0 0 0 9689 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/http1.0/http.tcl + - -rwxr-xr-x 0 0 0 735 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/http1.0/pkgIndex.tcl + - -rwxr-xr-x 0 0 0 24806 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/init.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ + - -rwxr-xr-x 0 0 0 989 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/af.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/af_za.msg + - -rwxr-xr-x 0 0 0 1964 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ar.msg + - -rwxr-xr-x 0 0 0 259 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ar_in.msg + - -rwxr-xr-x 0 0 0 1812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ar_jo.msg + - -rwxr-xr-x 0 0 0 1812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ar_lb.msg + - -rwxr-xr-x 0 0 0 1812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ar_sy.msg + - -rwxr-xr-x 0 0 0 2105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/be.msg + - -rwxr-xr-x 0 0 0 1819 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/bg.msg + - -rwxr-xr-x 0 0 0 2286 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/bn.msg + - -rwxr-xr-x 0 0 0 259 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/bn_in.msg + - -rwxr-xr-x 0 0 0 1102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ca.msg + - -rwxr-xr-x 0 0 0 1300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/cs.msg + - -rwxr-xr-x 0 0 0 1156 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/da.msg + - -rwxr-xr-x 0 0 0 1222 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/de.msg + - -rwxr-xr-x 0 0 0 812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/de_at.msg + - -rwxr-xr-x 0 0 0 1223 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/de_be.msg + - -rwxr-xr-x 0 0 0 2252 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/el.msg + - -rwxr-xr-x 0 0 0 300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_au.msg + - -rwxr-xr-x 0 0 0 305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_be.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_bw.msg + - -rwxr-xr-x 0 0 0 288 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_ca.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_gb.msg + - -rwxr-xr-x 0 0 0 321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_hk.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_ie.msg + - -rwxr-xr-x 0 0 0 310 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_in.msg + - -rwxr-xr-x 0 0 0 300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_nz.msg + - -rwxr-xr-x 0 0 0 321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_ph.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_sg.msg + - -rwxr-xr-x 0 0 0 245 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_za.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_zw.msg + - -rwxr-xr-x 0 0 0 1231 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/eo.msg + - -rwxr-xr-x 0 0 0 1180 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es.msg + - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_ar.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_bo.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_cl.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_co.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_cr.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_do.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_ec.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_gt.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_hn.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_mx.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_ni.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_pa.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_pe.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_pr.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_py.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_sv.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_uy.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_ve.msg + - -rwxr-xr-x 0 0 0 1206 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/et.msg + - -rwxr-xr-x 0 0 0 985 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/eu.msg + - -rwxr-xr-x 0 0 0 287 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/eu_es.msg + - -rwxr-xr-x 0 0 0 1664 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fa.msg + - -rwxr-xr-x 0 0 0 1957 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fa_in.msg + - -rwxr-xr-x 0 0 0 417 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fa_ir.msg + - -rwxr-xr-x 0 0 0 1145 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fi.msg + - -rwxr-xr-x 0 0 0 986 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fo.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fo_fo.msg + - -rwxr-xr-x 0 0 0 1205 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fr.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fr_be.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fr_ca.msg + - -rwxr-xr-x 0 0 0 281 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fr_ch.msg + - -rwxr-xr-x 0 0 0 1141 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ga.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ga_ie.msg + - -rwxr-xr-x 0 0 0 950 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/gl.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/gl_es.msg + - -rwxr-xr-x 0 0 0 1037 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/gv.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/gv_gb.msg + - -rwxr-xr-x 0 0 0 1938 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/he.msg + - -rwxr-xr-x 0 0 0 1738 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/hi.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/hi_in.msg + - -rwxr-xr-x 0 0 0 1121 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/hr.msg + - -rwxr-xr-x 0 0 0 1327 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/hu.msg + - -rwxr-xr-x 0 0 0 914 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/id.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/id_id.msg + - -rwxr-xr-x 0 0 0 1255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/is.msg + - -rwxr-xr-x 0 0 0 1240 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/it.msg + - -rwxr-xr-x 0 0 0 244 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/it_ch.msg + - -rwxr-xr-x 0 0 0 1645 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ja.msg + - -rwxr-xr-x 0 0 0 978 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/kl.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/kl_gl.msg + - -rwxr-xr-x 0 0 0 1566 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ko.msg + - -rwxr-xr-x 0 0 0 346 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ko_kr.msg + - -rwxr-xr-x 0 0 0 1958 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/kok.msg + - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/kok_in.msg + - -rwxr-xr-x 0 0 0 966 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/kw.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/kw_gb.msg + - -rwxr-xr-x 0 0 0 1255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/lt.msg + - -rwxr-xr-x 0 0 0 1219 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/lv.msg + - -rwxr-xr-x 0 0 0 2105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/mk.msg + - -rwxr-xr-x 0 0 0 1807 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/mr.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/mr_in.msg + - -rwxr-xr-x 0 0 0 910 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ms.msg + - -rwxr-xr-x 0 0 0 259 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ms_my.msg + - -rwxr-xr-x 0 0 0 690 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/mt.msg + - -rwxr-xr-x 0 0 0 1157 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/nb.msg + - -rwxr-xr-x 0 0 0 1079 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/nl.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/nl_be.msg + - -rwxr-xr-x 0 0 0 1148 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/nn.msg + - -rwxr-xr-x 0 0 0 1211 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/pl.msg + - -rwxr-xr-x 0 0 0 1127 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/pt.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/pt_br.msg + - -rwxr-xr-x 0 0 0 1172 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ro.msg + - -rwxr-xr-x 0 0 0 2039 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ru.msg + - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ru_ua.msg + - -rwxr-xr-x 0 0 0 1160 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sh.msg + - -rwxr-xr-x 0 0 0 1203 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sk.msg + - -rwxr-xr-x 0 0 0 1164 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sl.msg + - -rwxr-xr-x 0 0 0 1267 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sq.msg + - -rwxr-xr-x 0 0 0 2035 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sr.msg + - -rwxr-xr-x 0 0 0 1167 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sv.msg + - -rwxr-xr-x 0 0 0 991 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sw.msg + - -rwxr-xr-x 0 0 0 1835 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ta.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ta_in.msg + - -rwxr-xr-x 0 0 0 2102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/te.msg + - -rwxr-xr-x 0 0 0 411 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/te_in.msg + - -rwxr-xr-x 0 0 0 2305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/th.msg + - -rwxr-xr-x 0 0 0 1133 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/tr.msg + - -rwxr-xr-x 0 0 0 2113 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/uk.msg + - -rwxr-xr-x 0 0 0 1421 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/vi.msg + - -rwxr-xr-x 0 0 0 3330 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/zh.msg + - -rwxr-xr-x 0 0 0 312 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/zh_cn.msg + - -rwxr-xr-x 0 0 0 752 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/zh_hk.msg + - -rwxr-xr-x 0 0 0 339 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/zh_sg.msg + - -rwxr-xr-x 0 0 0 346 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/zh_tw.msg + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/opt0.4/ + - -rwxr-xr-x 0 0 0 32705 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/opt0.4/optparse.tcl + - -rwxr-xr-x 0 0 0 608 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/opt0.4/pkgIndex.tcl + - -rwxr-xr-x 0 0 0 23244 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/package.tcl + - -rwxr-xr-x 0 0 0 816 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/parray.tcl + - -rwxr-xr-x 0 0 0 40934 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/safe.tcl + - -rwxr-xr-x 0 0 0 4511 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/tclAppInit.c + - -rwxr-xr-x 0 0 0 5539 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/tclIndex + - -rwxr-xr-x 0 0 0 11824 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/tm.tcl + - -rwxr-xr-x 0 0 0 4876 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/word.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8/8.4/ + - -rwxr-xr-x 0 0 0 10984 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8/8.4/platform-1.0.18.tm + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8/8.4/platform/ + - -rwxr-xr-x 0 0 0 5977 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8/8.4/platform/shell-1.1.4.tm + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8/8.5/ + - -rwxr-xr-x 0 0 0 33926 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8/8.5/msgcat-1.6.1.tm + - -rwxr-xr-x 0 0 0 103526 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8/8.5/tcltest-2.5.3.tm + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8/8.6/ + - -rwxr-xr-x 0 0 0 111709 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8/8.6/http-2.9.5.tm + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/thread2.8.7/ + - -rwxr-xr-x 0 0 0 29530 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/thread2.8.7/ttrace.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ + - -rwxr-xr-x 0 0 0 8534 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/bgerror.tcl + - -rwxr-xr-x 0 0 0 20830 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/button.tcl + - -rwxr-xr-x 0 0 0 9652 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/choosedir.tcl + - -rwxr-xr-x 0 0 0 21417 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/clrpick.tcl + - -rwxr-xr-x 0 0 0 8368 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/comdlg.tcl + - -rwxr-xr-x 0 0 0 32792 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/console.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ + - -rwxr-xr-x 0 0 0 2082 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/README + - -rwxr-xr-x 0 0 0 6670 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/anilabel.tcl + - -rwxr-xr-x 0 0 0 3494 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/aniwave.tcl + - -rwxr-xr-x 0 0 0 8110 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/arrow.tcl + - -rwxr-xr-x 0 0 0 3078 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/bind.tcl + - -rwxr-xr-x 0 0 0 1411 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/bitmap.tcl + - -rwxr-xr-x 0 0 0 1758 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/browse + - -rwxr-xr-x 0 0 0 1504 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/button.tcl + - -rwxr-xr-x 0 0 0 2278 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/check.tcl + - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/clrpick.tcl + - -rwxr-xr-x 0 0 0 5002 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/colors.tcl + - -rwxr-xr-x 0 0 0 1963 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/combo.tcl + - -rwxr-xr-x 0 0 0 5036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/cscroll.tcl + - -rwxr-xr-x 0 0 0 6205 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ctext.tcl + - -rwxr-xr-x 0 0 0 974 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/dialog1.tcl + - -rwxr-xr-x 0 0 0 828 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/dialog2.tcl + - -rwxr-xr-x 0 0 0 3867 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/en.msg + - -rwxr-xr-x 0 0 0 1401 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/entry1.tcl + - -rwxr-xr-x 0 0 0 2091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/entry2.tcl + - -rwxr-xr-x 0 0 0 6102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/entry3.tcl + - -rwxr-xr-x 0 0 0 2351 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/filebox.tcl + - -rwxr-xr-x 0 0 0 79803 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/floor.tcl + - -rwxr-xr-x 0 0 0 1710 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/fontchoose.tcl + - -rwxr-xr-x 0 0 0 1046 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/form.tcl + - -rwxr-xr-x 0 0 0 56598 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/goldberg.tcl + - -rwxr-xr-x 0 0 0 512 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/hello + - -rwxr-xr-x 0 0 0 1497 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/hscale.tcl + - -rwxr-xr-x 0 0 0 2063 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/icon.tcl + - -rwxr-xr-x 0 0 0 1002 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/image1.tcl + - -rwxr-xr-x 0 0 0 3359 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/image2.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/ + - -rwxr-xr-x 0 0 0 51712 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/earth.gif + - -rwxr-xr-x 0 0 0 8157 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/earthmenu.png + - -rwxr-xr-x 0 0 0 6343 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/earthris.gif + - -rwxr-xr-x 0 0 0 1886 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/flagdown.xbm + - -rwxr-xr-x 0 0 0 1880 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/flagup.xbm + - -rwxr-xr-x 0 0 0 275 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/gray25.xbm + - -rwxr-xr-x 0 0 0 1883 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/letters.xbm + - -rwxr-xr-x 0 0 0 1889 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/noletter.xbm + - -rwxr-xr-x 0 0 0 54257 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/ouster.png + - -rwxr-xr-x 0 0 0 272 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/pattern.xbm + - -rwxr-xr-x 0 0 0 2341 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/tcllogo.gif + - -rwxr-xr-x 0 0 0 196623 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/teapot.ppm + - -rwxr-xr-x 0 0 0 10490 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/items.tcl + - -rwxr-xr-x 0 0 0 8075 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ixset + - -rwxr-xr-x 0 0 0 9123 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/knightstour.tcl + - -rwxr-xr-x 0 0 0 1379 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/label.tcl + - -rwxr-xr-x 0 0 0 1847 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/labelframe.tcl + - -rwxr-xr-x 0 0 0 2267 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/license.terms + - -rwxr-xr-x 0 0 0 4357 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/mclist.tcl + - -rwxr-xr-x 0 0 0 7479 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/menu.tcl + - -rwxr-xr-x 0 0 0 4476 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/menubu.tcl + - -rwxr-xr-x 0 0 0 1998 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/msgbox.tcl + - -rwxr-xr-x 0 0 0 6750 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/nl.msg + - -rwxr-xr-x 0 0 0 1130 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/paned1.tcl + - -rwxr-xr-x 0 0 0 2244 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/paned2.tcl + - -rwxr-xr-x 0 0 0 7623 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/pendulum.tcl + - -rwxr-xr-x 0 0 0 2757 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/plot.tcl + - -rwxr-xr-x 0 0 0 2602 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/puzzle.tcl + - -rwxr-xr-x 0 0 0 2752 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/radio.tcl + - -rwxr-xr-x 0 0 0 5319 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/rmt + - -rwxr-xr-x 0 0 0 8300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/rolodex + - -rwxr-xr-x 0 0 0 5333 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ruler.tcl + - -rwxr-xr-x 0 0 0 2273 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/sayings.tcl + - -rwxr-xr-x 0 0 0 4403 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/search.tcl + - -rwxr-xr-x 0 0 0 1820 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/spin.tcl + - -rwxr-xr-x 0 0 0 2048 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/states.tcl + - -rwxr-xr-x 0 0 0 6943 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/style.tcl + - -rwxr-xr-x 0 0 0 5298 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/tclIndex + - -rwxr-xr-x 0 0 0 11253 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/tcolor + - -rwxr-xr-x 0 0 0 4291 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/text.tcl + - -rwxr-xr-x 0 0 0 2188 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/textpeer.tcl + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/timer + - -rwxr-xr-x 0 0 0 3272 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/toolbar.tcl + - -rwxr-xr-x 0 0 0 3178 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/tree.tcl + - -rwxr-xr-x 0 0 0 3405 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ttkbut.tcl + - -rwxr-xr-x 0 0 0 2391 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ttkmenu.tcl + - -rwxr-xr-x 0 0 0 2317 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ttknote.tcl + - -rwxr-xr-x 0 0 0 4177 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ttkpane.tcl + - -rwxr-xr-x 0 0 0 1536 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ttkprogress.tcl + - -rwxr-xr-x 0 0 0 1420 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ttkscale.tcl + - -rwxr-xr-x 0 0 0 11654 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/twind.tcl + - -rwxr-xr-x 0 0 0 4706 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/unicodeout.tcl + - -rwxr-xr-x 0 0 0 1477 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/vscale.tcl + - -rwxr-xr-x 0 0 0 24063 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/widget + - -rwxr-xr-x 0 0 0 5813 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/dialog.tcl + - -rwxr-xr-x 0 0 0 17715 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/entry.tcl + - -rwxr-xr-x 0 0 0 4857 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/focus.tcl + - -rwxr-xr-x 0 0 0 16011 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/fontchooser.tcl + - -rwxr-xr-x 0 0 0 16704 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/iconlist.tcl + - -rwxr-xr-x 0 0 0 10884 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/icons.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/ + - -rwxr-xr-x 0 0 0 322 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/README + - -rwxr-xr-x 0 0 0 32900 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/logo.eps + - -rwxr-xr-x 0 0 0 2341 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/logo100.gif + - -rwxr-xr-x 0 0 0 1670 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/logo64.gif + - -rwxr-xr-x 0 0 0 11000 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/logoLarge.gif + - -rwxr-xr-x 0 0 0 3889 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/logoMed.gif + - -rwxr-xr-x 0 0 0 27809 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo.eps + - -rwxr-xr-x 0 0 0 1615 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo100.gif + - -rwxr-xr-x 0 0 0 2489 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo150.gif + - -rwxr-xr-x 0 0 0 2981 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo175.gif + - -rwxr-xr-x 0 0 0 3491 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo200.gif + - -rwxr-xr-x 0 0 0 1171 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo75.gif + - -rwxr-xr-x 0 0 0 5473 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/tai-ku.gif + - -rwxr-xr-x 0 0 0 14695 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/listbox.tcl + - -rwxr-xr-x 0 0 0 9565 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/megawidget.tcl + - -rwxr-xr-x 0 0 0 38122 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/menu.tcl + - -rwxr-xr-x 0 0 0 29352 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/mkpsenc.tcl + - -rwxr-xr-x 0 0 0 16359 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgbox.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/ + - -rwxr-xr-x 0 0 0 4158 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/cs.msg + - -rwxr-xr-x 0 0 0 3909 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/da.msg + - -rwxr-xr-x 0 0 0 4823 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/de.msg + - -rwxr-xr-x 0 0 0 8698 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/el.msg + - -rwxr-xr-x 0 0 0 3286 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/en.msg + - -rwxr-xr-x 0 0 0 63 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/en_gb.msg + - -rwxr-xr-x 0 0 0 3916 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/eo.msg + - -rwxr-xr-x 0 0 0 3948 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/es.msg + - -rwxr-xr-x 0 0 0 3805 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/fr.msg + - -rwxr-xr-x 0 0 0 4600 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/hu.msg + - -rwxr-xr-x 0 0 0 3692 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/it.msg + - -rwxr-xr-x 0 0 0 4466 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/nl.msg + - -rwxr-xr-x 0 0 0 4841 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/pl.msg + - -rwxr-xr-x 0 0 0 3913 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/pt.msg + - -rwxr-xr-x 0 0 0 7214 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/ru.msg + - -rwxr-xr-x 0 0 0 3832 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/sv.msg + - -rwxr-xr-x 0 0 0 5594 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/obsolete.tcl + - -rwxr-xr-x 0 0 0 1586 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/optMenu.tcl + - -rwxr-xr-x 0 0 0 8174 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/palette.tcl + - -rwxr-xr-x 0 0 0 5176 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/panedwindow.tcl + - -rwxr-xr-x 0 0 0 7370 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/safetk.tcl + - -rwxr-xr-x 0 0 0 7766 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/scale.tcl + - -rwxr-xr-x 0 0 0 12732 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/scrlbar.tcl + - -rwxr-xr-x 0 0 0 15933 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/spinbox.tcl + - -rwxr-xr-x 0 0 0 20270 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/tclIndex + - -rwxr-xr-x 0 0 0 5125 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/tearoff.tcl + - -rwxr-xr-x 0 0 0 33724 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/text.tcl + - -rwxr-xr-x 0 0 0 23554 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/tk.tcl + - -rwxr-xr-x 0 0 0 4615 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/tkAppInit.c + - -rwxr-xr-x 0 0 0 38373 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/tkfbox.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/ + - -rwxr-xr-x 0 0 0 3604 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/altTheme.tcl + - -rwxr-xr-x 0 0 0 3719 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/aquaTheme.tcl + - -rwxr-xr-x 0 0 0 2931 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/button.tcl + - -rwxr-xr-x 0 0 0 4662 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/clamTheme.tcl + - -rwxr-xr-x 0 0 0 3749 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/classicTheme.tcl + - -rwxr-xr-x 0 0 0 12270 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/combobox.tcl + - -rwxr-xr-x 0 0 0 4619 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/cursors.tcl + - -rwxr-xr-x 0 0 0 4410 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/defaults.tcl + - -rwxr-xr-x 0 0 0 16985 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/entry.tcl + - -rwxr-xr-x 0 0 0 5575 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/fonts.tcl + - -rwxr-xr-x 0 0 0 6400 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/menubutton.tcl + - -rwxr-xr-x 0 0 0 5626 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/notebook.tcl + - -rwxr-xr-x 0 0 0 2199 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/panedwindow.tcl + - -rwxr-xr-x 0 0 0 1089 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/progress.tcl + - -rwxr-xr-x 0 0 0 2693 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/scale.tcl + - -rwxr-xr-x 0 0 0 3159 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/scrollbar.tcl + - -rwxr-xr-x 0 0 0 2401 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/sizegrip.tcl + - -rwxr-xr-x 0 0 0 4811 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/spinbox.tcl + - -rwxr-xr-x 0 0 0 9797 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/treeview.tcl + - -rwxr-xr-x 0 0 0 4817 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/ttk.tcl + - -rwxr-xr-x 0 0 0 8287 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/utils.tcl + - -rwxr-xr-x 0 0 0 9481 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/vistaTheme.tcl + - -rwxr-xr-x 0 0 0 2781 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/winTheme.tcl + - -rwxr-xr-x 0 0 0 2036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/xpTheme.tcl + - -rwxr-xr-x 0 0 0 10252 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/unsupported.tcl + - -rwxr-xr-x 0 0 0 26075 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/xmfbox.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/share/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/share/man/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/share/man/man1/ + - -rwxr-xr-x 0 0 0 18711 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/share/man/man1/python3.1 + - -rwxr-xr-x 0 0 0 18711 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/share/man/man1/python3.9.1 --- layer: 1 files: - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/ - - -rwxr-xr-x 0 0 0 328 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/_aspect.pth - - -rwxr-xr-x 0 0 0 19 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/_virtualenv.pth - - -rwxr-xr-x 0 0 0 4342 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/_virtualenv.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama-0.4.6.dist-info/ - - -rwxr-xr-x 0 0 0 42 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama-0.4.6.dist-info/INSTALLER - - -rwxr-xr-x 0 0 0 17158 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama-0.4.6.dist-info/METADATA - - -rwxr-xr-x 0 0 0 105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama-0.4.6.dist-info/WHEEL - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama-0.4.6.dist-info/licenses/ - - -rwxr-xr-x 0 0 0 1491 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama-0.4.6.dist-info/licenses/LICENSE.txt - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/ - - -rwxr-xr-x 0 0 0 266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/__init__.py - - -rwxr-xr-x 0 0 0 2522 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/ansi.py - - -rwxr-xr-x 0 0 0 11128 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/ansitowin32.py - - -rwxr-xr-x 0 0 0 3325 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/initialise.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/ - - -rwxr-xr-x 0 0 0 75 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/__init__.py - - -rwxr-xr-x 0 0 0 2839 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/ansi_test.py - - -rwxr-xr-x 0 0 0 10678 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/ansitowin32_test.py - - -rwxr-xr-x 0 0 0 6741 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/initialise_test.py - - -rwxr-xr-x 0 0 0 1866 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/isatty_test.py - - -rwxr-xr-x 0 0 0 1079 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/utils.py - - -rwxr-xr-x 0 0 0 3709 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/winterm_test.py - - -rwxr-xr-x 0 0 0 6181 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/win32.py - - -rwxr-xr-x 0 0 0 7134 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/winterm.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/ - - -rwxr-xr-x 0 0 0 149 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama-0.4.6.dist-info/ - - -rwxr-xr-x 0 0 0 42 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama-0.4.6.dist-info/INSTALLER - - -rwxr-xr-x 0 0 0 17158 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama-0.4.6.dist-info/METADATA - - -rwxr-xr-x 0 0 0 105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama-0.4.6.dist-info/WHEEL - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama-0.4.6.dist-info/licenses/ - - -rwxr-xr-x 0 0 0 1491 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama-0.4.6.dist-info/licenses/LICENSE.txt - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/ - - -rwxr-xr-x 0 0 0 266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/__init__.py - - -rwxr-xr-x 0 0 0 2522 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/ansi.py - - -rwxr-xr-x 0 0 0 11128 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/ansitowin32.py - - -rwxr-xr-x 0 0 0 3325 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/initialise.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/tests/ - - -rwxr-xr-x 0 0 0 75 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/tests/__init__.py - - -rwxr-xr-x 0 0 0 2839 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/tests/ansi_test.py - - -rwxr-xr-x 0 0 0 10678 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/tests/ansitowin32_test.py - - -rwxr-xr-x 0 0 0 6741 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/tests/initialise_test.py - - -rwxr-xr-x 0 0 0 1866 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/tests/isatty_test.py - - -rwxr-xr-x 0 0 0 1079 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/tests/utils.py - - -rwxr-xr-x 0 0 0 3709 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/tests/winterm_test.py - - -rwxr-xr-x 0 0 0 6181 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/win32.py - - -rwxr-xr-x 0 0 0 7134 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/winterm.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/ + - -rwxr-xr-x 0 0 0 298 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/_aspect.pth + - -rwxr-xr-x 0 0 0 19 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/_virtualenv.pth + - -rwxr-xr-x 0 0 0 4342 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/_virtualenv.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama-0.4.6.dist-info/ + - -rwxr-xr-x 0 0 0 42 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama-0.4.6.dist-info/INSTALLER + - -rwxr-xr-x 0 0 0 17158 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama-0.4.6.dist-info/METADATA + - -rwxr-xr-x 0 0 0 105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama-0.4.6.dist-info/WHEEL + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama-0.4.6.dist-info/licenses/ + - -rwxr-xr-x 0 0 0 1491 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama-0.4.6.dist-info/licenses/LICENSE.txt + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/ + - -rwxr-xr-x 0 0 0 266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/__init__.py + - -rwxr-xr-x 0 0 0 2522 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/ansi.py + - -rwxr-xr-x 0 0 0 11128 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/ansitowin32.py + - -rwxr-xr-x 0 0 0 3325 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/initialise.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/ + - -rwxr-xr-x 0 0 0 75 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/__init__.py + - -rwxr-xr-x 0 0 0 2839 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/ansi_test.py + - -rwxr-xr-x 0 0 0 10678 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/ansitowin32_test.py + - -rwxr-xr-x 0 0 0 6741 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/initialise_test.py + - -rwxr-xr-x 0 0 0 1866 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/isatty_test.py + - -rwxr-xr-x 0 0 0 1079 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/utils.py + - -rwxr-xr-x 0 0 0 3709 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/winterm_test.py + - -rwxr-xr-x 0 0 0 6181 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/win32.py + - -rwxr-xr-x 0 0 0 7134 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/winterm.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/ + - -rwxr-xr-x 0 0 0 149 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama-0.4.6.dist-info/ + - -rwxr-xr-x 0 0 0 42 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama-0.4.6.dist-info/INSTALLER + - -rwxr-xr-x 0 0 0 17158 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama-0.4.6.dist-info/METADATA + - -rwxr-xr-x 0 0 0 105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama-0.4.6.dist-info/WHEEL + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama-0.4.6.dist-info/licenses/ + - -rwxr-xr-x 0 0 0 1491 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama-0.4.6.dist-info/licenses/LICENSE.txt + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/ + - -rwxr-xr-x 0 0 0 266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/__init__.py + - -rwxr-xr-x 0 0 0 2522 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/ansi.py + - -rwxr-xr-x 0 0 0 11128 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/ansitowin32.py + - -rwxr-xr-x 0 0 0 3325 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/initialise.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/tests/ + - -rwxr-xr-x 0 0 0 75 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/tests/__init__.py + - -rwxr-xr-x 0 0 0 2839 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/tests/ansi_test.py + - -rwxr-xr-x 0 0 0 10678 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/tests/ansitowin32_test.py + - -rwxr-xr-x 0 0 0 6741 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/tests/initialise_test.py + - -rwxr-xr-x 0 0 0 1866 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/tests/isatty_test.py + - -rwxr-xr-x 0 0 0 1079 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/tests/utils.py + - -rwxr-xr-x 0 0 0 3709 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/tests/winterm_test.py + - -rwxr-xr-x 0 0 0 6181 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/win32.py + - -rwxr-xr-x 0 0 0 7134 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/winterm.py --- layer: 2 files: - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/ - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/ - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/ - - -rwxr-xr-x 0 0 0 1275 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin + - -rwxr-xr-x 0 0 0 1245 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/internal-deps/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/internal-deps/adder/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/internal-deps/adder/__init__.py - - -rwxr-xr-x 0 0 0 32 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/internal-deps/adder/add.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_image_layer/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_image_layer/branding/ - - -rwxr-xr-x 0 0 0 42 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_image_layer/branding/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/bin/ - - -rwxr-xr-x 0 0 0 2853 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/bin/activate - - -rwxr-xr-x 0 0 0 854280 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/bin/python - - -rwxr-xr-x 0 0 0 854280 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/bin/python3 - - -rwxr-xr-x 0 0 0 854280 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/bin/python3.9 - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/ - - -rwxr-xr-x 0 0 0 343 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/pyvenv.cfg - - -rwxr-xr-x 0 0 0 299 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/__main__.py - - -rwxr-xr-x 0 0 0 1275 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/my_app_bin + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/internal-deps/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/internal-deps/adder/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/internal-deps/adder/__init__.py + - -rwxr-xr-x 0 0 0 32 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/internal-deps/adder/add.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_image_layer/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_image_layer/branding/ + - -rwxr-xr-x 0 0 0 42 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_image_layer/branding/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/bin/ + - -rwxr-xr-x 0 0 0 2843 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/bin/activate + - -rwxr-xr-x 0 0 0 5318464 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/bin/python + - -rwxr-xr-x 0 0 0 5318464 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/bin/python3 + - -rwxr-xr-x 0 0 0 5318464 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/bin/python3.9 + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/ + - -rwxr-xr-x 0 0 0 348 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/pyvenv.cfg + - -rwxr-xr-x 0 0 0 299 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/__main__.py + - -rwxr-xr-x 0 0 0 1245 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/my_app_bin - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/bazel_tools/ - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/bazel_tools/tools/ - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/bazel_tools/tools/bash/ - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/bazel_tools/tools/bash/runfiles/ - -rwxr-xr-x 0 0 0 21622 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/bazel_tools/tools/bash/runfiles/runfiles.bash - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/ diff --git a/py/tests/py_venv_image_layer/my_app_arm64_layers_listing.yaml b/py/tests/py_venv_image_layer/my_app_arm64_layers_listing.yaml index 4ab0374c..5cd7fea9 100644 --- a/py/tests/py_venv_image_layer/my_app_arm64_layers_listing.yaml +++ b/py/tests/py_venv_image_layer/my_app_arm64_layers_listing.yaml @@ -1,2508 +1,2511 @@ --- layer: 0 files: - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/bin/ - - -rwxr-xr-x 0 0 0 127 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/bin/2to3 - - -rwxr-xr-x 0 0 0 127 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/bin/2to3-3.9 - - -rwxr-xr-x 0 0 0 125 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/bin/idle3 - - -rwxr-xr-x 0 0 0 125 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/bin/idle3.9 - - -rwxr-xr-x 0 0 0 255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/bin/pip - - -rwxr-xr-x 0 0 0 255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/bin/pip3 - - -rwxr-xr-x 0 0 0 255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/bin/pip3.9 - - -rwxr-xr-x 0 0 0 110 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/bin/pydoc3 - - -rwxr-xr-x 0 0 0 110 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/bin/pydoc3.9 - - -rwxr-xr-x 0 0 0 66128 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/bin/python3 - - -rwxr-xr-x 0 0 0 3188 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/bin/python3-config - - -rwxr-xr-x 0 0 0 66128 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/bin/python3.9 - - -rwxr-xr-x 0 0 0 3188 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/bin/python3.9-config - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/ - - -rwxr-xr-x 0 0 0 26193 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/Python-ast.h - - -rwxr-xr-x 0 0 0 3532 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/Python.h - - -rwxr-xr-x 0 0 0 30476 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/abstract.h - - -rwxr-xr-x 0 0 0 1224 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/asdl.h - - -rwxr-xr-x 0 0 0 947 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/ast.h - - -rwxr-xr-x 0 0 0 468 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/bitset.h - - -rwxr-xr-x 0 0 0 264 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/bltinmodule.h - - -rwxr-xr-x 0 0 0 885 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/boolobject.h - - -rwxr-xr-x 0 0 0 1484 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/bytearrayobject.h - - -rwxr-xr-x 0 0 0 3048 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/bytesobject.h - - -rwxr-xr-x 0 0 0 712 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cellobject.h - - -rwxr-xr-x 0 0 0 5954 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/ceval.h - - -rwxr-xr-x 0 0 0 1657 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/classobject.h - - -rwxr-xr-x 0 0 0 318 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/code.h - - -rwxr-xr-x 0 0 0 6793 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/codecs.h - - -rwxr-xr-x 0 0 0 3778 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/compile.h - - -rwxr-xr-x 0 0 0 1806 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/complexobject.h - - -rwxr-xr-x 0 0 0 1962 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/context.h - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/ - - -rwxr-xr-x 0 0 0 14200 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/abstract.h - - -rwxr-xr-x 0 0 0 769 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/bytearrayobject.h - - -rwxr-xr-x 0 0 0 4114 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/bytesobject.h - - -rwxr-xr-x 0 0 0 1537 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/ceval.h - - -rwxr-xr-x 0 0 0 6989 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/code.h - - -rwxr-xr-x 0 0 0 3797 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/dictobject.h - - -rwxr-xr-x 0 0 0 721 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/fileobject.h - - -rwxr-xr-x 0 0 0 4004 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/fileutils.h - - -rwxr-xr-x 0 0 0 3059 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/frameobject.h - - -rwxr-xr-x 0 0 0 1473 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/import.h - - -rwxr-xr-x 0 0 0 16979 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/initconfig.h - - -rwxr-xr-x 0 0 0 456 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/interpreteridobject.h - - -rwxr-xr-x 0 0 0 1364 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/listobject.h - - -rwxr-xr-x 0 0 0 1399 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/methodobject.h - - -rwxr-xr-x 0 0 0 19358 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/object.h - - -rwxr-xr-x 0 0 0 4456 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/objimpl.h - - -rwxr-xr-x 0 0 0 5101 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/pyerrors.h - - -rwxr-xr-x 0 0 0 2096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/pylifecycle.h - - -rwxr-xr-x 0 0 0 3511 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/pymem.h - - -rwxr-xr-x 0 0 0 10134 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/pystate.h - - -rwxr-xr-x 0 0 0 575 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/sysmodule.h - - -rwxr-xr-x 0 0 0 473 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/traceback.h - - -rwxr-xr-x 0 0 0 1036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/tupleobject.h - - -rwxr-xr-x 0 0 0 46154 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/cpython/unicodeobject.h - - -rwxr-xr-x 0 0 0 9255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/datetime.h - - -rwxr-xr-x 0 0 0 3019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/descrobject.h - - -rwxr-xr-x 0 0 0 3715 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/dictobject.h - - -rwxr-xr-x 0 0 0 22469 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/dynamic_annotations.h - - -rwxr-xr-x 0 0 0 253 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/enumobject.h - - -rwxr-xr-x 0 0 0 1624 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/errcode.h - - -rwxr-xr-x 0 0 0 1209 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/eval.h - - -rwxr-xr-x 0 0 0 1098 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/exports.h - - -rwxr-xr-x 0 0 0 1571 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/fileobject.h - - -rwxr-xr-x 0 0 0 597 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/fileutils.h - - -rwxr-xr-x 0 0 0 4360 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/floatobject.h - - -rwxr-xr-x 0 0 0 337 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/frameobject.h - - -rwxr-xr-x 0 0 0 4057 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/funcobject.h - - -rwxr-xr-x 0 0 0 334 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/genericaliasobject.h - - -rwxr-xr-x 0 0 0 3525 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/genobject.h - - -rwxr-xr-x 0 0 0 2118 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/graminit.h - - -rwxr-xr-x 0 0 0 1821 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/grammar.h - - -rwxr-xr-x 0 0 0 3026 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/import.h - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/ - - -rwxr-xr-x 0 0 0 953 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pegen_interface.h - - -rwxr-xr-x 0 0 0 479 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_abstract.h - - -rwxr-xr-x 0 0 0 1126 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_accu.h - - -rwxr-xr-x 0 0 0 16977 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_atomic.h - - -rwxr-xr-x 0 0 0 3384 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_bytes_methods.h - - -rwxr-xr-x 0 0 0 2620 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_byteswap.h - - -rwxr-xr-x 0 0 0 870 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_call.h - - -rwxr-xr-x 0 0 0 3403 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_ceval.h - - -rwxr-xr-x 0 0 0 541 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_code.h - - -rwxr-xr-x 0 0 0 2809 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_condvar.h - - -rwxr-xr-x 0 0 0 800 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_context.h - - -rwxr-xr-x 0 0 0 646 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_dtoa.h - - -rwxr-xr-x 0 0 0 1541 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_fileutils.h - - -rwxr-xr-x 0 0 0 6647 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_gc.h - - -rwxr-xr-x 0 0 0 490 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_getopt.h - - -rwxr-xr-x 0 0 0 1565 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_gil.h - - -rwxr-xr-x 0 0 0 3697 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_hamt.h - - -rwxr-xr-x 0 0 0 4197 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_hashtable.h - - -rwxr-xr-x 0 0 0 473 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_import.h - - -rwxr-xr-x 0 0 0 5233 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_initconfig.h - - -rwxr-xr-x 0 0 0 5299 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_interp.h - - -rwxr-xr-x 0 0 0 1548 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_long.h - - -rwxr-xr-x 0 0 0 4157 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_object.h - - -rwxr-xr-x 0 0 0 1936 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_pathconfig.h - - -rwxr-xr-x 0 0 0 2032 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_pyerrors.h - - -rwxr-xr-x 0 0 0 206 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_pyhash.h - - -rwxr-xr-x 0 0 0 3741 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_pylifecycle.h - - -rwxr-xr-x 0 0 0 3363 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_pymem.h - - -rwxr-xr-x 0 0 0 3583 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_pystate.h - - -rwxr-xr-x 0 0 0 4452 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_runtime.h - - -rwxr-xr-x 0 0 0 548 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_sysmodule.h - - -rwxr-xr-x 0 0 0 3056 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_traceback.h - - -rwxr-xr-x 0 0 0 442 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_tupleobject.h - - -rwxr-xr-x 0 0 0 633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_warnings.h - - -rwxr-xr-x 0 0 0 334 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/interpreteridobject.h - - -rwxr-xr-x 0 0 0 861 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/intrcheck.h - - -rwxr-xr-x 0 0 0 521 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/iterobject.h - - -rwxr-xr-x 0 0 0 1781 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/listobject.h - - -rwxr-xr-x 0 0 0 3799 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/longintrepr.h - - -rwxr-xr-x 0 0 0 9513 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/longobject.h - - -rwxr-xr-x 0 0 0 803 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/marshal.h - - -rwxr-xr-x 0 0 0 2764 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/memoryobject.h - - -rwxr-xr-x 0 0 0 3775 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/methodobject.h - - -rwxr-xr-x 0 0 0 9959 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/modsupport.h - - -rwxr-xr-x 0 0 0 2361 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/moduleobject.h - - -rwxr-xr-x 0 0 0 349 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/namespaceobject.h - - -rwxr-xr-x 0 0 0 1281 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/node.h - - -rwxr-xr-x 0 0 0 24628 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/object.h - - -rwxr-xr-x 0 0 0 8423 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/objimpl.h - - -rwxr-xr-x 0 0 0 1299 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/odictobject.h - - -rwxr-xr-x 0 0 0 4900 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/opcode.h - - -rwxr-xr-x 0 0 0 737 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/osdefs.h - - -rwxr-xr-x 0 0 0 291 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/osmodule.h - - -rwxr-xr-x 0 0 0 2958 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/parsetok.h - - -rwxr-xr-x 0 0 0 1299 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/patchlevel.h - - -rwxr-xr-x 0 0 0 846 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/picklebufobject.h - - -rwxr-xr-x 0 0 0 2474 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/py_curses.h - - -rwxr-xr-x 0 0 0 2744 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/pyarena.h - - -rwxr-xr-x 0 0 0 1725 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/pycapsule.h - - -rwxr-xr-x 0 0 0 48076 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/pyconfig.h - - -rwxr-xr-x 0 0 0 1387 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/pyctype.h - - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/pydebug.h - - -rwxr-xr-x 0 0 0 2413 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/pydtrace.h - - -rwxr-xr-x 0 0 0 12427 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/pyerrors.h - - -rwxr-xr-x 0 0 0 2450 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/pyexpat.h - - -rwxr-xr-x 0 0 0 444 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/pyfpe.h - - -rwxr-xr-x 0 0 0 466 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/pyframe.h - - -rwxr-xr-x 0 0 0 4263 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/pyhash.h - - -rwxr-xr-x 0 0 0 2136 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/pylifecycle.h - - -rwxr-xr-x 0 0 0 2989 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/pymacconfig.h - - -rwxr-xr-x 0 0 0 4920 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/pymacro.h - - -rwxr-xr-x 0 0 0 8580 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/pymath.h - - -rwxr-xr-x 0 0 0 4406 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/pymem.h - - -rwxr-xr-x 0 0 0 31273 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/pyport.h - - -rwxr-xr-x 0 0 0 5250 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/pystate.h - - -rwxr-xr-x 0 0 0 436 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/pystrcmp.h - - -rwxr-xr-x 0 0 0 849 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/pystrhex.h - - -rwxr-xr-x 0 0 0 1483 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/pystrtod.h - - -rwxr-xr-x 0 0 0 7673 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/pythonrun.h - - -rwxr-xr-x 0 0 0 5938 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/pythread.h - - -rwxr-xr-x 0 0 0 8928 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/pytime.h - - -rwxr-xr-x 0 0 0 628 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/rangeobject.h - - -rwxr-xr-x 0 0 0 3324 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/setobject.h - - -rwxr-xr-x 0 0 0 2516 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/sliceobject.h - - -rwxr-xr-x 0 0 0 2030 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/structmember.h - - -rwxr-xr-x 0 0 0 1390 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/structseq.h - - -rwxr-xr-x 0 0 0 5307 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/symtable.h - - -rwxr-xr-x 0 0 0 1242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/sysmodule.h - - -rwxr-xr-x 0 0 0 2642 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/token.h - - -rwxr-xr-x 0 0 0 584 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/traceback.h - - -rwxr-xr-x 0 0 0 1114 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/tracemalloc.h - - -rwxr-xr-x 0 0 0 1614 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/tupleobject.h - - -rwxr-xr-x 0 0 0 2350 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/typeslots.h - - -rwxr-xr-x 0 0 0 1056 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/ucnhash.h - - -rwxr-xr-x 0 0 0 35426 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/unicodeobject.h - - -rwxr-xr-x 0 0 0 1776 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/warnings.h - - -rwxr-xr-x 0 0 0 2863 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/include/python3.9/weakrefobject.h - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/ - - -rwxr-xr-x 0 0 0 13870 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Balloon.tcl - - -rwxr-xr-x 0 0 0 2791 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/BtnBox.tcl - - -rwxr-xr-x 0 0 0 8098 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/CObjView.tcl - - -rwxr-xr-x 0 0 0 5326 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/ChkList.tcl - - -rwxr-xr-x 0 0 0 37829 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/ComboBox.tcl - - -rwxr-xr-x 0 0 0 903 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Compat.tcl - - -rwxr-xr-x 0 0 0 15923 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Console.tcl - - -rwxr-xr-x 0 0 0 12884 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Control.tcl - - -rwxr-xr-x 0 0 0 3116 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/DefSchm.tcl - - -rwxr-xr-x 0 0 0 4471 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/DialogS.tcl - - -rwxr-xr-x 0 0 0 5632 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/DirBox.tcl - - -rwxr-xr-x 0 0 0 2301 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/DirDlg.tcl - - -rwxr-xr-x 0 0 0 7336 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/DirList.tcl - - -rwxr-xr-x 0 0 0 9322 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/DirTree.tcl - - -rwxr-xr-x 0 0 0 4191 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/DragDrop.tcl - - -rwxr-xr-x 0 0 0 1051 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/DtlList.tcl - - -rwxr-xr-x 0 0 0 11826 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/EFileBox.tcl - - -rwxr-xr-x 0 0 0 1783 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/EFileDlg.tcl - - -rwxr-xr-x 0 0 0 5448 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Event.tcl - - -rwxr-xr-x 0 0 0 14904 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/FileBox.tcl - - -rwxr-xr-x 0 0 0 2591 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/FileCbx.tcl - - -rwxr-xr-x 0 0 0 2260 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/FileDlg.tcl - - -rwxr-xr-x 0 0 0 7589 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/FileEnt.tcl - - -rwxr-xr-x 0 0 0 3308 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/FloatEnt.tcl - - -rwxr-xr-x 0 0 0 22787 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Grid.tcl - - -rwxr-xr-x 0 0 0 19065 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/HList.tcl - - -rwxr-xr-x 0 0 0 4704 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/HListDD.tcl - - -rwxr-xr-x 0 0 0 6382 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/IconView.tcl - - -rwxr-xr-x 0 0 0 6431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Init.tcl - - -rwxr-xr-x 0 0 0 2229 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/LabEntry.tcl - - -rwxr-xr-x 0 0 0 1230 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/LabFrame.tcl - - -rwxr-xr-x 0 0 0 4108 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/LabWidg.tcl - - -rwxr-xr-x 0 0 0 3734 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/ListNBk.tcl - - -rwxr-xr-x 0 0 0 3251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Meter.tcl - - -rwxr-xr-x 0 0 0 3861 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/MultView.tcl - - -rwxr-xr-x 0 0 0 6407 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/NoteBook.tcl - - -rwxr-xr-x 0 0 0 3164 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/OldUtil.tcl - - -rwxr-xr-x 0 0 0 9786 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/OptMenu.tcl - - -rwxr-xr-x 0 0 0 29562 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/PanedWin.tcl - - -rwxr-xr-x 0 0 0 5739 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/PopMenu.tcl - - -rwxr-xr-x 0 0 0 10955 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Primitiv.tcl - - -rwxr-xr-x 0 0 0 1013 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/README.txt - - -rwxr-xr-x 0 0 0 13752 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/ResizeH.tcl - - -rwxr-xr-x 0 0 0 6178 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/SGrid.tcl - - -rwxr-xr-x 0 0 0 3933 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/SHList.tcl - - -rwxr-xr-x 0 0 0 7433 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/SListBox.tcl - - -rwxr-xr-x 0 0 0 2521 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/STList.tcl - - -rwxr-xr-x 0 0 0 3297 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/SText.tcl - - -rwxr-xr-x 0 0 0 10213 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/SWidget.tcl - - -rwxr-xr-x 0 0 0 7182 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/SWindow.tcl - - -rwxr-xr-x 0 0 0 7504 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Select.tcl - - -rwxr-xr-x 0 0 0 1129 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Shell.tcl - - -rwxr-xr-x 0 0 0 1204 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/SimpDlg.tcl - - -rwxr-xr-x 0 0 0 2076 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/StackWin.tcl - - -rwxr-xr-x 0 0 0 1395 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/StatBar.tcl - - -rwxr-xr-x 0 0 0 1727 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/StdBBox.tcl - - -rwxr-xr-x 0 0 0 1222 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/StdShell.tcl - - -rwxr-xr-x 0 0 0 18962 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/TList.tcl - - -rwxr-xr-x 0 0 0 10135 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Tix.tcl - - -rwxr-xr-x 0 0 0 4890 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Tree.tcl - - -rwxr-xr-x 0 0 0 11230 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Utils.tcl - - -rwxr-xr-x 0 0 0 5280 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/VResize.tcl - - -rwxr-xr-x 0 0 0 10081 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/VStack.tcl - - -rwxr-xr-x 0 0 0 4605 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/VTree.tcl - - -rwxr-xr-x 0 0 0 2664 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Variable.tcl - - -rwxr-xr-x 0 0 0 1005 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/WInfo.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/ - - -rwxr-xr-x 0 0 0 90 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/act_fold.gif - - -rwxr-xr-x 0 0 0 221 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/act_fold.xbm - - -rwxr-xr-x 0 0 0 436 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/act_fold.xpm - - -rwxr-xr-x 0 0 0 123 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/balarrow.xbm - - -rwxr-xr-x 0 0 0 263 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/cbxarrow.xbm - - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/ck_def.xbm - - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/ck_off.xbm - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/ck_on.xbm - - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/cross.xbm - - -rwxr-xr-x 0 0 0 99 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/decr.xbm - - -rwxr-xr-x 0 0 0 326 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/drop.xbm - - -rwxr-xr-x 0 0 0 76 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/file.gif - - -rwxr-xr-x 0 0 0 233 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/file.xbm - - -rwxr-xr-x 0 0 0 298 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/file.xpm - - -rwxr-xr-x 0 0 0 79 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/folder.gif - - -rwxr-xr-x 0 0 0 215 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/folder.xbm - - -rwxr-xr-x 0 0 0 418 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/folder.xpm - - -rwxr-xr-x 0 0 0 896 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/harddisk.xbm - - -rwxr-xr-x 0 0 0 969 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/hourglas.mask - - -rwxr-xr-x 0 0 0 940 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/hourglas.xbm - - -rwxr-xr-x 0 0 0 99 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/incr.xbm - - -rwxr-xr-x 0 0 0 159 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/info.gif - - -rwxr-xr-x 0 0 0 1258 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/info.xpm - - -rwxr-xr-x 0 0 0 284 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/maximize.xbm - - -rwxr-xr-x 0 0 0 284 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minimize.xbm - - -rwxr-xr-x 0 0 0 57 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minus.gif - - -rwxr-xr-x 0 0 0 198 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minus.xbm - - -rwxr-xr-x 0 0 0 201 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minus.xpm - - -rwxr-xr-x 0 0 0 59 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minusarm.gif - - -rwxr-xr-x 0 0 0 207 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minusarm.xbm - - -rwxr-xr-x 0 0 0 220 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minusarm.xpm - - -rwxr-xr-x 0 0 0 263 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/mktransgif.tcl - - -rwxr-xr-x 0 0 0 893 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/network.xbm - - -rwxr-xr-x 0 0 0 176 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/no_entry.gif - - -rwxr-xr-x 0 0 0 1274 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/no_entry.xpm - - -rwxr-xr-x 0 0 0 221 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/openfile.xbm - - -rwxr-xr-x 0 0 0 84 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/openfold.gif - - -rwxr-xr-x 0 0 0 221 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/openfold.xbm - - -rwxr-xr-x 0 0 0 418 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/openfold.xpm - - -rwxr-xr-x 0 0 0 58 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plus.gif - - -rwxr-xr-x 0 0 0 195 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plus.xbm - - -rwxr-xr-x 0 0 0 200 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plus.xpm - - -rwxr-xr-x 0 0 0 60 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plusarm.gif - - -rwxr-xr-x 0 0 0 204 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plusarm.xbm - - -rwxr-xr-x 0 0 0 212 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plusarm.xpm - - -rwxr-xr-x 0 0 0 305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/resize1.xbm - - -rwxr-xr-x 0 0 0 305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/resize2.xbm - - -rwxr-xr-x 0 0 0 281 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/restore.xbm - - -rwxr-xr-x 0 0 0 79 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/srcfile.gif - - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/srcfile.xbm - - -rwxr-xr-x 0 0 0 294 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/srcfile.xpm - - -rwxr-xr-x 0 0 0 278 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/system.xbm - - -rwxr-xr-x 0 0 0 79 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/textfile.gif - - -rwxr-xr-x 0 0 0 245 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/textfile.xbm - - -rwxr-xr-x 0 0 0 302 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/textfile.xpm - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/tick.xbm - - -rwxr-xr-x 0 0 0 180 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/warning.gif - - -rwxr-xr-x 0 0 0 1262 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/warning.xpm - - -rwxr-xr-x 0 0 0 4165 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/fs.tcl - - -rwxr-xr-x 0 0 0 2828 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/license.terms - - -rwxr-xr-x 0 0 0 126 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pkgIndex.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/ - - -rwxr-xr-x 0 0 0 641 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/10Point.fs - - -rwxr-xr-x 0 0 0 2046 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/10Point.fsc - - -rwxr-xr-x 0 0 0 640 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/12Point.fs - - -rwxr-xr-x 0 0 0 2045 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/12Point.fsc - - -rwxr-xr-x 0 0 0 639 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/14Point.fs - - -rwxr-xr-x 0 0 0 2105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/14Point.fsc - - -rwxr-xr-x 0 0 0 1028 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/Bisque.cs - - -rwxr-xr-x 0 0 0 22539 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/Bisque.csc - - -rwxr-xr-x 0 0 0 1045 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/Blue.cs - - -rwxr-xr-x 0 0 0 22552 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/Blue.csc - - -rwxr-xr-x 0 0 0 1045 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/Gray.cs - - -rwxr-xr-x 0 0 0 22552 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/Gray.csc - - -rwxr-xr-x 0 0 0 541 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/Old12Pt.fs - - -rwxr-xr-x 0 0 0 499 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/Old14Pt.fs - - -rwxr-xr-x 0 0 0 1026 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/SGIGray.cs - - -rwxr-xr-x 0 0 0 22537 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/SGIGray.csc - - -rwxr-xr-x 0 0 0 1024 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/TK.cs - - -rwxr-xr-x 0 0 0 2023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/TK.csc - - -rwxr-xr-x 0 0 0 506 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/TK.fs - - -rwxr-xr-x 0 0 0 569 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/TK.fsc - - -rwxr-xr-x 0 0 0 1026 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/TixGray.cs - - -rwxr-xr-x 0 0 0 22539 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/TixGray.csc - - -rwxr-xr-x 0 0 0 2246 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/TkWin.cs - - -rwxr-xr-x 0 0 0 22302 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/TkWin.csc - - -rwxr-xr-x 0 0 0 390 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/TkWin.fs - - -rwxr-xr-x 0 0 0 1674 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/TkWin.fsc - - -rwxr-xr-x 0 0 0 1452 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.cs - - -rwxr-xr-x 0 0 0 14566 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.csc - - -rwxr-xr-x 0 0 0 755 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.fs - - -rwxr-xr-x 0 0 0 2184 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.fsc - - -rwxr-xr-x 0 0 0 3597 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.py - - -rwxr-xr-x 0 0 0 34898 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.tcl - - -rwxr-xr-x 0 0 0 4466 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.txt - - -rwxr-xr-x 0 0 0 271 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/pkgIndex.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/itcl4.2.2/ - - -rwxr-xr-x 0 0 0 5153 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/itcl4.2.2/itcl.tcl - - -rwxr-xr-x 0 0 0 2932 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/itcl4.2.2/itclConfig.sh - - -rwxr-xr-x 0 0 0 21056 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/itcl4.2.2/itclHullCmds.tcl - - -rwxr-xr-x 0 0 0 12651 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/itcl4.2.2/itclWidget.tcl - - -rwxr-xr-x 0 0 0 40392976 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/libpython3.9.so.1.0 - - -rwxr-xr-x 0 0 0 66328 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/libpython3.so - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/pkgconfig/ - - -rwxr-xr-x 0 0 0 321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/pkgconfig/python-3.9-embed.pc - - -rwxr-xr-x 0 0 0 295 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/pkgconfig/python-3.9.pc - - -rwxr-xr-x 0 0 0 321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/pkgconfig/python3-embed.pc - - -rwxr-xr-x 0 0 0 295 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/pkgconfig/python3.pc - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ - - -rwxr-xr-x 0 0 0 13937 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/LICENSE.txt - - -rwxr-xr-x 0 0 0 5147 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/__future__.py - - -rwxr-xr-x 0 0 0 64 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/__phello__.foo.py - - -rwxr-xr-x 0 0 0 3389 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/_aix_support.py - - -rwxr-xr-x 0 0 0 1801 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/_bootlocale.py - - -rwxr-xr-x 0 0 0 2675 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/_bootsubprocess.py - - -rwxr-xr-x 0 0 0 29374 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/_collections_abc.py - - -rwxr-xr-x 0 0 0 8749 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/_compat_pickle.py - - -rwxr-xr-x 0 0 0 5340 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/_compression.py - - -rwxr-xr-x 0 0 0 14623 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/_markupbase.py - - -rwxr-xr-x 0 0 0 21773 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/_osx_support.py - - -rwxr-xr-x 0 0 0 6189 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/_py_abc.py - - -rwxr-xr-x 0 0 0 228666 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/_pydecimal.py - - -rwxr-xr-x 0 0 0 93316 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/_pyio.py - - -rwxr-xr-x 0 0 0 3115 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/_sitebuiltins.py - - -rwxr-xr-x 0 0 0 25277 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/_strptime.py - - -rwxr-xr-x 0 0 0 30378 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/_sysconfigdata__linux_aarch64-linux-gnu.py - - -rwxr-xr-x 0 0 0 7220 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/_threading_local.py - - -rwxr-xr-x 0 0 0 5923 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/_weakrefset.py - - -rwxr-xr-x 0 0 0 4920 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/abc.py - - -rwxr-xr-x 0 0 0 32605 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/aifc.py - - -rwxr-xr-x 0 0 0 500 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/antigravity.py - - -rwxr-xr-x 0 0 0 98119 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/argparse.py - - -rwxr-xr-x 0 0 0 56179 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ast.py - - -rwxr-xr-x 0 0 0 11321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asynchat.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/ - - -rwxr-xr-x 0 0 0 1279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/__init__.py - - -rwxr-xr-x 0 0 0 3343 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/__main__.py - - -rwxr-xr-x 0 0 0 74192 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/base_events.py - - -rwxr-xr-x 0 0 0 2574 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/base_futures.py - - -rwxr-xr-x 0 0 0 8843 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/base_subprocess.py - - -rwxr-xr-x 0 0 0 2467 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/base_tasks.py - - -rwxr-xr-x 0 0 0 888 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/constants.py - - -rwxr-xr-x 0 0 0 8797 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/coroutines.py - - -rwxr-xr-x 0 0 0 26451 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/events.py - - -rwxr-xr-x 0 0 0 1633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/exceptions.py - - -rwxr-xr-x 0 0 0 2404 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/format_helpers.py - - -rwxr-xr-x 0 0 0 14042 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/futures.py - - -rwxr-xr-x 0 0 0 15181 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/locks.py - - -rwxr-xr-x 0 0 0 124 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/log.py - - -rwxr-xr-x 0 0 0 32146 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/proactor_events.py - - -rwxr-xr-x 0 0 0 6957 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/protocols.py - - -rwxr-xr-x 0 0 0 8305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/queues.py - - -rwxr-xr-x 0 0 0 2125 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/runners.py - - -rwxr-xr-x 0 0 0 39500 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/selector_events.py - - -rwxr-xr-x 0 0 0 27459 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/sslproto.py - - -rwxr-xr-x 0 0 0 5992 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/staggered.py - - -rwxr-xr-x 0 0 0 26656 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/streams.py - - -rwxr-xr-x 0 0 0 8070 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/subprocess.py - - -rwxr-xr-x 0 0 0 34419 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/tasks.py - - -rwxr-xr-x 0 0 0 790 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/threads.py - - -rwxr-xr-x 0 0 0 10724 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/transports.py - - -rwxr-xr-x 0 0 0 5876 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/trsock.py - - -rwxr-xr-x 0 0 0 51754 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/unix_events.py - - -rwxr-xr-x 0 0 0 33004 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/windows_events.py - - -rwxr-xr-x 0 0 0 5060 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/windows_utils.py - - -rwxr-xr-x 0 0 0 20102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/asyncore.py - - -rwxr-xr-x 0 0 0 19861 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/base64.py - - -rwxr-xr-x 0 0 0 31389 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/bdb.py - - -rwxr-xr-x 0 0 0 14784 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/binhex.py - - -rwxr-xr-x 0 0 0 2350 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/bisect.py - - -rwxr-xr-x 0 0 0 12447 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/bz2.py - - -rwxr-xr-x 0 0 0 6347 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/cProfile.py - - -rwxr-xr-x 0 0 0 24832 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/calendar.py - - -rwxr-xr-x 0 0 0 33963 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/cgi.py - - -rwxr-xr-x 0 0 0 12096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/cgitb.py - - -rwxr-xr-x 0 0 0 5435 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/chunk.py - - -rwxr-xr-x 0 0 0 14860 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/cmd.py - - -rwxr-xr-x 0 0 0 10622 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/code.py - - -rwxr-xr-x 0 0 0 36673 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/codecs.py - - -rwxr-xr-x 0 0 0 6326 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/codeop.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/collections/ - - -rwxr-xr-x 0 0 0 49819 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/collections/__init__.py - - -rwxr-xr-x 0 0 0 119 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/collections/abc.py - - -rwxr-xr-x 0 0 0 4064 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/colorsys.py - - -rwxr-xr-x 0 0 0 20105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/compileall.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/concurrent/ - - -rwxr-xr-x 0 0 0 38 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/concurrent/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/concurrent/futures/ - - -rwxr-xr-x 0 0 0 1554 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/concurrent/futures/__init__.py - - -rwxr-xr-x 0 0 0 22577 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/concurrent/futures/_base.py - - -rwxr-xr-x 0 0 0 31395 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/concurrent/futures/process.py - - -rwxr-xr-x 0 0 0 8771 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/concurrent/futures/thread.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/config-3.9-aarch64-linux-gnu/ - - -rwxr-xr-x 0 0 0 113142 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/config-3.9-aarch64-linux-gnu/Makefile - - -rwxr-xr-x 0 0 0 15019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/config-3.9-aarch64-linux-gnu/Setup - - -rwxr-xr-x 0 0 0 3061 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/config-3.9-aarch64-linux-gnu/Setup.local - - -rwxr-xr-x 0 0 0 8848 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/config-3.9-aarch64-linux-gnu/config.c - - -rwxr-xr-x 0 0 0 1623 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/config-3.9-aarch64-linux-gnu/config.c.in - - -rwxr-xr-x 0 0 0 15368 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/config-3.9-aarch64-linux-gnu/install-sh - - -rwxr-xr-x 0 0 0 7929 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/config-3.9-aarch64-linux-gnu/makesetup - - -rwxr-xr-x 0 0 0 2069 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/config-3.9-aarch64-linux-gnu/python-config.py - - -rwxr-xr-x 0 0 0 36144 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/config-3.9-aarch64-linux-gnu/python.o - - -rwxr-xr-x 0 0 0 54584 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/configparser.py - - -rwxr-xr-x 0 0 0 24624 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/contextlib.py - - -rwxr-xr-x 0 0 0 129 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/contextvars.py - - -rwxr-xr-x 0 0 0 8650 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/copy.py - - -rwxr-xr-x 0 0 0 7274 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/copyreg.py - - -rwxr-xr-x 0 0 0 3819 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/crypt.py - - -rwxr-xr-x 0 0 0 16144 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/csv.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/ - - -rwxr-xr-x 0 0 0 18046 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/__init__.py - - -rwxr-xr-x 0 0 0 12575 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/_aix.py - - -rwxr-xr-x 0 0 0 2000 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/_endian.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/ - - -rwxr-xr-x 0 0 0 296 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/README.ctypes - - -rwxr-xr-x 0 0 0 154 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/__init__.py - - -rwxr-xr-x 0 0 0 5283 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/dyld.py - - -rwxr-xr-x 0 0 0 1828 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/dylib.py - - -rwxr-xr-x 0 0 0 84 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/fetch_macholib - - -rwxr-xr-x 0 0 0 75 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/fetch_macholib.bat - - -rwxr-xr-x 0 0 0 2201 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/framework.py - - -rwxr-xr-x 0 0 0 13879 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/util.py - - -rwxr-xr-x 0 0 0 5628 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/wintypes.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/curses/ - - -rwxr-xr-x 0 0 0 3369 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/curses/__init__.py - - -rwxr-xr-x 0 0 0 2547 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/curses/ascii.py - - -rwxr-xr-x 0 0 0 5634 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/curses/has_key.py - - -rwxr-xr-x 0 0 0 87 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/curses/panel.py - - -rwxr-xr-x 0 0 0 7657 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/curses/textpad.py - - -rwxr-xr-x 0 0 0 49586 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/dataclasses.py - - -rwxr-xr-x 0 0 0 89177 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/datetime.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/dbm/ - - -rwxr-xr-x 0 0 0 5839 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/dbm/__init__.py - - -rwxr-xr-x 0 0 0 11536 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/dbm/dumb.py - - -rwxr-xr-x 0 0 0 72 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/dbm/gnu.py - - -rwxr-xr-x 0 0 0 70 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/dbm/ndbm.py - - -rwxr-xr-x 0 0 0 320 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/decimal.py - - -rwxr-xr-x 0 0 0 83307 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/difflib.py - - -rwxr-xr-x 0 0 0 20570 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/dis.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/ - - -rwxr-xr-x 0 0 0 244 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/README - - -rwxr-xr-x 0 0 0 236 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/__init__.py - - -rwxr-xr-x 0 0 0 20007 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/_msvccompiler.py - - -rwxr-xr-x 0 0 0 8572 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/archive_util.py - - -rwxr-xr-x 0 0 0 14894 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/bcppcompiler.py - - -rwxr-xr-x 0 0 0 47418 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/ccompiler.py - - -rwxr-xr-x 0 0 0 18079 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/cmd.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/ - - -rwxr-xr-x 0 0 0 799 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/__init__.py - - -rwxr-xr-x 0 0 0 5562 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist.py - - -rwxr-xr-x 0 0 0 4913 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist_dumb.py - - -rwxr-xr-x 0 0 0 35579 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist_msi.py - - -rwxr-xr-x 0 0 0 21537 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist_rpm.py - - -rwxr-xr-x 0 0 0 16030 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist_wininst.py - - -rwxr-xr-x 0 0 0 5767 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/build.py - - -rwxr-xr-x 0 0 0 8022 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/build_clib.py - - -rwxr-xr-x 0 0 0 31635 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/build_ext.py - - -rwxr-xr-x 0 0 0 17190 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/build_py.py - - -rwxr-xr-x 0 0 0 6232 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/build_scripts.py - - -rwxr-xr-x 0 0 0 5636 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/check.py - - -rwxr-xr-x 0 0 0 2776 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/clean.py - - -rwxr-xr-x 0 0 0 633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/command_template - - -rwxr-xr-x 0 0 0 13117 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/config.py - - -rwxr-xr-x 0 0 0 26805 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/install.py - - -rwxr-xr-x 0 0 0 2822 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/install_data.py - - -rwxr-xr-x 0 0 0 2603 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/install_egg_info.py - - -rwxr-xr-x 0 0 0 1298 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/install_headers.py - - -rwxr-xr-x 0 0 0 8397 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/install_lib.py - - -rwxr-xr-x 0 0 0 2017 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/install_scripts.py - - -rwxr-xr-x 0 0 0 11712 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/register.py - - -rwxr-xr-x 0 0 0 19005 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/sdist.py - - -rwxr-xr-x 0 0 0 7621 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/upload.py - - -rwxr-xr-x 0 0 0 4827 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/config.py - - -rwxr-xr-x 0 0 0 8876 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/core.py - - -rwxr-xr-x 0 0 0 16380 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/cygwinccompiler.py - - -rwxr-xr-x 0 0 0 139 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/debug.py - - -rwxr-xr-x 0 0 0 3491 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/dep_util.py - - -rwxr-xr-x 0 0 0 7778 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/dir_util.py - - -rwxr-xr-x 0 0 0 50385 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/dist.py - - -rwxr-xr-x 0 0 0 3577 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/errors.py - - -rwxr-xr-x 0 0 0 10515 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/extension.py - - -rwxr-xr-x 0 0 0 17784 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/fancy_getopt.py - - -rwxr-xr-x 0 0 0 8148 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/file_util.py - - -rwxr-xr-x 0 0 0 12832 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/filelist.py - - -rwxr-xr-x 0 0 0 1969 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/log.py - - -rwxr-xr-x 0 0 0 30453 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/msvc9compiler.py - - -rwxr-xr-x 0 0 0 23540 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/msvccompiler.py - - -rwxr-xr-x 0 0 0 4660 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/spawn.py - - -rwxr-xr-x 0 0 0 20632 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/sysconfig.py - - -rwxr-xr-x 0 0 0 12483 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/text_file.py - - -rwxr-xr-x 0 0 0 14818 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/unixccompiler.py - - -rwxr-xr-x 0 0 0 20913 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/util.py - - -rwxr-xr-x 0 0 0 12514 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/version.py - - -rwxr-xr-x 0 0 0 5133 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/distutils/versionpredicate.py - - -rwxr-xr-x 0 0 0 104568 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/doctest.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/ - - -rwxr-xr-x 0 0 0 1766 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/__init__.py - - -rwxr-xr-x 0 0 0 8541 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/_encoded_words.py - - -rwxr-xr-x 0 0 0 106981 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/_header_value_parser.py - - -rwxr-xr-x 0 0 0 17722 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/_parseaddr.py - - -rwxr-xr-x 0 0 0 15073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/_policybase.py - - -rwxr-xr-x 0 0 0 9561 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/architecture.rst - - -rwxr-xr-x 0 0 0 3558 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/base64mime.py - - -rwxr-xr-x 0 0 0 17128 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/charset.py - - -rwxr-xr-x 0 0 0 10555 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/contentmanager.py - - -rwxr-xr-x 0 0 0 1786 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/encoders.py - - -rwxr-xr-x 0 0 0 3647 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/errors.py - - -rwxr-xr-x 0 0 0 22780 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/feedparser.py - - -rwxr-xr-x 0 0 0 20196 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/generator.py - - -rwxr-xr-x 0 0 0 24102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/header.py - - -rwxr-xr-x 0 0 0 20628 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/headerregistry.py - - -rwxr-xr-x 0 0 0 2135 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/iterators.py - - -rwxr-xr-x 0 0 0 47060 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/message.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/mime/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/mime/__init__.py - - -rwxr-xr-x 0 0 0 1321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/mime/application.py - - -rwxr-xr-x 0 0 0 2739 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/mime/audio.py - - -rwxr-xr-x 0 0 0 916 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/mime/base.py - - -rwxr-xr-x 0 0 0 1829 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/mime/image.py - - -rwxr-xr-x 0 0 0 1317 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/mime/message.py - - -rwxr-xr-x 0 0 0 1621 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/mime/multipart.py - - -rwxr-xr-x 0 0 0 691 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/mime/nonmultipart.py - - -rwxr-xr-x 0 0 0 1437 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/mime/text.py - - -rwxr-xr-x 0 0 0 5041 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/parser.py - - -rwxr-xr-x 0 0 0 10383 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/policy.py - - -rwxr-xr-x 0 0 0 9858 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/quoprimime.py - - -rwxr-xr-x 0 0 0 13281 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/email/utils.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/ - - -rwxr-xr-x 0 0 0 5588 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/__init__.py - - -rwxr-xr-x 0 0 0 15677 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/aliases.py - - -rwxr-xr-x 0 0 0 1248 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/ascii.py - - -rwxr-xr-x 0 0 0 1533 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/base64_codec.py - - -rwxr-xr-x 0 0 0 1019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/big5.py - - -rwxr-xr-x 0 0 0 1039 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/big5hkscs.py - - -rwxr-xr-x 0 0 0 2249 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/bz2_codec.py - - -rwxr-xr-x 0 0 0 2084 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/charmap.py - - -rwxr-xr-x 0 0 0 13121 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp037.py - - -rwxr-xr-x 0 0 0 13568 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1006.py - - -rwxr-xr-x 0 0 0 13113 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1026.py - - -rwxr-xr-x 0 0 0 34597 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1125.py - - -rwxr-xr-x 0 0 0 13105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1140.py - - -rwxr-xr-x 0 0 0 13686 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1250.py - - -rwxr-xr-x 0 0 0 13361 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1251.py - - -rwxr-xr-x 0 0 0 13511 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1252.py - - -rwxr-xr-x 0 0 0 13094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1253.py - - -rwxr-xr-x 0 0 0 13502 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1254.py - - -rwxr-xr-x 0 0 0 12466 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1255.py - - -rwxr-xr-x 0 0 0 12814 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1256.py - - -rwxr-xr-x 0 0 0 13374 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1257.py - - -rwxr-xr-x 0 0 0 13364 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1258.py - - -rwxr-xr-x 0 0 0 14132 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp273.py - - -rwxr-xr-x 0 0 0 12055 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp424.py - - -rwxr-xr-x 0 0 0 34564 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp437.py - - -rwxr-xr-x 0 0 0 13121 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp500.py - - -rwxr-xr-x 0 0 0 13686 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp720.py - - -rwxr-xr-x 0 0 0 34681 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp737.py - - -rwxr-xr-x 0 0 0 34476 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp775.py - - -rwxr-xr-x 0 0 0 34105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp850.py - - -rwxr-xr-x 0 0 0 35002 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp852.py - - -rwxr-xr-x 0 0 0 33850 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp855.py - - -rwxr-xr-x 0 0 0 12423 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp856.py - - -rwxr-xr-x 0 0 0 33908 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp857.py - - -rwxr-xr-x 0 0 0 34015 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp858.py - - -rwxr-xr-x 0 0 0 34681 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp860.py - - -rwxr-xr-x 0 0 0 34633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp861.py - - -rwxr-xr-x 0 0 0 33370 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp862.py - - -rwxr-xr-x 0 0 0 34252 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp863.py - - -rwxr-xr-x 0 0 0 33663 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp864.py - - -rwxr-xr-x 0 0 0 34618 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp865.py - - -rwxr-xr-x 0 0 0 34396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp866.py - - -rwxr-xr-x 0 0 0 32965 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp869.py - - -rwxr-xr-x 0 0 0 12595 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp874.py - - -rwxr-xr-x 0 0 0 12854 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp875.py - - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp932.py - - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp949.py - - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp950.py - - -rwxr-xr-x 0 0 0 1051 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/euc_jis_2004.py - - -rwxr-xr-x 0 0 0 1051 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/euc_jisx0213.py - - -rwxr-xr-x 0 0 0 1027 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/euc_jp.py - - -rwxr-xr-x 0 0 0 1027 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/euc_kr.py - - -rwxr-xr-x 0 0 0 1031 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/gb18030.py - - -rwxr-xr-x 0 0 0 1027 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/gb2312.py - - -rwxr-xr-x 0 0 0 1015 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/gbk.py - - -rwxr-xr-x 0 0 0 1508 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/hex_codec.py - - -rwxr-xr-x 0 0 0 13475 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/hp_roman8.py - - -rwxr-xr-x 0 0 0 1011 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/hz.py - - -rwxr-xr-x 0 0 0 9098 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/idna.py - - -rwxr-xr-x 0 0 0 1053 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp.py - - -rwxr-xr-x 0 0 0 1061 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_1.py - - -rwxr-xr-x 0 0 0 1061 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_2.py - - -rwxr-xr-x 0 0 0 1073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_2004.py - - -rwxr-xr-x 0 0 0 1061 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_3.py - - -rwxr-xr-x 0 0 0 1069 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_ext.py - - -rwxr-xr-x 0 0 0 1053 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_kr.py - - -rwxr-xr-x 0 0 0 13176 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_1.py - - -rwxr-xr-x 0 0 0 13589 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_10.py - - -rwxr-xr-x 0 0 0 12335 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_11.py - - -rwxr-xr-x 0 0 0 13271 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_13.py - - -rwxr-xr-x 0 0 0 13652 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_14.py - - -rwxr-xr-x 0 0 0 13212 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_15.py - - -rwxr-xr-x 0 0 0 13557 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_16.py - - -rwxr-xr-x 0 0 0 13404 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_2.py - - -rwxr-xr-x 0 0 0 13089 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_3.py - - -rwxr-xr-x 0 0 0 13376 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_4.py - - -rwxr-xr-x 0 0 0 13015 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_5.py - - -rwxr-xr-x 0 0 0 10833 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_6.py - - -rwxr-xr-x 0 0 0 12844 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_7.py - - -rwxr-xr-x 0 0 0 11036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_8.py - - -rwxr-xr-x 0 0 0 13156 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_9.py - - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/johab.py - - -rwxr-xr-x 0 0 0 13779 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/koi8_r.py - - -rwxr-xr-x 0 0 0 13193 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/koi8_t.py - - -rwxr-xr-x 0 0 0 13762 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/koi8_u.py - - -rwxr-xr-x 0 0 0 13723 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/kz1048.py - - -rwxr-xr-x 0 0 0 1264 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/latin_1.py - - -rwxr-xr-x 0 0 0 36467 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/mac_arabic.py - - -rwxr-xr-x 0 0 0 13633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/mac_croatian.py - - -rwxr-xr-x 0 0 0 13454 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/mac_cyrillic.py - - -rwxr-xr-x 0 0 0 15170 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/mac_farsi.py - - -rwxr-xr-x 0 0 0 13721 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/mac_greek.py - - -rwxr-xr-x 0 0 0 13498 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/mac_iceland.py - - -rwxr-xr-x 0 0 0 14118 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/mac_latin2.py - - -rwxr-xr-x 0 0 0 13480 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/mac_roman.py - - -rwxr-xr-x 0 0 0 13661 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/mac_romanian.py - - -rwxr-xr-x 0 0 0 13513 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/mac_turkish.py - - -rwxr-xr-x 0 0 0 1211 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/mbcs.py - - -rwxr-xr-x 0 0 0 1019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/oem.py - - -rwxr-xr-x 0 0 0 13519 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/palmos.py - - -rwxr-xr-x 0 0 0 14015 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/ptcp154.py - - -rwxr-xr-x 0 0 0 6883 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/punycode.py - - -rwxr-xr-x 0 0 0 1525 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/quopri_codec.py - - -rwxr-xr-x 0 0 0 1332 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/raw_unicode_escape.py - - -rwxr-xr-x 0 0 0 2448 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/rot_13.py - - -rwxr-xr-x 0 0 0 1039 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/shift_jis.py - - -rwxr-xr-x 0 0 0 1059 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/shift_jis_2004.py - - -rwxr-xr-x 0 0 0 1059 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/shift_jisx0213.py - - -rwxr-xr-x 0 0 0 12300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/tis_620.py - - -rwxr-xr-x 0 0 0 1299 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/undefined.py - - -rwxr-xr-x 0 0 0 1304 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/unicode_escape.py - - -rwxr-xr-x 0 0 0 5236 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/utf_16.py - - -rwxr-xr-x 0 0 0 1037 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/utf_16_be.py - - -rwxr-xr-x 0 0 0 1037 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/utf_16_le.py - - -rwxr-xr-x 0 0 0 5129 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/utf_32.py - - -rwxr-xr-x 0 0 0 930 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/utf_32_be.py - - -rwxr-xr-x 0 0 0 930 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/utf_32_le.py - - -rwxr-xr-x 0 0 0 946 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/utf_7.py - - -rwxr-xr-x 0 0 0 1005 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/utf_8.py - - -rwxr-xr-x 0 0 0 4133 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/utf_8_sig.py - - -rwxr-xr-x 0 0 0 2851 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/uu_codec.py - - -rwxr-xr-x 0 0 0 2204 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/encodings/zlib_codec.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ensurepip/ - - -rwxr-xr-x 0 0 0 6963 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ensurepip/__init__.py - - -rwxr-xr-x 0 0 0 88 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ensurepip/__main__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ensurepip/_bundled/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ensurepip/_bundled/__init__.py - - -rwxr-xr-x 0 0 0 808 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ensurepip/_uninstall.py - - -rwxr-xr-x 0 0 0 39440 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/enum.py - - -rwxr-xr-x 0 0 0 10024 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/filecmp.py - - -rwxr-xr-x 0 0 0 14791 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/fileinput.py - - -rwxr-xr-x 0 0 0 6004 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/fnmatch.py - - -rwxr-xr-x 0 0 0 15143 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/formatter.py - - -rwxr-xr-x 0 0 0 24323 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/fractions.py - - -rwxr-xr-x 0 0 0 35496 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ftplib.py - - -rwxr-xr-x 0 0 0 38881 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/functools.py - - -rwxr-xr-x 0 0 0 4975 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/genericpath.py - - -rwxr-xr-x 0 0 0 7489 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/getopt.py - - -rwxr-xr-x 0 0 0 5990 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/getpass.py - - -rwxr-xr-x 0 0 0 27266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/gettext.py - - -rwxr-xr-x 0 0 0 5823 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/glob.py - - -rwxr-xr-x 0 0 0 9573 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/graphlib.py - - -rwxr-xr-x 0 0 0 21772 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/gzip.py - - -rwxr-xr-x 0 0 0 10010 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/hashlib.py - - -rwxr-xr-x 0 0 0 22877 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/heapq.py - - -rwxr-xr-x 0 0 0 7003 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/hmac.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/html/ - - -rwxr-xr-x 0 0 0 4756 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/html/__init__.py - - -rwxr-xr-x 0 0 0 75383 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/html/entities.py - - -rwxr-xr-x 0 0 0 17392 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/html/parser.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/http/ - - -rwxr-xr-x 0 0 0 6732 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/http/__init__.py - - -rwxr-xr-x 0 0 0 56549 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/http/client.py - - -rwxr-xr-x 0 0 0 76835 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/http/cookiejar.py - - -rwxr-xr-x 0 0 0 20482 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/http/cookies.py - - -rwxr-xr-x 0 0 0 48231 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/http/server.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/ - - -rwxr-xr-x 0 0 0 1866 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/CREDITS.txt - - -rwxr-xr-x 0 0 0 56360 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/ChangeLog - - -rwxr-xr-x 0 0 0 10312 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/HISTORY.txt - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/ - - -rwxr-xr-x 0 0 0 443 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/README.txt - - -rwxr-xr-x 0 0 0 120 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/folder.gif - - -rwxr-xr-x 0 0 0 57746 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle.ico - - -rwxr-xr-x 0 0 0 634 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_16.gif - - -rwxr-xr-x 0 0 0 1031 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_16.png - - -rwxr-xr-x 0 0 0 39205 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_256.png - - -rwxr-xr-x 0 0 0 1019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_32.gif - - -rwxr-xr-x 0 0 0 2036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_32.png - - -rwxr-xr-x 0 0 0 1388 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_48.gif - - -rwxr-xr-x 0 0 0 3977 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_48.png - - -rwxr-xr-x 0 0 0 75 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/minusnode.gif - - -rwxr-xr-x 0 0 0 125 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/openfolder.gif - - -rwxr-xr-x 0 0 0 78 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/plusnode.gif - - -rwxr-xr-x 0 0 0 380 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/python.gif - - -rwxr-xr-x 0 0 0 72 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/tk.gif - - -rwxr-xr-x 0 0 0 51948 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/NEWS.txt - - -rwxr-xr-x 0 0 0 27172 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/NEWS2x.txt - - -rwxr-xr-x 0 0 0 9680 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/README.txt - - -rwxr-xr-x 0 0 0 8478 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/TODO.txt - - -rwxr-xr-x 0 0 0 396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/__init__.py - - -rwxr-xr-x 0 0 0 159 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/__main__.py - - -rwxr-xr-x 0 0 0 9150 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/autocomplete.py - - -rwxr-xr-x 0 0 0 20981 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/autocomplete_w.py - - -rwxr-xr-x 0 0 0 3216 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/autoexpand.py - - -rwxr-xr-x 0 0 0 8314 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/browser.py - - -rwxr-xr-x 0 0 0 7267 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/calltip.py - - -rwxr-xr-x 0 0 0 7158 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/calltip_w.py - - -rwxr-xr-x 0 0 0 11420 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/codecontext.py - - -rwxr-xr-x 0 0 0 13201 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/colorizer.py - - -rwxr-xr-x 0 0 0 2266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/config-extensions.def - - -rwxr-xr-x 0 0 0 2864 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/config-highlight.def - - -rwxr-xr-x 0 0 0 10910 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/config-keys.def - - -rwxr-xr-x 0 0 0 3168 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/config-main.def - - -rwxr-xr-x 0 0 0 38173 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/config.py - - -rwxr-xr-x 0 0 0 14540 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/config_key.py - - -rwxr-xr-x 0 0 0 105738 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/configdialog.py - - -rwxr-xr-x 0 0 0 19104 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/debugger.py - - -rwxr-xr-x 0 0 0 12167 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/debugger_r.py - - -rwxr-xr-x 0 0 0 4055 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/debugobj.py - - -rwxr-xr-x 0 0 0 1082 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/debugobj_r.py - - -rwxr-xr-x 0 0 0 1043 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/delegator.py - - -rwxr-xr-x 0 0 0 2017 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/dynoption.py - - -rwxr-xr-x 0 0 0 65733 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/editor.py - - -rwxr-xr-x 0 0 0 3631 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/extend.txt - - -rwxr-xr-x 0 0 0 3876 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/filelist.py - - -rwxr-xr-x 0 0 0 15777 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/format.py - - -rwxr-xr-x 0 0 0 7479 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/grep.py - - -rwxr-xr-x 0 0 0 68554 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/help.html - - -rwxr-xr-x 0 0 0 11851 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/help.py - - -rwxr-xr-x 0 0 0 9084 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/help_about.py - - -rwxr-xr-x 0 0 0 4043 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/history.py - - -rwxr-xr-x 0 0 0 12883 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/hyperparser.py - - -rwxr-xr-x 0 0 0 177 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/idle.bat - - -rwxr-xr-x 0 0 0 454 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/idle.py - - -rwxr-xr-x 0 0 0 570 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/idle.pyw - - -rwxr-xr-x 0 0 0 15832 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/iomenu.py - - -rwxr-xr-x 0 0 0 9663 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/macosx.py - - -rwxr-xr-x 0 0 0 3930 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/mainmenu.py - - -rwxr-xr-x 0 0 0 18648 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/multicall.py - - -rwxr-xr-x 0 0 0 5709 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/outwin.py - - -rwxr-xr-x 0 0 0 7204 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/parenmatch.py - - -rwxr-xr-x 0 0 0 3193 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/pathbrowser.py - - -rwxr-xr-x 0 0 0 3130 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/percolator.py - - -rwxr-xr-x 0 0 0 19864 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/pyparse.py - - -rwxr-xr-x 0 0 0 57605 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/pyshell.py - - -rwxr-xr-x 0 0 0 15075 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/query.py - - -rwxr-xr-x 0 0 0 6875 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/redirector.py - - -rwxr-xr-x 0 0 0 9799 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/replace.py - - -rwxr-xr-x 0 0 0 21076 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/rpc.py - - -rwxr-xr-x 0 0 0 21046 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/run.py - - -rwxr-xr-x 0 0 0 8273 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/runscript.py - - -rwxr-xr-x 0 0 0 4465 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/scrolledlist.py - - -rwxr-xr-x 0 0 0 5566 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/search.py - - -rwxr-xr-x 0 0 0 7856 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/searchbase.py - - -rwxr-xr-x 0 0 0 7362 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/searchengine.py - - -rwxr-xr-x 0 0 0 13585 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/sidebar.py - - -rwxr-xr-x 0 0 0 12825 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/squeezer.py - - -rwxr-xr-x 0 0 0 4454 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/stackviewer.py - - -rwxr-xr-x 0 0 0 1472 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/statusbar.py - - -rwxr-xr-x 0 0 0 6813 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/textview.py - - -rwxr-xr-x 0 0 0 6557 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/tooltip.py - - -rwxr-xr-x 0 0 0 16370 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/tree.py - - -rwxr-xr-x 0 0 0 11046 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/undo.py - - -rwxr-xr-x 0 0 0 721 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/util.py - - -rwxr-xr-x 0 0 0 2616 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/window.py - - -rwxr-xr-x 0 0 0 4203 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/zoomheight.py - - -rwxr-xr-x 0 0 0 2005 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/zzdummy.py - - -rwxr-xr-x 0 0 0 54904 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/imaplib.py - - -rwxr-xr-x 0 0 0 3808 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/imghdr.py - - -rwxr-xr-x 0 0 0 10536 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/imp.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/importlib/ - - -rwxr-xr-x 0 0 0 6061 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/importlib/__init__.py - - -rwxr-xr-x 0 0 0 40322 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/importlib/_bootstrap.py - - -rwxr-xr-x 0 0 0 64947 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/importlib/_bootstrap_external.py - - -rwxr-xr-x 0 0 0 1497 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/importlib/_common.py - - -rwxr-xr-x 0 0 0 14924 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/importlib/abc.py - - -rwxr-xr-x 0 0 0 844 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/importlib/machinery.py - - -rwxr-xr-x 0 0 0 18750 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/importlib/metadata.py - - -rwxr-xr-x 0 0 0 7209 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/importlib/resources.py - - -rwxr-xr-x 0 0 0 11321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/importlib/util.py - - -rwxr-xr-x 0 0 0 118235 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/inspect.py - - -rwxr-xr-x 0 0 0 3541 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/io.py - - -rwxr-xr-x 0 0 0 74612 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ipaddress.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/json/ - - -rwxr-xr-x 0 0 0 14019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/json/__init__.py - - -rwxr-xr-x 0 0 0 12472 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/json/decoder.py - - -rwxr-xr-x 0 0 0 16073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/json/encoder.py - - -rwxr-xr-x 0 0 0 2425 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/json/scanner.py - - -rwxr-xr-x 0 0 0 3339 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/json/tool.py - - -rwxr-xr-x 0 0 0 1047 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/keyword.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib-dynload/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib-dynload/.empty - - -rwxr-xr-x 0 0 0 22368 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib-dynload/_crypt.cpython-39-aarch64-linux-gnu.so - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/ - - -rwxr-xr-x 0 0 0 8696 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/Grammar.txt - - -rwxr-xr-x 0 0 0 15313 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/Grammar3.9.18.final.0.pickle - - -rwxr-xr-x 0 0 0 793 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/PatternGrammar.txt - - -rwxr-xr-x 0 0 0 1225 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/PatternGrammar3.9.18.final.0.pickle - - -rwxr-xr-x 0 0 0 163 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/__init__.py - - -rwxr-xr-x 0 0 0 67 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/__main__.py - - -rwxr-xr-x 0 0 0 6623 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/btm_matcher.py - - -rwxr-xr-x 0 0 0 9966 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/btm_utils.py - - -rwxr-xr-x 0 0 0 6690 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixer_base.py - - -rwxr-xr-x 0 0 0 15206 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixer_util.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/ - - -rwxr-xr-x 0 0 0 47 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/__init__.py - - -rwxr-xr-x 0 0 0 2346 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_apply.py - - -rwxr-xr-x 0 0 0 984 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_asserts.py - - -rwxr-xr-x 0 0 0 320 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_basestring.py - - -rwxr-xr-x 0 0 0 590 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_buffer.py - - -rwxr-xr-x 0 0 0 3760 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_dict.py - - -rwxr-xr-x 0 0 0 3344 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_except.py - - -rwxr-xr-x 0 0 0 979 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_exec.py - - -rwxr-xr-x 0 0 0 2048 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_execfile.py - - -rwxr-xr-x 0 0 0 2495 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_exitfunc.py - - -rwxr-xr-x 0 0 0 2765 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_filter.py - - -rwxr-xr-x 0 0 0 644 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_funcattrs.py - - -rwxr-xr-x 0 0 0 547 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_future.py - - -rwxr-xr-x 0 0 0 451 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_getcwdu.py - - -rwxr-xr-x 0 0 0 3196 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_has_key.py - - -rwxr-xr-x 0 0 0 4876 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_idioms.py - - -rwxr-xr-x 0 0 0 3256 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_import.py - - -rwxr-xr-x 0 0 0 5684 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_imports.py - - -rwxr-xr-x 0 0 0 289 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_imports2.py - - -rwxr-xr-x 0 0 0 708 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_input.py - - -rwxr-xr-x 0 0 0 1144 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_intern.py - - -rwxr-xr-x 0 0 0 1608 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_isinstance.py - - -rwxr-xr-x 0 0 0 1548 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_itertools.py - - -rwxr-xr-x 0 0 0 2086 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_itertools_imports.py - - -rwxr-xr-x 0 0 0 476 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_long.py - - -rwxr-xr-x 0 0 0 3640 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_map.py - - -rwxr-xr-x 0 0 0 8197 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_metaclass.py - - -rwxr-xr-x 0 0 0 606 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_methodattrs.py - - -rwxr-xr-x 0 0 0 571 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_ne.py - - -rwxr-xr-x 0 0 0 3174 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_next.py - - -rwxr-xr-x 0 0 0 591 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_nonzero.py - - -rwxr-xr-x 0 0 0 768 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_numliterals.py - - -rwxr-xr-x 0 0 0 3426 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_operator.py - - -rwxr-xr-x 0 0 0 1226 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_paren.py - - -rwxr-xr-x 0 0 0 2844 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_print.py - - -rwxr-xr-x 0 0 0 2926 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_raise.py - - -rwxr-xr-x 0 0 0 454 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_raw_input.py - - -rwxr-xr-x 0 0 0 837 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_reduce.py - - -rwxr-xr-x 0 0 0 1081 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_reload.py - - -rwxr-xr-x 0 0 0 2221 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_renames.py - - -rwxr-xr-x 0 0 0 613 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_repr.py - - -rwxr-xr-x 0 0 0 1697 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_set_literal.py - - -rwxr-xr-x 0 0 0 449 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_standarderror.py - - -rwxr-xr-x 0 0 0 1034 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_sys_exc.py - - -rwxr-xr-x 0 0 0 1582 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_throw.py - - -rwxr-xr-x 0 0 0 5565 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_tuple_params.py - - -rwxr-xr-x 0 0 0 1774 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_types.py - - -rwxr-xr-x 0 0 0 1256 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_unicode.py - - -rwxr-xr-x 0 0 0 8367 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_urllib.py - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_ws_comma.py - - -rwxr-xr-x 0 0 0 2694 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_xrange.py - - -rwxr-xr-x 0 0 0 689 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_xreadlines.py - - -rwxr-xr-x 0 0 0 1289 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_zip.py - - -rwxr-xr-x 0 0 0 11854 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/main.py - - -rwxr-xr-x 0 0 0 7054 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/patcomp.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/ - - -rwxr-xr-x 0 0 0 143 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/__init__.py - - -rwxr-xr-x 0 0 0 9642 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/conv.py - - -rwxr-xr-x 0 0 0 5969 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/driver.py - - -rwxr-xr-x 0 0 0 5533 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/grammar.py - - -rwxr-xr-x 0 0 0 1635 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/literals.py - - -rwxr-xr-x 0 0 0 8155 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/parse.py - - -rwxr-xr-x 0 0 0 13812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/pgen.py - - -rwxr-xr-x 0 0 0 1302 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/token.py - - -rwxr-xr-x 0 0 0 21119 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/tokenize.py - - -rwxr-xr-x 0 0 0 1305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/pygram.py - - -rwxr-xr-x 0 0 0 27974 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/pytree.py - - -rwxr-xr-x 0 0 0 27507 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/refactor.py - - -rwxr-xr-x 0 0 0 5461 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/linecache.py - - -rwxr-xr-x 0 0 0 78271 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/locale.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/logging/ - - -rwxr-xr-x 0 0 0 78600 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/logging/__init__.py - - -rwxr-xr-x 0 0 0 36379 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/logging/config.py - - -rwxr-xr-x 0 0 0 60423 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/logging/handlers.py - - -rwxr-xr-x 0 0 0 13231 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/lzma.py - - -rwxr-xr-x 0 0 0 78794 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/mailbox.py - - -rwxr-xr-x 0 0 0 9116 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/mailcap.py - - -rwxr-xr-x 0 0 0 21564 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/mimetypes.py - - -rwxr-xr-x 0 0 0 24401 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/modulefinder.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/ - - -rwxr-xr-x 0 0 0 916 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/__init__.py - - -rwxr-xr-x 0 0 0 31685 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/connection.py - - -rwxr-xr-x 0 0 0 11257 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/context.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/dummy/ - - -rwxr-xr-x 0 0 0 3061 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/dummy/__init__.py - - -rwxr-xr-x 0 0 0 1598 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/dummy/connection.py - - -rwxr-xr-x 0 0 0 12142 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/forkserver.py - - -rwxr-xr-x 0 0 0 11626 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/heap.py - - -rwxr-xr-x 0 0 0 47303 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/managers.py - - -rwxr-xr-x 0 0 0 32555 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/pool.py - - -rwxr-xr-x 0 0 0 2377 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/popen_fork.py - - -rwxr-xr-x 0 0 0 2230 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/popen_forkserver.py - - -rwxr-xr-x 0 0 0 2029 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/popen_spawn_posix.py - - -rwxr-xr-x 0 0 0 4011 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/popen_spawn_win32.py - - -rwxr-xr-x 0 0 0 12000 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/process.py - - -rwxr-xr-x 0 0 0 12023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/queues.py - - -rwxr-xr-x 0 0 0 9512 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/reduction.py - - -rwxr-xr-x 0 0 0 5132 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/resource_sharer.py - - -rwxr-xr-x 0 0 0 8613 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/resource_tracker.py - - -rwxr-xr-x 0 0 0 18396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/shared_memory.py - - -rwxr-xr-x 0 0 0 6306 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/sharedctypes.py - - -rwxr-xr-x 0 0 0 9296 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/spawn.py - - -rwxr-xr-x 0 0 0 11610 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/synchronize.py - - -rwxr-xr-x 0 0 0 14006 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/util.py - - -rwxr-xr-x 0 0 0 5566 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/netrc.py - - -rwxr-xr-x 0 0 0 41023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/nntplib.py - - -rwxr-xr-x 0 0 0 27734 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ntpath.py - - -rwxr-xr-x 0 0 0 2887 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/nturl2path.py - - -rwxr-xr-x 0 0 0 10338 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/numbers.py - - -rwxr-xr-x 0 0 0 5660 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/opcode.py - - -rwxr-xr-x 0 0 0 10751 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/operator.py - - -rwxr-xr-x 0 0 0 60369 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/optparse.py - - -rwxr-xr-x 0 0 0 39065 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/os.py - - -rwxr-xr-x 0 0 0 54073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/pathlib.py - - -rwxr-xr-x 0 0 0 63239 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/pdb.py - - -rwxr-xr-x 0 0 0 64920 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/pickle.py - - -rwxr-xr-x 0 0 0 93486 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/pickletools.py - - -rwxr-xr-x 0 0 0 8916 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/pipes.py - - -rwxr-xr-x 0 0 0 24276 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/pkgutil.py - - -rwxr-xr-x 0 0 0 40602 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/platform.py - - -rwxr-xr-x 0 0 0 28248 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/plistlib.py - - -rwxr-xr-x 0 0 0 15198 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/poplib.py - - -rwxr-xr-x 0 0 0 15721 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/posixpath.py - - -rwxr-xr-x 0 0 0 22527 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/pprint.py - - -rwxr-xr-x 0 0 0 22883 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/profile.py - - -rwxr-xr-x 0 0 0 29326 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/pstats.py - - -rwxr-xr-x 0 0 0 4807 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/pty.py - - -rwxr-xr-x 0 0 0 8148 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/py_compile.py - - -rwxr-xr-x 0 0 0 15255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/pyclbr.py - - -rwxr-xr-x 0 0 0 109600 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/pydoc.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/pydoc_data/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/pydoc_data/__init__.py - - -rwxr-xr-x 0 0 0 96 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/pydoc_data/_pydoc.css - - -rwxr-xr-x 0 0 0 703325 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/pydoc_data/topics.py - - -rwxr-xr-x 0 0 0 11496 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/queue.py - - -rwxr-xr-x 0 0 0 7268 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/quopri.py - - -rwxr-xr-x 0 0 0 31484 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/random.py - - -rwxr-xr-x 0 0 0 15861 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/re.py - - -rwxr-xr-x 0 0 0 5267 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/reprlib.py - - -rwxr-xr-x 0 0 0 7648 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/rlcompleter.py - - -rwxr-xr-x 0 0 0 13084 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/runpy.py - - -rwxr-xr-x 0 0 0 6442 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/sched.py - - -rwxr-xr-x 0 0 0 2036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/secrets.py - - -rwxr-xr-x 0 0 0 19536 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/selectors.py - - -rwxr-xr-x 0 0 0 8527 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/shelve.py - - -rwxr-xr-x 0 0 0 13501 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/shlex.py - - -rwxr-xr-x 0 0 0 53030 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/shutil.py - - -rwxr-xr-x 0 0 0 2438 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/signal.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/ - - -rwxr-xr-x 0 0 0 119 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/README.txt - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/ - - -rwxr-xr-x 0 0 0 6299 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/__init__.py - - -rwxr-xr-x 0 0 0 44 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/override.py - - -rwxr-xr-x 0 0 0 151 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/distutils-precedence.pth - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/ - - -rwxr-xr-x 0 0 0 10082 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/AUTHORS.txt - - -rwxr-xr-x 0 0 0 4 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/INSTALLER - - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/LICENSE.txt - - -rwxr-xr-x 0 0 0 4239 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/METADATA - - -rwxr-xr-x 0 0 0 76897 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/RECORD - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/REQUESTED - - -rwxr-xr-x 0 0 0 92 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/WHEEL - - -rwxr-xr-x 0 0 0 243 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/direct_url.json - - -rwxr-xr-x 0 0 0 125 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/entry_points.txt - - -rwxr-xr-x 0 0 0 4 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/top_level.txt - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/ - - -rwxr-xr-x 0 0 0 357 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/__init__.py - - -rwxr-xr-x 0 0 0 854 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/__main__.py - - -rwxr-xr-x 0 0 0 1444 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/__pip-runner__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/ - - -rwxr-xr-x 0 0 0 573 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/__init__.py - - -rwxr-xr-x 0 0 0 10243 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/build_env.py - - -rwxr-xr-x 0 0 0 10429 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cache.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/ - - -rwxr-xr-x 0 0 0 132 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/__init__.py - - -rwxr-xr-x 0 0 0 6676 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/autocompletion.py - - -rwxr-xr-x 0 0 0 8726 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/base_command.py - - -rwxr-xr-x 0 0 0 30030 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/cmdoptions.py - - -rwxr-xr-x 0 0 0 774 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/command_context.py - - -rwxr-xr-x 0 0 0 2816 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/main.py - - -rwxr-xr-x 0 0 0 4338 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/main_parser.py - - -rwxr-xr-x 0 0 0 10817 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/parser.py - - -rwxr-xr-x 0 0 0 1968 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/progress_bars.py - - -rwxr-xr-x 0 0 0 18440 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/req_command.py - - -rwxr-xr-x 0 0 0 5118 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/spinners.py - - -rwxr-xr-x 0 0 0 116 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/status_codes.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/ - - -rwxr-xr-x 0 0 0 3882 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/__init__.py - - -rwxr-xr-x 0 0 0 7581 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/cache.py - - -rwxr-xr-x 0 0 0 1782 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/check.py - - -rwxr-xr-x 0 0 0 3986 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/completion.py - - -rwxr-xr-x 0 0 0 9815 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/configuration.py - - -rwxr-xr-x 0 0 0 6591 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/debug.py - - -rwxr-xr-x 0 0 0 5335 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/download.py - - -rwxr-xr-x 0 0 0 3172 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/freeze.py - - -rwxr-xr-x 0 0 0 1703 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/hash.py - - -rwxr-xr-x 0 0 0 1132 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/help.py - - -rwxr-xr-x 0 0 0 4793 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/index.py - - -rwxr-xr-x 0 0 0 3188 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/inspect.py - - -rwxr-xr-x 0 0 0 28934 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/install.py - - -rwxr-xr-x 0 0 0 12457 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/list.py - - -rwxr-xr-x 0 0 0 5697 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/search.py - - -rwxr-xr-x 0 0 0 6419 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/show.py - - -rwxr-xr-x 0 0 0 3886 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/uninstall.py - - -rwxr-xr-x 0 0 0 6476 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/wheel.py - - -rwxr-xr-x 0 0 0 13839 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/configuration.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/ - - -rwxr-xr-x 0 0 0 858 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/__init__.py - - -rwxr-xr-x 0 0 0 1221 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/base.py - - -rwxr-xr-x 0 0 0 729 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/installed.py - - -rwxr-xr-x 0 0 0 6494 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/sdist.py - - -rwxr-xr-x 0 0 0 1164 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/wheel.py - - -rwxr-xr-x 0 0 0 23737 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/exceptions.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/ - - -rwxr-xr-x 0 0 0 30 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/__init__.py - - -rwxr-xr-x 0 0 0 16504 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/collector.py - - -rwxr-xr-x 0 0 0 37873 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/package_finder.py - - -rwxr-xr-x 0 0 0 6556 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/sources.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/ - - -rwxr-xr-x 0 0 0 15365 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/__init__.py - - -rwxr-xr-x 0 0 0 6100 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/_distutils.py - - -rwxr-xr-x 0 0 0 7680 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/_sysconfig.py - - -rwxr-xr-x 0 0 0 2556 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/base.py - - -rwxr-xr-x 0 0 0 340 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/main.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/ - - -rwxr-xr-x 0 0 0 4280 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/__init__.py - - -rwxr-xr-x 0 0 0 2595 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/_json.py - - -rwxr-xr-x 0 0 0 25277 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/base.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/ - - -rwxr-xr-x 0 0 0 107 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/__init__.py - - -rwxr-xr-x 0 0 0 1882 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/_compat.py - - -rwxr-xr-x 0 0 0 8181 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/_dists.py - - -rwxr-xr-x 0 0 0 7435 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/_envs.py - - -rwxr-xr-x 0 0 0 9773 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/pkg_resources.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/ - - -rwxr-xr-x 0 0 0 63 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/__init__.py - - -rwxr-xr-x 0 0 0 990 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/candidate.py - - -rwxr-xr-x 0 0 0 6931 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/direct_url.py - - -rwxr-xr-x 0 0 0 2520 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/format_control.py - - -rwxr-xr-x 0 0 0 1030 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/index.py - - -rwxr-xr-x 0 0 0 2609 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/installation_report.py - - -rwxr-xr-x 0 0 0 20819 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/link.py - - -rwxr-xr-x 0 0 0 738 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/scheme.py - - -rwxr-xr-x 0 0 0 4643 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/search_scope.py - - -rwxr-xr-x 0 0 0 1907 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/selection_prefs.py - - -rwxr-xr-x 0 0 0 3858 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/target_python.py - - -rwxr-xr-x 0 0 0 3600 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/wheel.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/ - - -rwxr-xr-x 0 0 0 50 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/__init__.py - - -rwxr-xr-x 0 0 0 20541 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/auth.py - - -rwxr-xr-x 0 0 0 2145 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/cache.py - - -rwxr-xr-x 0 0 0 6096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/download.py - - -rwxr-xr-x 0 0 0 7638 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/lazy_wheel.py - - -rwxr-xr-x 0 0 0 18607 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/session.py - - -rwxr-xr-x 0 0 0 4073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/utils.py - - -rwxr-xr-x 0 0 0 1791 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/xmlrpc.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/__init__.py - - -rwxr-xr-x 0 0 0 4133 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/build_tracker.py - - -rwxr-xr-x 0 0 0 1422 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/metadata.py - - -rwxr-xr-x 0 0 0 1474 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/metadata_editable.py - - -rwxr-xr-x 0 0 0 2198 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/metadata_legacy.py - - -rwxr-xr-x 0 0 0 1075 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/wheel.py - - -rwxr-xr-x 0 0 0 1417 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/wheel_editable.py - - -rwxr-xr-x 0 0 0 3064 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/wheel_legacy.py - - -rwxr-xr-x 0 0 0 6806 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/check.py - - -rwxr-xr-x 0 0 0 9816 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/freeze.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/install/ - - -rwxr-xr-x 0 0 0 51 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/install/__init__.py - - -rwxr-xr-x 0 0 0 1282 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/install/editable_legacy.py - - -rwxr-xr-x 0 0 0 27475 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/install/wheel.py - - -rwxr-xr-x 0 0 0 28868 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/prepare.py - - -rwxr-xr-x 0 0 0 7161 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/pyproject.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/ - - -rwxr-xr-x 0 0 0 2738 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/__init__.py - - -rwxr-xr-x 0 0 0 16610 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/constructors.py - - -rwxr-xr-x 0 0 0 17872 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/req_file.py - - -rwxr-xr-x 0 0 0 33084 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/req_install.py - - -rwxr-xr-x 0 0 0 4704 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/req_set.py - - -rwxr-xr-x 0 0 0 24678 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/req_uninstall.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/__init__.py - - -rwxr-xr-x 0 0 0 583 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/base.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/legacy/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/legacy/__init__.py - - -rwxr-xr-x 0 0 0 24128 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__init__.py - - -rwxr-xr-x 0 0 0 5220 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/base.py - - -rwxr-xr-x 0 0 0 18969 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/candidates.py - - -rwxr-xr-x 0 0 0 27845 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/factory.py - - -rwxr-xr-x 0 0 0 5705 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py - - -rwxr-xr-x 0 0 0 9824 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/provider.py - - -rwxr-xr-x 0 0 0 3100 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/reporter.py - - -rwxr-xr-x 0 0 0 5454 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/requirements.py - - -rwxr-xr-x 0 0 0 11642 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/resolver.py - - -rwxr-xr-x 0 0 0 8167 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/self_outdated_check.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/__init__.py - - -rwxr-xr-x 0 0 0 3351 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/_jaraco_text.py - - -rwxr-xr-x 0 0 0 1015 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/_log.py - - -rwxr-xr-x 0 0 0 1665 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/appdirs.py - - -rwxr-xr-x 0 0 0 1884 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/compat.py - - -rwxr-xr-x 0 0 0 5377 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/compatibility_tags.py - - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/datetime.py - - -rwxr-xr-x 0 0 0 3627 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/deprecation.py - - -rwxr-xr-x 0 0 0 3206 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/direct_url_helpers.py - - -rwxr-xr-x 0 0 0 2118 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/egg_link.py - - -rwxr-xr-x 0 0 0 1169 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/encoding.py - - -rwxr-xr-x 0 0 0 3064 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/entrypoints.py - - -rwxr-xr-x 0 0 0 5122 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/filesystem.py - - -rwxr-xr-x 0 0 0 716 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/filetypes.py - - -rwxr-xr-x 0 0 0 3166 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/glibc.py - - -rwxr-xr-x 0 0 0 3113 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/glibc.py.orig - - -rwxr-xr-x 0 0 0 5118 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/hashes.py - - -rwxr-xr-x 0 0 0 795 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/inject_securetransport.py - - -rwxr-xr-x 0 0 0 11632 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/logging.py - - -rwxr-xr-x 0 0 0 22343 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/misc.py - - -rwxr-xr-x 0 0 0 1193 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/models.py - - -rwxr-xr-x 0 0 0 2108 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/packaging.py - - -rwxr-xr-x 0 0 0 4435 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/setuptools_build.py - - -rwxr-xr-x 0 0 0 9200 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/subprocess.py - - -rwxr-xr-x 0 0 0 7702 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/temp_dir.py - - -rwxr-xr-x 0 0 0 8821 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/unpacking.py - - -rwxr-xr-x 0 0 0 1759 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/urls.py - - -rwxr-xr-x 0 0 0 3456 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/virtualenv.py - - -rwxr-xr-x 0 0 0 4549 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/wheel.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/ - - -rwxr-xr-x 0 0 0 596 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/__init__.py - - -rwxr-xr-x 0 0 0 3519 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/bazaar.py - - -rwxr-xr-x 0 0 0 18116 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/git.py - - -rwxr-xr-x 0 0 0 5244 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/mercurial.py - - -rwxr-xr-x 0 0 0 11729 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/subversion.py - - -rwxr-xr-x 0 0 0 22811 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/versioncontrol.py - - -rwxr-xr-x 0 0 0 11842 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/wheel_builder.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/ - - -rwxr-xr-x 0 0 0 4966 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/ - - -rwxr-xr-x 0 0 0 465 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__init__.py - - -rwxr-xr-x 0 0 0 1379 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/_cmd.py - - -rwxr-xr-x 0 0 0 5033 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/adapter.py - - -rwxr-xr-x 0 0 0 1535 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/cache.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/ - - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/__init__.py - - -rwxr-xr-x 0 0 0 5271 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py - - -rwxr-xr-x 0 0 0 1033 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py - - -rwxr-xr-x 0 0 0 778 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/compat.py - - -rwxr-xr-x 0 0 0 16416 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/controller.py - - -rwxr-xr-x 0 0 0 3946 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/filewrapper.py - - -rwxr-xr-x 0 0 0 4154 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/heuristics.py - - -rwxr-xr-x 0 0 0 7105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/serialize.py - - -rwxr-xr-x 0 0 0 774 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/wrapper.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/ - - -rwxr-xr-x 0 0 0 94 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/__init__.py - - -rwxr-xr-x 0 0 0 255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/__main__.py - - -rwxr-xr-x 0 0 0 278952 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/cacert.pem - - -rwxr-xr-x 0 0 0 4279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/core.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/ - - -rwxr-xr-x 0 0 0 4797 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/__init__.py - - -rwxr-xr-x 0 0 0 31274 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/big5freq.py - - -rwxr-xr-x 0 0 0 1763 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/big5prober.py - - -rwxr-xr-x 0 0 0 10032 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/chardistribution.py - - -rwxr-xr-x 0 0 0 3915 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/charsetgroupprober.py - - -rwxr-xr-x 0 0 0 5420 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/charsetprober.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/cli/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/cli/__init__.py - - -rwxr-xr-x 0 0 0 3242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/cli/chardetect.py - - -rwxr-xr-x 0 0 0 3732 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/codingstatemachine.py - - -rwxr-xr-x 0 0 0 542 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/codingstatemachinedict.py - - -rwxr-xr-x 0 0 0 1860 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/cp949prober.py - - -rwxr-xr-x 0 0 0 1683 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/enums.py - - -rwxr-xr-x 0 0 0 4006 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/escprober.py - - -rwxr-xr-x 0 0 0 12176 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/escsm.py - - -rwxr-xr-x 0 0 0 3934 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/eucjpprober.py - - -rwxr-xr-x 0 0 0 13566 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/euckrfreq.py - - -rwxr-xr-x 0 0 0 1753 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/euckrprober.py - - -rwxr-xr-x 0 0 0 36913 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/euctwfreq.py - - -rwxr-xr-x 0 0 0 1753 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/euctwprober.py - - -rwxr-xr-x 0 0 0 20735 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/gb2312freq.py - - -rwxr-xr-x 0 0 0 1759 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/gb2312prober.py - - -rwxr-xr-x 0 0 0 14537 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/hebrewprober.py - - -rwxr-xr-x 0 0 0 25796 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/jisfreq.py - - -rwxr-xr-x 0 0 0 42498 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/johabfreq.py - - -rwxr-xr-x 0 0 0 1752 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/johabprober.py - - -rwxr-xr-x 0 0 0 27055 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/jpcntx.py - - -rwxr-xr-x 0 0 0 104562 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/langbulgarianmodel.py - - -rwxr-xr-x 0 0 0 98484 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/langgreekmodel.py - - -rwxr-xr-x 0 0 0 98196 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/langhebrewmodel.py - - -rwxr-xr-x 0 0 0 101363 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/langhungarianmodel.py - - -rwxr-xr-x 0 0 0 128035 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/langrussianmodel.py - - -rwxr-xr-x 0 0 0 102774 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/langthaimodel.py - - -rwxr-xr-x 0 0 0 95372 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/langturkishmodel.py - - -rwxr-xr-x 0 0 0 5380 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/latin1prober.py - - -rwxr-xr-x 0 0 0 6077 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/macromanprober.py - - -rwxr-xr-x 0 0 0 3715 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/mbcharsetprober.py - - -rwxr-xr-x 0 0 0 2131 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/mbcsgroupprober.py - - -rwxr-xr-x 0 0 0 30391 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/mbcssm.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/metadata/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/metadata/__init__.py - - -rwxr-xr-x 0 0 0 13560 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/metadata/languages.py - - -rwxr-xr-x 0 0 0 402 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/resultdict.py - - -rwxr-xr-x 0 0 0 6400 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/sbcharsetprober.py - - -rwxr-xr-x 0 0 0 4137 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/sbcsgroupprober.py - - -rwxr-xr-x 0 0 0 4007 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/sjisprober.py - - -rwxr-xr-x 0 0 0 14848 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/universaldetector.py - - -rwxr-xr-x 0 0 0 8505 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/utf1632prober.py - - -rwxr-xr-x 0 0 0 2812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/utf8prober.py - - -rwxr-xr-x 0 0 0 244 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/version.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/colorama/ - - -rwxr-xr-x 0 0 0 266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/colorama/__init__.py - - -rwxr-xr-x 0 0 0 2522 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/colorama/ansi.py - - -rwxr-xr-x 0 0 0 11128 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/colorama/ansitowin32.py - - -rwxr-xr-x 0 0 0 3325 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/colorama/initialise.py - - -rwxr-xr-x 0 0 0 6181 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/colorama/win32.py - - -rwxr-xr-x 0 0 0 7134 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/colorama/winterm.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/ - - -rwxr-xr-x 0 0 0 581 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/__init__.py - - -rwxr-xr-x 0 0 0 41259 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/compat.py - - -rwxr-xr-x 0 0 0 51697 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/database.py - - -rwxr-xr-x 0 0 0 20834 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/index.py - - -rwxr-xr-x 0 0 0 51991 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/locators.py - - -rwxr-xr-x 0 0 0 14811 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/manifest.py - - -rwxr-xr-x 0 0 0 5058 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/markers.py - - -rwxr-xr-x 0 0 0 39801 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/metadata.py - - -rwxr-xr-x 0 0 0 10820 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/resources.py - - -rwxr-xr-x 0 0 0 18102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/scripts.py - - -rwxr-xr-x 0 0 0 97792 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/t32.exe - - -rwxr-xr-x 0 0 0 182784 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/t64-arm.exe - - -rwxr-xr-x 0 0 0 108032 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/t64.exe - - -rwxr-xr-x 0 0 0 66262 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/util.py - - -rwxr-xr-x 0 0 0 23513 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/version.py - - -rwxr-xr-x 0 0 0 91648 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/w32.exe - - -rwxr-xr-x 0 0 0 168448 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/w64-arm.exe - - -rwxr-xr-x 0 0 0 101888 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/w64.exe - - -rwxr-xr-x 0 0 0 43898 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/wheel.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/ - - -rwxr-xr-x 0 0 0 981 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/__init__.py - - -rwxr-xr-x 0 0 0 64 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/__main__.py - - -rwxr-xr-x 0 0 0 49330 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/distro.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/ - - -rwxr-xr-x 0 0 0 849 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/__init__.py - - -rwxr-xr-x 0 0 0 3374 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/codec.py - - -rwxr-xr-x 0 0 0 321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/compat.py - - -rwxr-xr-x 0 0 0 12950 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/core.py - - -rwxr-xr-x 0 0 0 44375 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/idnadata.py - - -rwxr-xr-x 0 0 0 1881 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/intranges.py - - -rwxr-xr-x 0 0 0 21 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/package_data.py - - -rwxr-xr-x 0 0 0 206539 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/uts46data.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/ - - -rwxr-xr-x 0 0 0 1132 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/__init__.py - - -rwxr-xr-x 0 0 0 1081 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/exceptions.py - - -rwxr-xr-x 0 0 0 6079 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/ext.py - - -rwxr-xr-x 0 0 0 34544 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/fallback.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/ - - -rwxr-xr-x 0 0 0 661 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/__about__.py - - -rwxr-xr-x 0 0 0 497 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/__init__.py - - -rwxr-xr-x 0 0 0 11488 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_manylinux.py - - -rwxr-xr-x 0 0 0 4378 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_musllinux.py - - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_structures.py - - -rwxr-xr-x 0 0 0 8487 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/markers.py - - -rwxr-xr-x 0 0 0 4676 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/requirements.py - - -rwxr-xr-x 0 0 0 30110 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/specifiers.py - - -rwxr-xr-x 0 0 0 15699 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/tags.py - - -rwxr-xr-x 0 0 0 4200 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/utils.py - - -rwxr-xr-x 0 0 0 14665 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/version.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pkg_resources/ - - -rwxr-xr-x 0 0 0 109364 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pkg_resources/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/ - - -rwxr-xr-x 0 0 0 20155 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/__init__.py - - -rwxr-xr-x 0 0 0 1476 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/__main__.py - - -rwxr-xr-x 0 0 0 7211 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/android.py - - -rwxr-xr-x 0 0 0 7132 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/api.py - - -rwxr-xr-x 0 0 0 3678 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/macos.py - - -rwxr-xr-x 0 0 0 8809 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/unix.py - - -rwxr-xr-x 0 0 0 160 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/version.py - - -rwxr-xr-x 0 0 0 9573 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/windows.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/ - - -rwxr-xr-x 0 0 0 2983 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/__init__.py - - -rwxr-xr-x 0 0 0 353 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/__main__.py - - -rwxr-xr-x 0 0 0 23685 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/cmdline.py - - -rwxr-xr-x 0 0 0 1697 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/console.py - - -rwxr-xr-x 0 0 0 1938 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/filter.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/filters/ - - -rwxr-xr-x 0 0 0 40386 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/filters/__init__.py - - -rwxr-xr-x 0 0 0 4178 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatter.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/ - - -rwxr-xr-x 0 0 0 5424 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/__init__.py - - -rwxr-xr-x 0 0 0 4176 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/_mapping.py - - -rwxr-xr-x 0 0 0 3314 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/bbcode.py - - -rwxr-xr-x 0 0 0 5094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/groff.py - - -rwxr-xr-x 0 0 0 35610 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/html.py - - -rwxr-xr-x 0 0 0 21938 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/img.py - - -rwxr-xr-x 0 0 0 4981 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/irc.py - - -rwxr-xr-x 0 0 0 19351 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/latex.py - - -rwxr-xr-x 0 0 0 5073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/other.py - - -rwxr-xr-x 0 0 0 2212 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py - - -rwxr-xr-x 0 0 0 5014 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/rtf.py - - -rwxr-xr-x 0 0 0 7335 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/svg.py - - -rwxr-xr-x 0 0 0 4674 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/terminal.py - - -rwxr-xr-x 0 0 0 11753 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/terminal256.py - - -rwxr-xr-x 0 0 0 34618 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexer.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexers/ - - -rwxr-xr-x 0 0 0 12130 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexers/__init__.py - - -rwxr-xr-x 0 0 0 72281 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexers/_mapping.py - - -rwxr-xr-x 0 0 0 53424 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexers/python.py - - -rwxr-xr-x 0 0 0 986 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/modeline.py - - -rwxr-xr-x 0 0 0 2591 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/plugin.py - - -rwxr-xr-x 0 0 0 3072 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/regexopt.py - - -rwxr-xr-x 0 0 0 3092 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/scanner.py - - -rwxr-xr-x 0 0 0 6882 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/sphinxext.py - - -rwxr-xr-x 0 0 0 6257 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/style.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/styles/ - - -rwxr-xr-x 0 0 0 3700 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/styles/__init__.py - - -rwxr-xr-x 0 0 0 6184 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/token.py - - -rwxr-xr-x 0 0 0 63223 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/unistring.py - - -rwxr-xr-x 0 0 0 10230 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/util.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/ - - -rwxr-xr-x 0 0 0 9116 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/__init__.py - - -rwxr-xr-x 0 0 0 6567 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/actions.py - - -rwxr-xr-x 0 0 0 13387 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/common.py - - -rwxr-xr-x 0 0 0 224445 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/core.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/diagram/ - - -rwxr-xr-x 0 0 0 24215 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/diagram/__init__.py - - -rwxr-xr-x 0 0 0 9523 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/exceptions.py - - -rwxr-xr-x 0 0 0 38646 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/helpers.py - - -rwxr-xr-x 0 0 0 26692 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/results.py - - -rwxr-xr-x 0 0 0 13488 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/testing.py - - -rwxr-xr-x 0 0 0 10646 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/unicode.py - - -rwxr-xr-x 0 0 0 8670 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/util.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/ - - -rwxr-xr-x 0 0 0 491 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/__init__.py - - -rwxr-xr-x 0 0 0 138 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_compat.py - - -rwxr-xr-x 0 0 0 11920 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_impl.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_in_process/ - - -rwxr-xr-x 0 0 0 546 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py - - -rwxr-xr-x 0 0 0 10927 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/ - - -rwxr-xr-x 0 0 0 5169 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/__init__.py - - -rwxr-xr-x 0 0 0 435 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/__version__.py - - -rwxr-xr-x 0 0 0 1495 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/_internal_utils.py - - -rwxr-xr-x 0 0 0 19697 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py - - -rwxr-xr-x 0 0 0 6449 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/api.py - - -rwxr-xr-x 0 0 0 10187 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/auth.py - - -rwxr-xr-x 0 0 0 575 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/certs.py - - -rwxr-xr-x 0 0 0 1286 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/compat.py - - -rwxr-xr-x 0 0 0 18560 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/cookies.py - - -rwxr-xr-x 0 0 0 3823 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/exceptions.py - - -rwxr-xr-x 0 0 0 3879 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/help.py - - -rwxr-xr-x 0 0 0 733 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/hooks.py - - -rwxr-xr-x 0 0 0 35288 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/models.py - - -rwxr-xr-x 0 0 0 695 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/packages.py - - -rwxr-xr-x 0 0 0 30373 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py - - -rwxr-xr-x 0 0 0 4235 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/status_codes.py - - -rwxr-xr-x 0 0 0 2912 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/structures.py - - -rwxr-xr-x 0 0 0 33460 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/utils.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/ - - -rwxr-xr-x 0 0 0 537 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/__init__.py - - -rwxr-xr-x 0 0 0 156 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py - - -rwxr-xr-x 0 0 0 5871 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/providers.py - - -rwxr-xr-x 0 0 0 1601 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/reporters.py - - -rwxr-xr-x 0 0 0 20511 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/resolvers.py - - -rwxr-xr-x 0 0 0 4963 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/structs.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/ - - -rwxr-xr-x 0 0 0 6090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/__init__.py - - -rwxr-xr-x 0 0 0 8478 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/__main__.py - - -rwxr-xr-x 0 0 0 10096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_cell_widths.py - - -rwxr-xr-x 0 0 0 140235 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_emoji_codes.py - - -rwxr-xr-x 0 0 0 1064 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_emoji_replace.py - - -rwxr-xr-x 0 0 0 2100 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_export_format.py - - -rwxr-xr-x 0 0 0 265 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_extension.py - - -rwxr-xr-x 0 0 0 799 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_fileno.py - - -rwxr-xr-x 0 0 0 9695 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_inspect.py - - -rwxr-xr-x 0 0 0 3225 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_log_render.py - - -rwxr-xr-x 0 0 0 1236 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_loop.py - - -rwxr-xr-x 0 0 0 1387 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_null_file.py - - -rwxr-xr-x 0 0 0 7063 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_palettes.py - - -rwxr-xr-x 0 0 0 423 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_pick.py - - -rwxr-xr-x 0 0 0 5472 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_ratio.py - - -rwxr-xr-x 0 0 0 19919 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_spinners.py - - -rwxr-xr-x 0 0 0 351 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_stack.py - - -rwxr-xr-x 0 0 0 417 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_timer.py - - -rwxr-xr-x 0 0 0 22820 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_win32_console.py - - -rwxr-xr-x 0 0 0 1926 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_windows.py - - -rwxr-xr-x 0 0 0 2783 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_windows_renderer.py - - -rwxr-xr-x 0 0 0 1840 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_wrap.py - - -rwxr-xr-x 0 0 0 890 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/abc.py - - -rwxr-xr-x 0 0 0 10368 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/align.py - - -rwxr-xr-x 0 0 0 6906 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/ansi.py - - -rwxr-xr-x 0 0 0 3264 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/bar.py - - -rwxr-xr-x 0 0 0 9842 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/box.py - - -rwxr-xr-x 0 0 0 4509 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/cells.py - - -rwxr-xr-x 0 0 0 18224 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/color.py - - -rwxr-xr-x 0 0 0 1054 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/color_triplet.py - - -rwxr-xr-x 0 0 0 7131 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/columns.py - - -rwxr-xr-x 0 0 0 99218 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/console.py - - -rwxr-xr-x 0 0 0 1288 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/constrain.py - - -rwxr-xr-x 0 0 0 5497 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/containers.py - - -rwxr-xr-x 0 0 0 6630 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/control.py - - -rwxr-xr-x 0 0 0 8082 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/default_styles.py - - -rwxr-xr-x 0 0 0 972 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/diagnose.py - - -rwxr-xr-x 0 0 0 2501 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/emoji.py - - -rwxr-xr-x 0 0 0 642 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/errors.py - - -rwxr-xr-x 0 0 0 1683 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/file_proxy.py - - -rwxr-xr-x 0 0 0 2508 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/filesize.py - - -rwxr-xr-x 0 0 0 9584 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/highlighter.py - - -rwxr-xr-x 0 0 0 5032 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/json.py - - -rwxr-xr-x 0 0 0 3252 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/jupyter.py - - -rwxr-xr-x 0 0 0 14007 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/layout.py - - -rwxr-xr-x 0 0 0 14273 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/live.py - - -rwxr-xr-x 0 0 0 3667 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/live_render.py - - -rwxr-xr-x 0 0 0 11903 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/logging.py - - -rwxr-xr-x 0 0 0 8198 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/markup.py - - -rwxr-xr-x 0 0 0 5305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/measure.py - - -rwxr-xr-x 0 0 0 4970 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/padding.py - - -rwxr-xr-x 0 0 0 828 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/pager.py - - -rwxr-xr-x 0 0 0 3396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/palette.py - - -rwxr-xr-x 0 0 0 10574 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/panel.py - - -rwxr-xr-x 0 0 0 35852 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/pretty.py - - -rwxr-xr-x 0 0 0 59706 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/progress.py - - -rwxr-xr-x 0 0 0 8165 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/progress_bar.py - - -rwxr-xr-x 0 0 0 11303 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/prompt.py - - -rwxr-xr-x 0 0 0 1391 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/protocol.py - - -rwxr-xr-x 0 0 0 166 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/region.py - - -rwxr-xr-x 0 0 0 4431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/repr.py - - -rwxr-xr-x 0 0 0 4602 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/rule.py - - -rwxr-xr-x 0 0 0 2843 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/scope.py - - -rwxr-xr-x 0 0 0 1591 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/screen.py - - -rwxr-xr-x 0 0 0 24247 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/segment.py - - -rwxr-xr-x 0 0 0 4339 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/spinner.py - - -rwxr-xr-x 0 0 0 4425 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/status.py - - -rwxr-xr-x 0 0 0 27073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/style.py - - -rwxr-xr-x 0 0 0 1258 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/styled.py - - -rwxr-xr-x 0 0 0 35173 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/syntax.py - - -rwxr-xr-x 0 0 0 39684 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/table.py - - -rwxr-xr-x 0 0 0 3370 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/terminal_theme.py - - -rwxr-xr-x 0 0 0 45525 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/text.py - - -rwxr-xr-x 0 0 0 3777 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/theme.py - - -rwxr-xr-x 0 0 0 102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/themes.py - - -rwxr-xr-x 0 0 0 29604 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/traceback.py - - -rwxr-xr-x 0 0 0 9169 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/tree.py - - -rwxr-xr-x 0 0 0 34549 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/six.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/ - - -rwxr-xr-x 0 0 0 20493 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/__init__.py - - -rwxr-xr-x 0 0 0 3551 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/_asyncio.py - - -rwxr-xr-x 0 0 0 2179 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/_utils.py - - -rwxr-xr-x 0 0 0 1682 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/after.py - - -rwxr-xr-x 0 0 0 1562 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/before.py - - -rwxr-xr-x 0 0 0 2372 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/before_sleep.py - - -rwxr-xr-x 0 0 0 1383 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/nap.py - - -rwxr-xr-x 0 0 0 8746 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/retry.py - - -rwxr-xr-x 0 0 0 3086 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/stop.py - - -rwxr-xr-x 0 0 0 2142 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/tornadoweb.py - - -rwxr-xr-x 0 0 0 8024 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/wait.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/ - - -rwxr-xr-x 0 0 0 396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/__init__.py - - -rwxr-xr-x 0 0 0 22633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/_parser.py - - -rwxr-xr-x 0 0 0 2943 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/_re.py - - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/_types.py - - -rwxr-xr-x 0 0 0 111130 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/typing_extensions.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/ - - -rwxr-xr-x 0 0 0 3333 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/__init__.py - - -rwxr-xr-x 0 0 0 10811 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/_collections.py - - -rwxr-xr-x 0 0 0 64 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/_version.py - - -rwxr-xr-x 0 0 0 20300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/connection.py - - -rwxr-xr-x 0 0 0 39990 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/__init__.py - - -rwxr-xr-x 0 0 0 957 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py - - -rwxr-xr-x 0 0 0 17632 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py - - -rwxr-xr-x 0 0 0 13922 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py - - -rwxr-xr-x 0 0 0 11036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/appengine.py - - -rwxr-xr-x 0 0 0 4528 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py - - -rwxr-xr-x 0 0 0 17081 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py - - -rwxr-xr-x 0 0 0 34448 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/securetransport.py - - -rwxr-xr-x 0 0 0 7097 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/socks.py - - -rwxr-xr-x 0 0 0 8217 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/exceptions.py - - -rwxr-xr-x 0 0 0 8579 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/fields.py - - -rwxr-xr-x 0 0 0 2440 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/filepost.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py - - -rwxr-xr-x 0 0 0 1417 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py - - -rwxr-xr-x 0 0 0 5343 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py - - -rwxr-xr-x 0 0 0 34665 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/six.py - - -rwxr-xr-x 0 0 0 19752 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/poolmanager.py - - -rwxr-xr-x 0 0 0 5985 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/request.py - - -rwxr-xr-x 0 0 0 30641 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/response.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ - - -rwxr-xr-x 0 0 0 1155 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/__init__.py - - -rwxr-xr-x 0 0 0 4901 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/connection.py - - -rwxr-xr-x 0 0 0 1605 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/proxy.py - - -rwxr-xr-x 0 0 0 498 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/queue.py - - -rwxr-xr-x 0 0 0 3997 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/request.py - - -rwxr-xr-x 0 0 0 3510 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/response.py - - -rwxr-xr-x 0 0 0 22003 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/retry.py - - -rwxr-xr-x 0 0 0 17177 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_.py - - -rwxr-xr-x 0 0 0 5758 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py - - -rwxr-xr-x 0 0 0 6895 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssltransport.py - - -rwxr-xr-x 0 0 0 10168 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/timeout.py - - -rwxr-xr-x 0 0 0 14296 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/url.py - - -rwxr-xr-x 0 0 0 5403 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/wait.py - - -rwxr-xr-x 0 0 0 475 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/vendor.txt - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/webencodings/ - - -rwxr-xr-x 0 0 0 10579 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/webencodings/__init__.py - - -rwxr-xr-x 0 0 0 8979 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/webencodings/labels.py - - -rwxr-xr-x 0 0 0 1305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/webencodings/mklabels.py - - -rwxr-xr-x 0 0 0 6563 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/webencodings/tests.py - - -rwxr-xr-x 0 0 0 4307 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/webencodings/x_user_defined.py - - -rwxr-xr-x 0 0 0 286 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/py.typed - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/ - - -rwxr-xr-x 0 0 0 109429 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/ - - -rwxr-xr-x 0 0 0 506 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py - - -rwxr-xr-x 0 0 0 4504 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_adapters.py - - -rwxr-xr-x 0 0 0 5457 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_common.py - - -rwxr-xr-x 0 0 0 2925 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_compat.py - - -rwxr-xr-x 0 0 0 884 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py - - -rwxr-xr-x 0 0 0 3481 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_legacy.py - - -rwxr-xr-x 0 0 0 5140 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/abc.py - - -rwxr-xr-x 0 0 0 3581 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/readers.py - - -rwxr-xr-x 0 0 0 2576 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/simple.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/__init__.py - - -rwxr-xr-x 0 0 0 7460 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/context.py - - -rwxr-xr-x 0 0 0 15056 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/functools.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/text/ - - -rwxr-xr-x 0 0 0 15526 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/text/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/ - - -rwxr-xr-x 0 0 0 148 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/__init__.py - - -rwxr-xr-x 0 0 0 134976 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/more.py - - -rwxr-xr-x 0 0 0 25416 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/recipes.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/ - - -rwxr-xr-x 0 0 0 501 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/__init__.py - - -rwxr-xr-x 0 0 0 3266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_elffile.py - - -rwxr-xr-x 0 0 0 8926 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_manylinux.py - - -rwxr-xr-x 0 0 0 2524 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_musllinux.py - - -rwxr-xr-x 0 0 0 10194 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_parser.py - - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_structures.py - - -rwxr-xr-x 0 0 0 5292 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_tokenizer.py - - -rwxr-xr-x 0 0 0 8208 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/markers.py - - -rwxr-xr-x 0 0 0 16397 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/metadata.py - - -rwxr-xr-x 0 0 0 3287 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/requirements.py - - -rwxr-xr-x 0 0 0 39206 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/specifiers.py - - -rwxr-xr-x 0 0 0 18106 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/tags.py - - -rwxr-xr-x 0 0 0 4355 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/utils.py - - -rwxr-xr-x 0 0 0 16326 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/version.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/ - - -rwxr-xr-x 0 0 0 12806 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/__init__.py - - -rwxr-xr-x 0 0 0 1164 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/__main__.py - - -rwxr-xr-x 0 0 0 4068 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/android.py - - -rwxr-xr-x 0 0 0 4910 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/api.py - - -rwxr-xr-x 0 0 0 2655 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/macos.py - - -rwxr-xr-x 0 0 0 6911 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/unix.py - - -rwxr-xr-x 0 0 0 160 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/version.py - - -rwxr-xr-x 0 0 0 6596 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/windows.py - - -rwxr-xr-x 0 0 0 80078 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/typing_extensions.py - - -rwxr-xr-x 0 0 0 8425 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/zipp.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/extern/ - - -rwxr-xr-x 0 0 0 2442 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/extern/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/ - - -rwxr-xr-x 0 0 0 4 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/INSTALLER - - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/LICENSE - - -rwxr-xr-x 0 0 0 6278 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/METADATA - - -rwxr-xr-x 0 0 0 36889 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/RECORD - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/REQUESTED - - -rwxr-xr-x 0 0 0 92 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/WHEEL - - -rwxr-xr-x 0 0 0 250 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/direct_url.json - - -rwxr-xr-x 0 0 0 2676 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/entry_points.txt - - -rwxr-xr-x 0 0 0 41 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/top_level.txt - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/ - - -rwxr-xr-x 0 0 0 9214 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/__init__.py - - -rwxr-xr-x 0 0 0 8921 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_core_metadata.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/ - - -rwxr-xr-x 0 0 0 359 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/__init__.py - - -rwxr-xr-x 0 0 0 5300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_collections.py - - -rwxr-xr-x 0 0 0 411 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_functools.py - - -rwxr-xr-x 0 0 0 43 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_log.py - - -rwxr-xr-x 0 0 0 239 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_macos_compat.py - - -rwxr-xr-x 0 0 0 19616 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_msvccompiler.py - - -rwxr-xr-x 0 0 0 8572 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/archive_util.py - - -rwxr-xr-x 0 0 0 14721 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/bcppcompiler.py - - -rwxr-xr-x 0 0 0 48643 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/ccompiler.py - - -rwxr-xr-x 0 0 0 17861 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/cmd.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/ - - -rwxr-xr-x 0 0 0 430 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/__init__.py - - -rwxr-xr-x 0 0 0 1614 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/_framework_compat.py - - -rwxr-xr-x 0 0 0 5408 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/bdist.py - - -rwxr-xr-x 0 0 0 4665 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/bdist_dumb.py - - -rwxr-xr-x 0 0 0 22013 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/bdist_rpm.py - - -rwxr-xr-x 0 0 0 5584 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build.py - - -rwxr-xr-x 0 0 0 7684 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build_clib.py - - -rwxr-xr-x 0 0 0 31503 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build_ext.py - - -rwxr-xr-x 0 0 0 16537 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build_py.py - - -rwxr-xr-x 0 0 0 5604 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build_scripts.py - - -rwxr-xr-x 0 0 0 4872 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/check.py - - -rwxr-xr-x 0 0 0 2594 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/clean.py - - -rwxr-xr-x 0 0 0 13077 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/config.py - - -rwxr-xr-x 0 0 0 30153 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install.py - - -rwxr-xr-x 0 0 0 2762 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_data.py - - -rwxr-xr-x 0 0 0 2788 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_egg_info.py - - -rwxr-xr-x 0 0 0 1180 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_headers.py - - -rwxr-xr-x 0 0 0 8409 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_lib.py - - -rwxr-xr-x 0 0 0 1932 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_scripts.py - - -rwxr-xr-x 0 0 0 672 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/py37compat.py - - -rwxr-xr-x 0 0 0 11817 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/register.py - - -rwxr-xr-x 0 0 0 19232 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/sdist.py - - -rwxr-xr-x 0 0 0 7491 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/upload.py - - -rwxr-xr-x 0 0 0 4911 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/config.py - - -rwxr-xr-x 0 0 0 9397 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/core.py - - -rwxr-xr-x 0 0 0 11924 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/cygwinccompiler.py - - -rwxr-xr-x 0 0 0 139 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/debug.py - - -rwxr-xr-x 0 0 0 3414 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/dep_util.py - - -rwxr-xr-x 0 0 0 8072 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/dir_util.py - - -rwxr-xr-x 0 0 0 50174 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/dist.py - - -rwxr-xr-x 0 0 0 3589 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/errors.py - - -rwxr-xr-x 0 0 0 10270 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/extension.py - - -rwxr-xr-x 0 0 0 17899 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/fancy_getopt.py - - -rwxr-xr-x 0 0 0 8212 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/file_util.py - - -rwxr-xr-x 0 0 0 13715 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/filelist.py - - -rwxr-xr-x 0 0 0 1201 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/log.py - - -rwxr-xr-x 0 0 0 30188 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/msvc9compiler.py - - -rwxr-xr-x 0 0 0 23577 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/msvccompiler.py - - -rwxr-xr-x 0 0 0 217 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/py38compat.py - - -rwxr-xr-x 0 0 0 639 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/py39compat.py - - -rwxr-xr-x 0 0 0 3495 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/spawn.py - - -rwxr-xr-x 0 0 0 18928 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py - - -rwxr-xr-x 0 0 0 12085 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/text_file.py - - -rwxr-xr-x 0 0 0 15601 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/unixccompiler.py - - -rwxr-xr-x 0 0 0 18099 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/util.py - - -rwxr-xr-x 0 0 0 12951 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/version.py - - -rwxr-xr-x 0 0 0 5205 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/versionpredicate.py - - -rwxr-xr-x 0 0 0 2235 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_entry_points.py - - -rwxr-xr-x 0 0 0 2433 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_imp.py - - -rwxr-xr-x 0 0 0 1468 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_importlib.py - - -rwxr-xr-x 0 0 0 675 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_itertools.py - - -rwxr-xr-x 0 0 0 4042 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_normalization.py - - -rwxr-xr-x 0 0 0 1056 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_path.py - - -rwxr-xr-x 0 0 0 1120 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_reqs.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/ - - -rwxr-xr-x 0 0 0 26498 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/__init__.py - - -rwxr-xr-x 0 0 0 2454 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py - - -rwxr-xr-x 0 0 0 743 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_collections.py - - -rwxr-xr-x 0 0 0 1859 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_compat.py - - -rwxr-xr-x 0 0 0 2895 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_functools.py - - -rwxr-xr-x 0 0 0 2068 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py - - -rwxr-xr-x 0 0 0 1165 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_meta.py - - -rwxr-xr-x 0 0 0 1098 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_py39compat.py - - -rwxr-xr-x 0 0 0 2166 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_text.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/ - - -rwxr-xr-x 0 0 0 506 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/__init__.py - - -rwxr-xr-x 0 0 0 4504 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_adapters.py - - -rwxr-xr-x 0 0 0 5457 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_common.py - - -rwxr-xr-x 0 0 0 2925 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_compat.py - - -rwxr-xr-x 0 0 0 884 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_itertools.py - - -rwxr-xr-x 0 0 0 3481 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_legacy.py - - -rwxr-xr-x 0 0 0 5140 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/abc.py - - -rwxr-xr-x 0 0 0 3581 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/readers.py - - -rwxr-xr-x 0 0 0 2576 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/simple.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/__init__.py - - -rwxr-xr-x 0 0 0 7460 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/context.py - - -rwxr-xr-x 0 0 0 15053 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/functools.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/text/ - - -rwxr-xr-x 0 0 0 15517 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/text/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/ - - -rwxr-xr-x 0 0 0 82 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/__init__.py - - -rwxr-xr-x 0 0 0 117959 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/more.py - - -rwxr-xr-x 0 0 0 16256 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/recipes.py - - -rwxr-xr-x 0 0 0 15130 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/ordered_set.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/ - - -rwxr-xr-x 0 0 0 501 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/__init__.py - - -rwxr-xr-x 0 0 0 3266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_elffile.py - - -rwxr-xr-x 0 0 0 8926 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_manylinux.py - - -rwxr-xr-x 0 0 0 2524 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_musllinux.py - - -rwxr-xr-x 0 0 0 10194 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_parser.py - - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_structures.py - - -rwxr-xr-x 0 0 0 5292 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_tokenizer.py - - -rwxr-xr-x 0 0 0 8208 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/markers.py - - -rwxr-xr-x 0 0 0 16397 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/metadata.py - - -rwxr-xr-x 0 0 0 3287 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/requirements.py - - -rwxr-xr-x 0 0 0 39206 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/specifiers.py - - -rwxr-xr-x 0 0 0 18106 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/tags.py - - -rwxr-xr-x 0 0 0 4355 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/utils.py - - -rwxr-xr-x 0 0 0 16326 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/version.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/ - - -rwxr-xr-x 0 0 0 396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/__init__.py - - -rwxr-xr-x 0 0 0 22633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/_parser.py - - -rwxr-xr-x 0 0 0 2943 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/_re.py - - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/_types.py - - -rwxr-xr-x 0 0 0 87149 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/typing_extensions.py - - -rwxr-xr-x 0 0 0 8425 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/zipp.py - - -rwxr-xr-x 0 0 0 7331 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/archive_util.py - - -rwxr-xr-x 0 0 0 20091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/build_meta.py - - -rwxr-xr-x 0 0 0 11776 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/cli-32.exe - - -rwxr-xr-x 0 0 0 14336 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/cli-64.exe - - -rwxr-xr-x 0 0 0 13824 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/cli-arm64.exe - - -rwxr-xr-x 0 0 0 11776 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/cli.exe - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/ - - -rwxr-xr-x 0 0 0 396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/__init__.py - - -rwxr-xr-x 0 0 0 4207 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/_requirestxt.py - - -rwxr-xr-x 0 0 0 2383 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/alias.py - - -rwxr-xr-x 0 0 0 16559 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/bdist_egg.py - - -rwxr-xr-x 0 0 0 1309 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/bdist_rpm.py - - -rwxr-xr-x 0 0 0 6784 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/build.py - - -rwxr-xr-x 0 0 0 4398 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/build_clib.py - - -rwxr-xr-x 0 0 0 17504 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/build_ext.py - - -rwxr-xr-x 0 0 0 14997 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/build_py.py - - -rwxr-xr-x 0 0 0 6722 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/develop.py - - -rwxr-xr-x 0 0 0 4242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/dist_info.py - - -rwxr-xr-x 0 0 0 86493 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/easy_install.py - - -rwxr-xr-x 0 0 0 33758 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/editable_wheel.py - - -rwxr-xr-x 0 0 0 26399 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/egg_info.py - - -rwxr-xr-x 0 0 0 5627 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/install.py - - -rwxr-xr-x 0 0 0 2066 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/install_egg_info.py - - -rwxr-xr-x 0 0 0 3870 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/install_lib.py - - -rwxr-xr-x 0 0 0 2359 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/install_scripts.py - - -rwxr-xr-x 0 0 0 468 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/register.py - - -rwxr-xr-x 0 0 0 2097 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/rotate.py - - -rwxr-xr-x 0 0 0 657 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/saveopts.py - - -rwxr-xr-x 0 0 0 7098 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/sdist.py - - -rwxr-xr-x 0 0 0 4927 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/setopt.py - - -rwxr-xr-x 0 0 0 8101 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/test.py - - -rwxr-xr-x 0 0 0 462 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/upload.py - - -rwxr-xr-x 0 0 0 7773 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/upload_docs.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/ - - -rwxr-xr-x 0 0 0 1498 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/__init__.py - - -rwxr-xr-x 0 0 0 14113 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_apply_pyprojecttoml.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/ - - -rwxr-xr-x 0 0 0 1038 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/__init__.py - - -rwxr-xr-x 0 0 0 11266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/error_reporting.py - - -rwxr-xr-x 0 0 0 1153 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/extra_validations.py - - -rwxr-xr-x 0 0 0 1612 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py - - -rwxr-xr-x 0 0 0 274908 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py - - -rwxr-xr-x 0 0 0 9160 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/formats.py - - -rwxr-xr-x 0 0 0 16401 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/expand.py - - -rwxr-xr-x 0 0 0 17490 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/pyprojecttoml.py - - -rwxr-xr-x 0 0 0 26184 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/setupcfg.py - - -rwxr-xr-x 0 0 0 936 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/dep_util.py - - -rwxr-xr-x 0 0 0 5518 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/depends.py - - -rwxr-xr-x 0 0 0 21147 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/discovery.py - - -rwxr-xr-x 0 0 0 38173 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/dist.py - - -rwxr-xr-x 0 0 0 2464 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/errors.py - - -rwxr-xr-x 0 0 0 5591 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/extension.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/extern/ - - -rwxr-xr-x 0 0 0 2539 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/extern/__init__.py - - -rwxr-xr-x 0 0 0 4868 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/glob.py - - -rwxr-xr-x 0 0 0 11776 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/gui-32.exe - - -rwxr-xr-x 0 0 0 14336 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/gui-64.exe - - -rwxr-xr-x 0 0 0 13824 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/gui-arm64.exe - - -rwxr-xr-x 0 0 0 11776 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/gui.exe - - -rwxr-xr-x 0 0 0 4989 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/installer.py - - -rwxr-xr-x 0 0 0 812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/launch.py - - -rwxr-xr-x 0 0 0 1239 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/logging.py - - -rwxr-xr-x 0 0 0 4782 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/monkey.py - - -rwxr-xr-x 0 0 0 47495 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/msvc.py - - -rwxr-xr-x 0 0 0 3073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/namespaces.py - - -rwxr-xr-x 0 0 0 38350 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/package_index.py - - -rwxr-xr-x 0 0 0 330 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/py312compat.py - - -rwxr-xr-x 0 0 0 14349 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/sandbox.py - - -rwxr-xr-x 0 0 0 138 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/script.tmpl - - -rwxr-xr-x 0 0 0 941 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/unicode_utils.py - - -rwxr-xr-x 0 0 0 161 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/version.py - - -rwxr-xr-x 0 0 0 3697 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/warnings.py - - -rwxr-xr-x 0 0 0 8628 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/wheel.py - - -rwxr-xr-x 0 0 0 719 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/windows_support.py - - -rwxr-xr-x 0 0 0 21564 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/site.py - - -rwxr-xr-x 0 0 0 34823 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/smtpd.py - - -rwxr-xr-x 0 0 0 45407 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/smtplib.py - - -rwxr-xr-x 0 0 0 7099 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/sndhdr.py - - -rwxr-xr-x 0 0 0 36694 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/socket.py - - -rwxr-xr-x 0 0 0 27296 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/socketserver.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/sqlite3/ - - -rwxr-xr-x 0 0 0 2014 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/sqlite3/__init__.py - - -rwxr-xr-x 0 0 0 2687 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/sqlite3/dbapi2.py - - -rwxr-xr-x 0 0 0 2825 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/sqlite3/dump.py - - -rwxr-xr-x 0 0 0 27973 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/sre_compile.py - - -rwxr-xr-x 0 0 0 7177 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/sre_constants.py - - -rwxr-xr-x 0 0 0 40779 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/sre_parse.py - - -rwxr-xr-x 0 0 0 52530 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/ssl.py - - -rwxr-xr-x 0 0 0 5485 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/stat.py - - -rwxr-xr-x 0 0 0 38067 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/statistics.py - - -rwxr-xr-x 0 0 0 10566 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/string.py - - -rwxr-xr-x 0 0 0 12917 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/stringprep.py - - -rwxr-xr-x 0 0 0 257 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/struct.py - - -rwxr-xr-x 0 0 0 83564 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/subprocess.py - - -rwxr-xr-x 0 0 0 18158 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/sunau.py - - -rwxr-xr-x 0 0 0 2281 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/symbol.py - - -rwxr-xr-x 0 0 0 7905 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/symtable.py - - -rwxr-xr-x 0 0 0 24914 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/sysconfig.py - - -rwxr-xr-x 0 0 0 11408 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/tabnanny.py - - -rwxr-xr-x 0 0 0 105355 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/tarfile.py - - -rwxr-xr-x 0 0 0 23254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/telnetlib.py - - -rwxr-xr-x 0 0 0 27678 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/tempfile.py - - -rwxr-xr-x 0 0 0 19407 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/textwrap.py - - -rwxr-xr-x 0 0 0 1003 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/this.py - - -rwxr-xr-x 0 0 0 54176 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/threading.py - - -rwxr-xr-x 0 0 0 13482 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/timeit.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/ - - -rwxr-xr-x 0 0 0 169626 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/__init__.py - - -rwxr-xr-x 0 0 0 148 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/__main__.py - - -rwxr-xr-x 0 0 0 2660 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/colorchooser.py - - -rwxr-xr-x 0 0 0 1245 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/commondialog.py - - -rwxr-xr-x 0 0 0 1493 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/constants.py - - -rwxr-xr-x 0 0 0 1543 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/dialog.py - - -rwxr-xr-x 0 0 0 11528 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/dnd.py - - -rwxr-xr-x 0 0 0 14947 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/filedialog.py - - -rwxr-xr-x 0 0 0 6821 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/font.py - - -rwxr-xr-x 0 0 0 3861 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/messagebox.py - - -rwxr-xr-x 0 0 0 1816 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/scrolledtext.py - - -rwxr-xr-x 0 0 0 11757 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/simpledialog.py - - -rwxr-xr-x 0 0 0 76845 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/tix.py - - -rwxr-xr-x 0 0 0 57139 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/ttk.py - - -rwxr-xr-x 0 0 0 2368 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/token.py - - -rwxr-xr-x 0 0 0 25883 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/tokenize.py - - -rwxr-xr-x 0 0 0 29208 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/trace.py - - -rwxr-xr-x 0 0 0 24660 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/traceback.py - - -rwxr-xr-x 0 0 0 18047 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/tracemalloc.py - - -rwxr-xr-x 0 0 0 879 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/tty.py - - -rwxr-xr-x 0 0 0 143796 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/turtle.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/ - - -rwxr-xr-x 0 0 0 314 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/__init__.py - - -rwxr-xr-x 0 0 0 15050 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/__main__.py - - -rwxr-xr-x 0 0 0 4248 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/bytedesign.py - - -rwxr-xr-x 0 0 0 951 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/chaos.py - - -rwxr-xr-x 0 0 0 3201 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/clock.py - - -rwxr-xr-x 0 0 0 1339 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/colormixer.py - - -rwxr-xr-x 0 0 0 2966 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/forest.py - - -rwxr-xr-x 0 0 0 3473 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/fractalcurves.py - - -rwxr-xr-x 0 0 0 2434 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/lindenmayer.py - - -rwxr-xr-x 0 0 0 2051 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/minimal_hanoi.py - - -rwxr-xr-x 0 0 0 6513 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/nim.py - - -rwxr-xr-x 0 0 0 1291 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/paint.py - - -rwxr-xr-x 0 0 0 1066 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/peace.py - - -rwxr-xr-x 0 0 0 3380 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/penrose.py - - -rwxr-xr-x 0 0 0 2825 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/planet_and_moon.py - - -rwxr-xr-x 0 0 0 1361 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/rosette.py - - -rwxr-xr-x 0 0 0 1804 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/round_dance.py - - -rwxr-xr-x 0 0 0 5052 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/sorting_animate.py - - -rwxr-xr-x 0 0 0 1401 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/tree.py - - -rwxr-xr-x 0 0 0 160 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/turtle.cfg - - -rwxr-xr-x 0 0 0 1119 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/two_canvases.py - - -rwxr-xr-x 0 0 0 821 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/yinyang.py - - -rwxr-xr-x 0 0 0 9785 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/types.py - - -rwxr-xr-x 0 0 0 77044 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/typing.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/unittest/ - - -rwxr-xr-x 0 0 0 3761 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/unittest/__init__.py - - -rwxr-xr-x 0 0 0 472 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/unittest/__main__.py - - -rwxr-xr-x 0 0 0 2295 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/unittest/_log.py - - -rwxr-xr-x 0 0 0 6368 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/unittest/async_case.py - - -rwxr-xr-x 0 0 0 57155 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/unittest/case.py - - -rwxr-xr-x 0 0 0 22702 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/unittest/loader.py - - -rwxr-xr-x 0 0 0 11256 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/unittest/main.py - - -rwxr-xr-x 0 0 0 99217 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/unittest/mock.py - - -rwxr-xr-x 0 0 0 8364 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/unittest/result.py - - -rwxr-xr-x 0 0 0 8051 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/unittest/runner.py - - -rwxr-xr-x 0 0 0 2403 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/unittest/signals.py - - -rwxr-xr-x 0 0 0 13512 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/unittest/suite.py - - -rwxr-xr-x 0 0 0 5215 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/unittest/util.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/urllib/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/urllib/__init__.py - - -rwxr-xr-x 0 0 0 2632 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/urllib/error.py - - -rwxr-xr-x 0 0 0 43065 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/urllib/parse.py - - -rwxr-xr-x 0 0 0 101659 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/urllib/request.py - - -rwxr-xr-x 0 0 0 2361 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/urllib/response.py - - -rwxr-xr-x 0 0 0 9424 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/urllib/robotparser.py - - -rwxr-xr-x 0 0 0 7301 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/uu.py - - -rwxr-xr-x 0 0 0 27324 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/uuid.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/venv/ - - -rwxr-xr-x 0 0 0 23213 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/venv/__init__.py - - -rwxr-xr-x 0 0 0 145 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/venv/__main__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/venv/scripts/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/venv/scripts/common/ - - -rwxr-xr-x 0 0 0 8834 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/venv/scripts/common/Activate.ps1 - - -rwxr-xr-x 0 0 0 1909 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/venv/scripts/common/activate - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/venv/scripts/posix/ - - -rwxr-xr-x 0 0 0 858 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/venv/scripts/posix/activate.csh - - -rwxr-xr-x 0 0 0 1998 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/venv/scripts/posix/activate.fish - - -rwxr-xr-x 0 0 0 19688 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/warnings.py - - -rwxr-xr-x 0 0 0 18004 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/wave.py - - -rwxr-xr-x 0 0 0 21560 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/weakref.py - - -rwxr-xr-x 0 0 0 24085 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/webbrowser.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/wsgiref/ - - -rwxr-xr-x 0 0 0 587 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/wsgiref/__init__.py - - -rwxr-xr-x 0 0 0 21669 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/wsgiref/handlers.py - - -rwxr-xr-x 0 0 0 6766 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/wsgiref/headers.py - - -rwxr-xr-x 0 0 0 5171 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/wsgiref/simple_server.py - - -rwxr-xr-x 0 0 0 5851 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/wsgiref/util.py - - -rwxr-xr-x 0 0 0 15099 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/wsgiref/validate.py - - -rwxr-xr-x 0 0 0 5913 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xdrlib.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/ - - -rwxr-xr-x 0 0 0 557 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/dom/ - - -rwxr-xr-x 0 0 0 936 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/dom/NodeFilter.py - - -rwxr-xr-x 0 0 0 4019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/dom/__init__.py - - -rwxr-xr-x 0 0 0 3451 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/dom/domreg.py - - -rwxr-xr-x 0 0 0 35767 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/dom/expatbuilder.py - - -rwxr-xr-x 0 0 0 3367 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/dom/minicompat.py - - -rwxr-xr-x 0 0 0 68066 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/dom/minidom.py - - -rwxr-xr-x 0 0 0 11997 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/dom/pulldom.py - - -rwxr-xr-x 0 0 0 12387 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/dom/xmlbuilder.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/etree/ - - -rwxr-xr-x 0 0 0 6882 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/etree/ElementInclude.py - - -rwxr-xr-x 0 0 0 13063 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/etree/ElementPath.py - - -rwxr-xr-x 0 0 0 73913 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/etree/ElementTree.py - - -rwxr-xr-x 0 0 0 1605 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/etree/__init__.py - - -rwxr-xr-x 0 0 0 82 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/etree/cElementTree.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/parsers/ - - -rwxr-xr-x 0 0 0 167 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/parsers/__init__.py - - -rwxr-xr-x 0 0 0 248 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/parsers/expat.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/sax/ - - -rwxr-xr-x 0 0 0 3642 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/sax/__init__.py - - -rwxr-xr-x 0 0 0 4785 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/sax/_exceptions.py - - -rwxr-xr-x 0 0 0 15727 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/sax/expatreader.py - - -rwxr-xr-x 0 0 0 13922 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/sax/handler.py - - -rwxr-xr-x 0 0 0 12255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/sax/saxutils.py - - -rwxr-xr-x 0 0 0 12684 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xml/sax/xmlreader.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xmlrpc/ - - -rwxr-xr-x 0 0 0 38 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xmlrpc/__init__.py - - -rwxr-xr-x 0 0 0 49391 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xmlrpc/client.py - - -rwxr-xr-x 0 0 0 36672 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/xmlrpc/server.py - - -rwxr-xr-x 0 0 0 7535 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/zipapp.py - - -rwxr-xr-x 0 0 0 87492 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/zipfile.py - - -rwxr-xr-x 0 0 0 30765 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/zipimport.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/zoneinfo/ - - -rwxr-xr-x 0 0 0 703 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/zoneinfo/__init__.py - - -rwxr-xr-x 0 0 0 5320 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/zoneinfo/_common.py - - -rwxr-xr-x 0 0 0 5081 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/zoneinfo/_tzpath.py - - -rwxr-xr-x 0 0 0 24318 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/python3.9/zoneinfo/_zoneinfo.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/ - - -rwxr-xr-x 0 0 0 20875 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/auto.tcl - - -rwxr-xr-x 0 0 0 128893 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/clock.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/ - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/ascii.enc - - -rwxr-xr-x 0 0 0 92873 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/big5.enc - - -rwxr-xr-x 0 0 0 97050 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cns11643.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1250.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1251.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1252.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1253.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1254.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1255.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1256.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1257.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1258.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp437.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp737.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp775.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp850.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp852.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp855.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp857.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp860.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp861.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp862.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp863.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp864.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp865.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp866.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp869.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp874.enc - - -rwxr-xr-x 0 0 0 48207 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp932.enc - - -rwxr-xr-x 0 0 0 132509 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp936.enc - - -rwxr-xr-x 0 0 0 130423 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp949.enc - - -rwxr-xr-x 0 0 0 91831 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp950.enc - - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/dingbats.enc - - -rwxr-xr-x 0 0 0 1054 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/ebcdic.enc - - -rwxr-xr-x 0 0 0 85574 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/euc-cn.enc - - -rwxr-xr-x 0 0 0 82537 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/euc-jp.enc - - -rwxr-xr-x 0 0 0 93918 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/euc-kr.enc - - -rwxr-xr-x 0 0 0 86619 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/gb12345.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/gb1988.enc - - -rwxr-xr-x 0 0 0 84532 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/gb2312-raw.enc - - -rwxr-xr-x 0 0 0 85574 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/gb2312.enc - - -rwxr-xr-x 0 0 0 192 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso2022-jp.enc - - -rwxr-xr-x 0 0 0 115 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso2022-kr.enc - - -rwxr-xr-x 0 0 0 226 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso2022.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-1.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-10.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-11.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-13.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-14.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-15.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-16.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-2.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-3.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-4.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-5.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-6.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-7.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-8.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-9.enc - - -rwxr-xr-x 0 0 0 1092 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/jis0201.enc - - -rwxr-xr-x 0 0 0 80453 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/jis0208.enc - - -rwxr-xr-x 0 0 0 70974 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/jis0212.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/koi8-r.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/koi8-u.enc - - -rwxr-xr-x 0 0 0 92877 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/ksc5601.enc - - -rwxr-xr-x 0 0 0 1096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/macCentEuro.enc - - -rwxr-xr-x 0 0 0 1096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/macCroatian.enc - - -rwxr-xr-x 0 0 0 1096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/macCyrillic.enc - - -rwxr-xr-x 0 0 0 1096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/macDingbats.enc - - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/macGreek.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/macIceland.enc - - -rwxr-xr-x 0 0 0 48028 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/macJapan.enc - - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/macRoman.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/macRomania.enc - - -rwxr-xr-x 0 0 0 1092 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/macThai.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/macTurkish.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/macUkraine.enc - - -rwxr-xr-x 0 0 0 41862 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/shiftjis.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/symbol.enc - - -rwxr-xr-x 0 0 0 1092 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/tis-620.enc - - -rwxr-xr-x 0 0 0 7900 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/history.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/http1.0/ - - -rwxr-xr-x 0 0 0 9689 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/http1.0/http.tcl - - -rwxr-xr-x 0 0 0 735 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/http1.0/pkgIndex.tcl - - -rwxr-xr-x 0 0 0 24806 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/init.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ - - -rwxr-xr-x 0 0 0 989 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/af.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/af_za.msg - - -rwxr-xr-x 0 0 0 1964 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ar.msg - - -rwxr-xr-x 0 0 0 259 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ar_in.msg - - -rwxr-xr-x 0 0 0 1812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ar_jo.msg - - -rwxr-xr-x 0 0 0 1812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ar_lb.msg - - -rwxr-xr-x 0 0 0 1812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ar_sy.msg - - -rwxr-xr-x 0 0 0 2105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/be.msg - - -rwxr-xr-x 0 0 0 1819 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/bg.msg - - -rwxr-xr-x 0 0 0 2286 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/bn.msg - - -rwxr-xr-x 0 0 0 259 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/bn_in.msg - - -rwxr-xr-x 0 0 0 1102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ca.msg - - -rwxr-xr-x 0 0 0 1300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/cs.msg - - -rwxr-xr-x 0 0 0 1156 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/da.msg - - -rwxr-xr-x 0 0 0 1222 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/de.msg - - -rwxr-xr-x 0 0 0 812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/de_at.msg - - -rwxr-xr-x 0 0 0 1223 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/de_be.msg - - -rwxr-xr-x 0 0 0 2252 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/el.msg - - -rwxr-xr-x 0 0 0 300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_au.msg - - -rwxr-xr-x 0 0 0 305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_be.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_bw.msg - - -rwxr-xr-x 0 0 0 288 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_ca.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_gb.msg - - -rwxr-xr-x 0 0 0 321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_hk.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_ie.msg - - -rwxr-xr-x 0 0 0 310 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_in.msg - - -rwxr-xr-x 0 0 0 300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_nz.msg - - -rwxr-xr-x 0 0 0 321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_ph.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_sg.msg - - -rwxr-xr-x 0 0 0 245 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_za.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_zw.msg - - -rwxr-xr-x 0 0 0 1231 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/eo.msg - - -rwxr-xr-x 0 0 0 1180 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es.msg - - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_ar.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_bo.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_cl.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_co.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_cr.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_do.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_ec.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_gt.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_hn.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_mx.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_ni.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_pa.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_pe.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_pr.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_py.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_sv.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_uy.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_ve.msg - - -rwxr-xr-x 0 0 0 1206 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/et.msg - - -rwxr-xr-x 0 0 0 985 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/eu.msg - - -rwxr-xr-x 0 0 0 287 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/eu_es.msg - - -rwxr-xr-x 0 0 0 1664 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/fa.msg - - -rwxr-xr-x 0 0 0 1957 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/fa_in.msg - - -rwxr-xr-x 0 0 0 417 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/fa_ir.msg - - -rwxr-xr-x 0 0 0 1145 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/fi.msg - - -rwxr-xr-x 0 0 0 986 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/fo.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/fo_fo.msg - - -rwxr-xr-x 0 0 0 1205 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/fr.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/fr_be.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/fr_ca.msg - - -rwxr-xr-x 0 0 0 281 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/fr_ch.msg - - -rwxr-xr-x 0 0 0 1141 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ga.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ga_ie.msg - - -rwxr-xr-x 0 0 0 950 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/gl.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/gl_es.msg - - -rwxr-xr-x 0 0 0 1037 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/gv.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/gv_gb.msg - - -rwxr-xr-x 0 0 0 1938 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/he.msg - - -rwxr-xr-x 0 0 0 1738 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/hi.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/hi_in.msg - - -rwxr-xr-x 0 0 0 1121 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/hr.msg - - -rwxr-xr-x 0 0 0 1327 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/hu.msg - - -rwxr-xr-x 0 0 0 914 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/id.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/id_id.msg - - -rwxr-xr-x 0 0 0 1255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/is.msg - - -rwxr-xr-x 0 0 0 1240 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/it.msg - - -rwxr-xr-x 0 0 0 244 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/it_ch.msg - - -rwxr-xr-x 0 0 0 1645 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ja.msg - - -rwxr-xr-x 0 0 0 978 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/kl.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/kl_gl.msg - - -rwxr-xr-x 0 0 0 1566 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ko.msg - - -rwxr-xr-x 0 0 0 346 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ko_kr.msg - - -rwxr-xr-x 0 0 0 1958 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/kok.msg - - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/kok_in.msg - - -rwxr-xr-x 0 0 0 966 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/kw.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/kw_gb.msg - - -rwxr-xr-x 0 0 0 1255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/lt.msg - - -rwxr-xr-x 0 0 0 1219 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/lv.msg - - -rwxr-xr-x 0 0 0 2105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/mk.msg - - -rwxr-xr-x 0 0 0 1807 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/mr.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/mr_in.msg - - -rwxr-xr-x 0 0 0 910 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ms.msg - - -rwxr-xr-x 0 0 0 259 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ms_my.msg - - -rwxr-xr-x 0 0 0 690 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/mt.msg - - -rwxr-xr-x 0 0 0 1157 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/nb.msg - - -rwxr-xr-x 0 0 0 1079 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/nl.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/nl_be.msg - - -rwxr-xr-x 0 0 0 1148 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/nn.msg - - -rwxr-xr-x 0 0 0 1211 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/pl.msg - - -rwxr-xr-x 0 0 0 1127 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/pt.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/pt_br.msg - - -rwxr-xr-x 0 0 0 1172 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ro.msg - - -rwxr-xr-x 0 0 0 2039 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ru.msg - - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ru_ua.msg - - -rwxr-xr-x 0 0 0 1160 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/sh.msg - - -rwxr-xr-x 0 0 0 1203 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/sk.msg - - -rwxr-xr-x 0 0 0 1164 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/sl.msg - - -rwxr-xr-x 0 0 0 1267 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/sq.msg - - -rwxr-xr-x 0 0 0 2035 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/sr.msg - - -rwxr-xr-x 0 0 0 1167 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/sv.msg - - -rwxr-xr-x 0 0 0 991 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/sw.msg - - -rwxr-xr-x 0 0 0 1835 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ta.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ta_in.msg - - -rwxr-xr-x 0 0 0 2102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/te.msg - - -rwxr-xr-x 0 0 0 411 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/te_in.msg - - -rwxr-xr-x 0 0 0 2305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/th.msg - - -rwxr-xr-x 0 0 0 1133 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/tr.msg - - -rwxr-xr-x 0 0 0 2113 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/uk.msg - - -rwxr-xr-x 0 0 0 1421 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/vi.msg - - -rwxr-xr-x 0 0 0 3330 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/zh.msg - - -rwxr-xr-x 0 0 0 312 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/zh_cn.msg - - -rwxr-xr-x 0 0 0 752 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/zh_hk.msg - - -rwxr-xr-x 0 0 0 339 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/zh_sg.msg - - -rwxr-xr-x 0 0 0 346 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/zh_tw.msg - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/opt0.4/ - - -rwxr-xr-x 0 0 0 32705 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/opt0.4/optparse.tcl - - -rwxr-xr-x 0 0 0 608 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/opt0.4/pkgIndex.tcl - - -rwxr-xr-x 0 0 0 23244 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/package.tcl - - -rwxr-xr-x 0 0 0 816 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/parray.tcl - - -rwxr-xr-x 0 0 0 40934 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/safe.tcl - - -rwxr-xr-x 0 0 0 4511 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/tclAppInit.c - - -rwxr-xr-x 0 0 0 5539 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/tclIndex - - -rwxr-xr-x 0 0 0 11824 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/tm.tcl - - -rwxr-xr-x 0 0 0 4876 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8.6/word.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8/8.4/ - - -rwxr-xr-x 0 0 0 10984 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8/8.4/platform-1.0.18.tm - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8/8.4/platform/ - - -rwxr-xr-x 0 0 0 5977 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8/8.4/platform/shell-1.1.4.tm - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8/8.5/ - - -rwxr-xr-x 0 0 0 33926 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8/8.5/msgcat-1.6.1.tm - - -rwxr-xr-x 0 0 0 103526 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8/8.5/tcltest-2.5.3.tm - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8/8.6/ - - -rwxr-xr-x 0 0 0 111709 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tcl8/8.6/http-2.9.5.tm - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/thread2.8.7/ - - -rwxr-xr-x 0 0 0 29530 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/thread2.8.7/ttrace.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ - - -rwxr-xr-x 0 0 0 8534 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/bgerror.tcl - - -rwxr-xr-x 0 0 0 20830 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/button.tcl - - -rwxr-xr-x 0 0 0 9652 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/choosedir.tcl - - -rwxr-xr-x 0 0 0 21417 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/clrpick.tcl - - -rwxr-xr-x 0 0 0 8368 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/comdlg.tcl - - -rwxr-xr-x 0 0 0 32792 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/console.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/ - - -rwxr-xr-x 0 0 0 2082 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/README - - -rwxr-xr-x 0 0 0 6670 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/anilabel.tcl - - -rwxr-xr-x 0 0 0 3494 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/aniwave.tcl - - -rwxr-xr-x 0 0 0 8110 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/arrow.tcl - - -rwxr-xr-x 0 0 0 3078 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/bind.tcl - - -rwxr-xr-x 0 0 0 1411 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/bitmap.tcl - - -rwxr-xr-x 0 0 0 1758 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/browse - - -rwxr-xr-x 0 0 0 1504 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/button.tcl - - -rwxr-xr-x 0 0 0 2278 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/check.tcl - - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/clrpick.tcl - - -rwxr-xr-x 0 0 0 5002 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/colors.tcl - - -rwxr-xr-x 0 0 0 1963 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/combo.tcl - - -rwxr-xr-x 0 0 0 5036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/cscroll.tcl - - -rwxr-xr-x 0 0 0 6205 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/ctext.tcl - - -rwxr-xr-x 0 0 0 974 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/dialog1.tcl - - -rwxr-xr-x 0 0 0 828 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/dialog2.tcl - - -rwxr-xr-x 0 0 0 3867 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/en.msg - - -rwxr-xr-x 0 0 0 1401 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/entry1.tcl - - -rwxr-xr-x 0 0 0 2091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/entry2.tcl - - -rwxr-xr-x 0 0 0 6102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/entry3.tcl - - -rwxr-xr-x 0 0 0 2351 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/filebox.tcl - - -rwxr-xr-x 0 0 0 79803 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/floor.tcl - - -rwxr-xr-x 0 0 0 1710 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/fontchoose.tcl - - -rwxr-xr-x 0 0 0 1046 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/form.tcl - - -rwxr-xr-x 0 0 0 56598 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/goldberg.tcl - - -rwxr-xr-x 0 0 0 512 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/hello - - -rwxr-xr-x 0 0 0 1497 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/hscale.tcl - - -rwxr-xr-x 0 0 0 2063 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/icon.tcl - - -rwxr-xr-x 0 0 0 1002 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/image1.tcl - - -rwxr-xr-x 0 0 0 3359 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/image2.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/ - - -rwxr-xr-x 0 0 0 51712 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/earth.gif - - -rwxr-xr-x 0 0 0 8157 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/earthmenu.png - - -rwxr-xr-x 0 0 0 6343 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/earthris.gif - - -rwxr-xr-x 0 0 0 1886 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/flagdown.xbm - - -rwxr-xr-x 0 0 0 1880 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/flagup.xbm - - -rwxr-xr-x 0 0 0 275 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/gray25.xbm - - -rwxr-xr-x 0 0 0 1883 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/letters.xbm - - -rwxr-xr-x 0 0 0 1889 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/noletter.xbm - - -rwxr-xr-x 0 0 0 54257 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/ouster.png - - -rwxr-xr-x 0 0 0 272 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/pattern.xbm - - -rwxr-xr-x 0 0 0 2341 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/tcllogo.gif - - -rwxr-xr-x 0 0 0 196623 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/teapot.ppm - - -rwxr-xr-x 0 0 0 10490 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/items.tcl - - -rwxr-xr-x 0 0 0 8075 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/ixset - - -rwxr-xr-x 0 0 0 9123 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/knightstour.tcl - - -rwxr-xr-x 0 0 0 1379 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/label.tcl - - -rwxr-xr-x 0 0 0 1847 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/labelframe.tcl - - -rwxr-xr-x 0 0 0 2267 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/license.terms - - -rwxr-xr-x 0 0 0 4357 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/mclist.tcl - - -rwxr-xr-x 0 0 0 7479 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/menu.tcl - - -rwxr-xr-x 0 0 0 4476 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/menubu.tcl - - -rwxr-xr-x 0 0 0 1998 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/msgbox.tcl - - -rwxr-xr-x 0 0 0 6750 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/nl.msg - - -rwxr-xr-x 0 0 0 1130 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/paned1.tcl - - -rwxr-xr-x 0 0 0 2244 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/paned2.tcl - - -rwxr-xr-x 0 0 0 7623 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/pendulum.tcl - - -rwxr-xr-x 0 0 0 2757 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/plot.tcl - - -rwxr-xr-x 0 0 0 2602 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/puzzle.tcl - - -rwxr-xr-x 0 0 0 2752 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/radio.tcl - - -rwxr-xr-x 0 0 0 5319 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/rmt - - -rwxr-xr-x 0 0 0 8300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/rolodex - - -rwxr-xr-x 0 0 0 5333 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/ruler.tcl - - -rwxr-xr-x 0 0 0 2273 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/sayings.tcl - - -rwxr-xr-x 0 0 0 4403 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/search.tcl - - -rwxr-xr-x 0 0 0 1820 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/spin.tcl - - -rwxr-xr-x 0 0 0 2048 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/states.tcl - - -rwxr-xr-x 0 0 0 6943 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/style.tcl - - -rwxr-xr-x 0 0 0 5298 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/tclIndex - - -rwxr-xr-x 0 0 0 11253 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/tcolor - - -rwxr-xr-x 0 0 0 4291 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/text.tcl - - -rwxr-xr-x 0 0 0 2188 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/textpeer.tcl - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/timer - - -rwxr-xr-x 0 0 0 3272 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/toolbar.tcl - - -rwxr-xr-x 0 0 0 3178 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/tree.tcl - - -rwxr-xr-x 0 0 0 3405 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/ttkbut.tcl - - -rwxr-xr-x 0 0 0 2391 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/ttkmenu.tcl - - -rwxr-xr-x 0 0 0 2317 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/ttknote.tcl - - -rwxr-xr-x 0 0 0 4177 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/ttkpane.tcl - - -rwxr-xr-x 0 0 0 1536 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/ttkprogress.tcl - - -rwxr-xr-x 0 0 0 1420 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/ttkscale.tcl - - -rwxr-xr-x 0 0 0 11654 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/twind.tcl - - -rwxr-xr-x 0 0 0 4706 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/unicodeout.tcl - - -rwxr-xr-x 0 0 0 1477 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/vscale.tcl - - -rwxr-xr-x 0 0 0 24063 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/demos/widget - - -rwxr-xr-x 0 0 0 5813 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/dialog.tcl - - -rwxr-xr-x 0 0 0 17715 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/entry.tcl - - -rwxr-xr-x 0 0 0 4857 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/focus.tcl - - -rwxr-xr-x 0 0 0 16011 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/fontchooser.tcl - - -rwxr-xr-x 0 0 0 16704 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/iconlist.tcl - - -rwxr-xr-x 0 0 0 10884 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/icons.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/images/ - - -rwxr-xr-x 0 0 0 322 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/images/README - - -rwxr-xr-x 0 0 0 32900 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/images/logo.eps - - -rwxr-xr-x 0 0 0 2341 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/images/logo100.gif - - -rwxr-xr-x 0 0 0 1670 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/images/logo64.gif - - -rwxr-xr-x 0 0 0 11000 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/images/logoLarge.gif - - -rwxr-xr-x 0 0 0 3889 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/images/logoMed.gif - - -rwxr-xr-x 0 0 0 27809 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo.eps - - -rwxr-xr-x 0 0 0 1615 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo100.gif - - -rwxr-xr-x 0 0 0 2489 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo150.gif - - -rwxr-xr-x 0 0 0 2981 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo175.gif - - -rwxr-xr-x 0 0 0 3491 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo200.gif - - -rwxr-xr-x 0 0 0 1171 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo75.gif - - -rwxr-xr-x 0 0 0 5473 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/images/tai-ku.gif - - -rwxr-xr-x 0 0 0 14695 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/listbox.tcl - - -rwxr-xr-x 0 0 0 9565 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/megawidget.tcl - - -rwxr-xr-x 0 0 0 38122 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/menu.tcl - - -rwxr-xr-x 0 0 0 29352 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/mkpsenc.tcl - - -rwxr-xr-x 0 0 0 16359 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/msgbox.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/ - - -rwxr-xr-x 0 0 0 4158 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/cs.msg - - -rwxr-xr-x 0 0 0 3909 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/da.msg - - -rwxr-xr-x 0 0 0 4823 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/de.msg - - -rwxr-xr-x 0 0 0 8698 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/el.msg - - -rwxr-xr-x 0 0 0 3286 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/en.msg - - -rwxr-xr-x 0 0 0 63 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/en_gb.msg - - -rwxr-xr-x 0 0 0 3916 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/eo.msg - - -rwxr-xr-x 0 0 0 3948 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/es.msg - - -rwxr-xr-x 0 0 0 3805 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/fr.msg - - -rwxr-xr-x 0 0 0 4600 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/hu.msg - - -rwxr-xr-x 0 0 0 3692 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/it.msg - - -rwxr-xr-x 0 0 0 4466 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/nl.msg - - -rwxr-xr-x 0 0 0 4841 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/pl.msg - - -rwxr-xr-x 0 0 0 3913 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/pt.msg - - -rwxr-xr-x 0 0 0 7214 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/ru.msg - - -rwxr-xr-x 0 0 0 3832 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/sv.msg - - -rwxr-xr-x 0 0 0 5594 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/obsolete.tcl - - -rwxr-xr-x 0 0 0 1586 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/optMenu.tcl - - -rwxr-xr-x 0 0 0 8174 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/palette.tcl - - -rwxr-xr-x 0 0 0 5176 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/panedwindow.tcl - - -rwxr-xr-x 0 0 0 7370 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/safetk.tcl - - -rwxr-xr-x 0 0 0 7766 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/scale.tcl - - -rwxr-xr-x 0 0 0 12732 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/scrlbar.tcl - - -rwxr-xr-x 0 0 0 15933 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/spinbox.tcl - - -rwxr-xr-x 0 0 0 20270 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/tclIndex - - -rwxr-xr-x 0 0 0 5125 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/tearoff.tcl - - -rwxr-xr-x 0 0 0 33724 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/text.tcl - - -rwxr-xr-x 0 0 0 23554 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/tk.tcl - - -rwxr-xr-x 0 0 0 4615 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/tkAppInit.c - - -rwxr-xr-x 0 0 0 38373 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/tkfbox.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/ - - -rwxr-xr-x 0 0 0 3604 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/altTheme.tcl - - -rwxr-xr-x 0 0 0 3719 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/aquaTheme.tcl - - -rwxr-xr-x 0 0 0 2931 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/button.tcl - - -rwxr-xr-x 0 0 0 4662 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/clamTheme.tcl - - -rwxr-xr-x 0 0 0 3749 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/classicTheme.tcl - - -rwxr-xr-x 0 0 0 12270 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/combobox.tcl - - -rwxr-xr-x 0 0 0 4619 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/cursors.tcl - - -rwxr-xr-x 0 0 0 4410 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/defaults.tcl - - -rwxr-xr-x 0 0 0 16985 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/entry.tcl - - -rwxr-xr-x 0 0 0 5575 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/fonts.tcl - - -rwxr-xr-x 0 0 0 6400 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/menubutton.tcl - - -rwxr-xr-x 0 0 0 5626 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/notebook.tcl - - -rwxr-xr-x 0 0 0 2199 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/panedwindow.tcl - - -rwxr-xr-x 0 0 0 1089 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/progress.tcl - - -rwxr-xr-x 0 0 0 2693 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/scale.tcl - - -rwxr-xr-x 0 0 0 3159 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/scrollbar.tcl - - -rwxr-xr-x 0 0 0 2401 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/sizegrip.tcl - - -rwxr-xr-x 0 0 0 4811 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/spinbox.tcl - - -rwxr-xr-x 0 0 0 9797 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/treeview.tcl - - -rwxr-xr-x 0 0 0 4817 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/ttk.tcl - - -rwxr-xr-x 0 0 0 8287 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/utils.tcl - - -rwxr-xr-x 0 0 0 9481 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/vistaTheme.tcl - - -rwxr-xr-x 0 0 0 2781 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/winTheme.tcl - - -rwxr-xr-x 0 0 0 2036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/xpTheme.tcl - - -rwxr-xr-x 0 0 0 10252 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/unsupported.tcl - - -rwxr-xr-x 0 0 0 26075 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/lib/tk8.6/xmfbox.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/share/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/share/man/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/share/man/man1/ - - -rwxr-xr-x 0 0 0 18711 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/share/man/man1/python3.1 - - -rwxr-xr-x 0 0 0 18711 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/share/man/man1/python3.9.1 + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/bin/ + - -rwxr-xr-x 0 0 0 127 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/bin/2to3 + - -rwxr-xr-x 0 0 0 127 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/bin/2to3-3.9 + - -rwxr-xr-x 0 0 0 125 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/bin/idle3 + - -rwxr-xr-x 0 0 0 125 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/bin/idle3.9 + - -rwxr-xr-x 0 0 0 255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/bin/pip + - -rwxr-xr-x 0 0 0 255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/bin/pip3 + - -rwxr-xr-x 0 0 0 255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/bin/pip3.9 + - -rwxr-xr-x 0 0 0 110 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/bin/pydoc3 + - -rwxr-xr-x 0 0 0 110 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/bin/pydoc3.9 + - -rwxr-xr-x 0 0 0 66120 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/bin/python + - -rwxr-xr-x 0 0 0 66120 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/bin/python3 + - -rwxr-xr-x 0 0 0 3091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/bin/python3-config + - -rwxr-xr-x 0 0 0 66120 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/bin/python3.9 + - -rwxr-xr-x 0 0 0 3091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/bin/python3.9-config + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/ + - -rwxr-xr-x 0 0 0 26193 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/Python-ast.h + - -rwxr-xr-x 0 0 0 3532 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/Python.h + - -rwxr-xr-x 0 0 0 30476 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/abstract.h + - -rwxr-xr-x 0 0 0 1224 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/asdl.h + - -rwxr-xr-x 0 0 0 947 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/ast.h + - -rwxr-xr-x 0 0 0 468 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/bitset.h + - -rwxr-xr-x 0 0 0 264 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/bltinmodule.h + - -rwxr-xr-x 0 0 0 885 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/boolobject.h + - -rwxr-xr-x 0 0 0 1484 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/bytearrayobject.h + - -rwxr-xr-x 0 0 0 3048 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/bytesobject.h + - -rwxr-xr-x 0 0 0 712 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cellobject.h + - -rwxr-xr-x 0 0 0 5954 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/ceval.h + - -rwxr-xr-x 0 0 0 1657 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/classobject.h + - -rwxr-xr-x 0 0 0 318 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/code.h + - -rwxr-xr-x 0 0 0 6793 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/codecs.h + - -rwxr-xr-x 0 0 0 3778 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/compile.h + - -rwxr-xr-x 0 0 0 1806 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/complexobject.h + - -rwxr-xr-x 0 0 0 1962 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/context.h + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/ + - -rwxr-xr-x 0 0 0 14200 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/abstract.h + - -rwxr-xr-x 0 0 0 769 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/bytearrayobject.h + - -rwxr-xr-x 0 0 0 4114 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/bytesobject.h + - -rwxr-xr-x 0 0 0 1537 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/ceval.h + - -rwxr-xr-x 0 0 0 6989 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/code.h + - -rwxr-xr-x 0 0 0 3797 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/dictobject.h + - -rwxr-xr-x 0 0 0 721 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/fileobject.h + - -rwxr-xr-x 0 0 0 4004 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/fileutils.h + - -rwxr-xr-x 0 0 0 3059 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/frameobject.h + - -rwxr-xr-x 0 0 0 1473 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/import.h + - -rwxr-xr-x 0 0 0 16979 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/initconfig.h + - -rwxr-xr-x 0 0 0 456 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/interpreteridobject.h + - -rwxr-xr-x 0 0 0 1364 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/listobject.h + - -rwxr-xr-x 0 0 0 1399 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/methodobject.h + - -rwxr-xr-x 0 0 0 19358 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/object.h + - -rwxr-xr-x 0 0 0 4456 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/objimpl.h + - -rwxr-xr-x 0 0 0 5101 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/pyerrors.h + - -rwxr-xr-x 0 0 0 2096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/pylifecycle.h + - -rwxr-xr-x 0 0 0 3511 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/pymem.h + - -rwxr-xr-x 0 0 0 10134 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/pystate.h + - -rwxr-xr-x 0 0 0 575 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/sysmodule.h + - -rwxr-xr-x 0 0 0 473 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/traceback.h + - -rwxr-xr-x 0 0 0 1036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/tupleobject.h + - -rwxr-xr-x 0 0 0 46154 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/cpython/unicodeobject.h + - -rwxr-xr-x 0 0 0 9255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/datetime.h + - -rwxr-xr-x 0 0 0 3019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/descrobject.h + - -rwxr-xr-x 0 0 0 3715 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/dictobject.h + - -rwxr-xr-x 0 0 0 22469 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/dynamic_annotations.h + - -rwxr-xr-x 0 0 0 253 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/enumobject.h + - -rwxr-xr-x 0 0 0 1624 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/errcode.h + - -rwxr-xr-x 0 0 0 1209 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/eval.h + - -rwxr-xr-x 0 0 0 1098 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/exports.h + - -rwxr-xr-x 0 0 0 1571 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/fileobject.h + - -rwxr-xr-x 0 0 0 597 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/fileutils.h + - -rwxr-xr-x 0 0 0 4360 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/floatobject.h + - -rwxr-xr-x 0 0 0 337 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/frameobject.h + - -rwxr-xr-x 0 0 0 4057 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/funcobject.h + - -rwxr-xr-x 0 0 0 334 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/genericaliasobject.h + - -rwxr-xr-x 0 0 0 3525 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/genobject.h + - -rwxr-xr-x 0 0 0 2118 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/graminit.h + - -rwxr-xr-x 0 0 0 1821 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/grammar.h + - -rwxr-xr-x 0 0 0 3026 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/import.h + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/ + - -rwxr-xr-x 0 0 0 953 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pegen_interface.h + - -rwxr-xr-x 0 0 0 479 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_abstract.h + - -rwxr-xr-x 0 0 0 1126 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_accu.h + - -rwxr-xr-x 0 0 0 16977 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_atomic.h + - -rwxr-xr-x 0 0 0 3384 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_bytes_methods.h + - -rwxr-xr-x 0 0 0 2620 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_byteswap.h + - -rwxr-xr-x 0 0 0 870 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_call.h + - -rwxr-xr-x 0 0 0 3403 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_ceval.h + - -rwxr-xr-x 0 0 0 541 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_code.h + - -rwxr-xr-x 0 0 0 2809 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_condvar.h + - -rwxr-xr-x 0 0 0 800 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_context.h + - -rwxr-xr-x 0 0 0 646 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_dtoa.h + - -rwxr-xr-x 0 0 0 1541 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_fileutils.h + - -rwxr-xr-x 0 0 0 6647 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_gc.h + - -rwxr-xr-x 0 0 0 490 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_getopt.h + - -rwxr-xr-x 0 0 0 1565 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_gil.h + - -rwxr-xr-x 0 0 0 3697 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_hamt.h + - -rwxr-xr-x 0 0 0 4197 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_hashtable.h + - -rwxr-xr-x 0 0 0 473 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_import.h + - -rwxr-xr-x 0 0 0 5233 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_initconfig.h + - -rwxr-xr-x 0 0 0 5299 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_interp.h + - -rwxr-xr-x 0 0 0 1548 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_long.h + - -rwxr-xr-x 0 0 0 4157 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_object.h + - -rwxr-xr-x 0 0 0 1936 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_pathconfig.h + - -rwxr-xr-x 0 0 0 2032 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_pyerrors.h + - -rwxr-xr-x 0 0 0 206 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_pyhash.h + - -rwxr-xr-x 0 0 0 3741 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_pylifecycle.h + - -rwxr-xr-x 0 0 0 3363 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_pymem.h + - -rwxr-xr-x 0 0 0 3583 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_pystate.h + - -rwxr-xr-x 0 0 0 4452 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_runtime.h + - -rwxr-xr-x 0 0 0 548 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_sysmodule.h + - -rwxr-xr-x 0 0 0 3056 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_traceback.h + - -rwxr-xr-x 0 0 0 442 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_tupleobject.h + - -rwxr-xr-x 0 0 0 633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/internal/pycore_warnings.h + - -rwxr-xr-x 0 0 0 334 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/interpreteridobject.h + - -rwxr-xr-x 0 0 0 861 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/intrcheck.h + - -rwxr-xr-x 0 0 0 521 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/iterobject.h + - -rwxr-xr-x 0 0 0 1781 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/listobject.h + - -rwxr-xr-x 0 0 0 3799 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/longintrepr.h + - -rwxr-xr-x 0 0 0 9513 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/longobject.h + - -rwxr-xr-x 0 0 0 803 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/marshal.h + - -rwxr-xr-x 0 0 0 2764 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/memoryobject.h + - -rwxr-xr-x 0 0 0 3775 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/methodobject.h + - -rwxr-xr-x 0 0 0 9959 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/modsupport.h + - -rwxr-xr-x 0 0 0 2361 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/moduleobject.h + - -rwxr-xr-x 0 0 0 349 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/namespaceobject.h + - -rwxr-xr-x 0 0 0 1281 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/node.h + - -rwxr-xr-x 0 0 0 24628 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/object.h + - -rwxr-xr-x 0 0 0 8423 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/objimpl.h + - -rwxr-xr-x 0 0 0 1299 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/odictobject.h + - -rwxr-xr-x 0 0 0 4900 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/opcode.h + - -rwxr-xr-x 0 0 0 737 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/osdefs.h + - -rwxr-xr-x 0 0 0 291 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/osmodule.h + - -rwxr-xr-x 0 0 0 2958 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/parsetok.h + - -rwxr-xr-x 0 0 0 1299 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/patchlevel.h + - -rwxr-xr-x 0 0 0 846 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/picklebufobject.h + - -rwxr-xr-x 0 0 0 2474 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/py_curses.h + - -rwxr-xr-x 0 0 0 2744 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/pyarena.h + - -rwxr-xr-x 0 0 0 1725 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/pycapsule.h + - -rwxr-xr-x 0 0 0 48076 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/pyconfig.h + - -rwxr-xr-x 0 0 0 1387 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/pyctype.h + - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/pydebug.h + - -rwxr-xr-x 0 0 0 2413 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/pydtrace.h + - -rwxr-xr-x 0 0 0 12427 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/pyerrors.h + - -rwxr-xr-x 0 0 0 2572 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/pyexpat.h + - -rwxr-xr-x 0 0 0 444 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/pyfpe.h + - -rwxr-xr-x 0 0 0 466 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/pyframe.h + - -rwxr-xr-x 0 0 0 4263 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/pyhash.h + - -rwxr-xr-x 0 0 0 2136 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/pylifecycle.h + - -rwxr-xr-x 0 0 0 2989 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/pymacconfig.h + - -rwxr-xr-x 0 0 0 4920 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/pymacro.h + - -rwxr-xr-x 0 0 0 8580 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/pymath.h + - -rwxr-xr-x 0 0 0 4406 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/pymem.h + - -rwxr-xr-x 0 0 0 31273 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/pyport.h + - -rwxr-xr-x 0 0 0 5250 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/pystate.h + - -rwxr-xr-x 0 0 0 436 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/pystrcmp.h + - -rwxr-xr-x 0 0 0 849 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/pystrhex.h + - -rwxr-xr-x 0 0 0 1483 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/pystrtod.h + - -rwxr-xr-x 0 0 0 7673 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/pythonrun.h + - -rwxr-xr-x 0 0 0 5938 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/pythread.h + - -rwxr-xr-x 0 0 0 8928 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/pytime.h + - -rwxr-xr-x 0 0 0 628 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/rangeobject.h + - -rwxr-xr-x 0 0 0 3324 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/setobject.h + - -rwxr-xr-x 0 0 0 2516 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/sliceobject.h + - -rwxr-xr-x 0 0 0 2030 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/structmember.h + - -rwxr-xr-x 0 0 0 1390 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/structseq.h + - -rwxr-xr-x 0 0 0 5307 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/symtable.h + - -rwxr-xr-x 0 0 0 1242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/sysmodule.h + - -rwxr-xr-x 0 0 0 2642 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/token.h + - -rwxr-xr-x 0 0 0 584 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/traceback.h + - -rwxr-xr-x 0 0 0 1114 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/tracemalloc.h + - -rwxr-xr-x 0 0 0 1614 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/tupleobject.h + - -rwxr-xr-x 0 0 0 2350 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/typeslots.h + - -rwxr-xr-x 0 0 0 1056 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/ucnhash.h + - -rwxr-xr-x 0 0 0 35426 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/unicodeobject.h + - -rwxr-xr-x 0 0 0 1776 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/warnings.h + - -rwxr-xr-x 0 0 0 2863 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/include/python3.9/weakrefobject.h + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/ + - -rwxr-xr-x 0 0 0 13870 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Balloon.tcl + - -rwxr-xr-x 0 0 0 2791 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/BtnBox.tcl + - -rwxr-xr-x 0 0 0 8098 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/CObjView.tcl + - -rwxr-xr-x 0 0 0 5326 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/ChkList.tcl + - -rwxr-xr-x 0 0 0 37829 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/ComboBox.tcl + - -rwxr-xr-x 0 0 0 903 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Compat.tcl + - -rwxr-xr-x 0 0 0 15923 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Console.tcl + - -rwxr-xr-x 0 0 0 12884 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Control.tcl + - -rwxr-xr-x 0 0 0 3116 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/DefSchm.tcl + - -rwxr-xr-x 0 0 0 4471 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/DialogS.tcl + - -rwxr-xr-x 0 0 0 5632 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/DirBox.tcl + - -rwxr-xr-x 0 0 0 2301 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/DirDlg.tcl + - -rwxr-xr-x 0 0 0 7336 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/DirList.tcl + - -rwxr-xr-x 0 0 0 9322 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/DirTree.tcl + - -rwxr-xr-x 0 0 0 4191 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/DragDrop.tcl + - -rwxr-xr-x 0 0 0 1051 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/DtlList.tcl + - -rwxr-xr-x 0 0 0 11826 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/EFileBox.tcl + - -rwxr-xr-x 0 0 0 1783 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/EFileDlg.tcl + - -rwxr-xr-x 0 0 0 5448 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Event.tcl + - -rwxr-xr-x 0 0 0 14904 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/FileBox.tcl + - -rwxr-xr-x 0 0 0 2591 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/FileCbx.tcl + - -rwxr-xr-x 0 0 0 2260 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/FileDlg.tcl + - -rwxr-xr-x 0 0 0 7589 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/FileEnt.tcl + - -rwxr-xr-x 0 0 0 3308 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/FloatEnt.tcl + - -rwxr-xr-x 0 0 0 22787 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Grid.tcl + - -rwxr-xr-x 0 0 0 19065 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/HList.tcl + - -rwxr-xr-x 0 0 0 4704 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/HListDD.tcl + - -rwxr-xr-x 0 0 0 6382 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/IconView.tcl + - -rwxr-xr-x 0 0 0 6431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Init.tcl + - -rwxr-xr-x 0 0 0 2229 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/LabEntry.tcl + - -rwxr-xr-x 0 0 0 1230 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/LabFrame.tcl + - -rwxr-xr-x 0 0 0 4108 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/LabWidg.tcl + - -rwxr-xr-x 0 0 0 3734 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/ListNBk.tcl + - -rwxr-xr-x 0 0 0 3251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Meter.tcl + - -rwxr-xr-x 0 0 0 3861 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/MultView.tcl + - -rwxr-xr-x 0 0 0 6407 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/NoteBook.tcl + - -rwxr-xr-x 0 0 0 3164 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/OldUtil.tcl + - -rwxr-xr-x 0 0 0 9786 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/OptMenu.tcl + - -rwxr-xr-x 0 0 0 29562 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/PanedWin.tcl + - -rwxr-xr-x 0 0 0 5739 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/PopMenu.tcl + - -rwxr-xr-x 0 0 0 10955 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Primitiv.tcl + - -rwxr-xr-x 0 0 0 1013 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/README.txt + - -rwxr-xr-x 0 0 0 13752 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/ResizeH.tcl + - -rwxr-xr-x 0 0 0 6178 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/SGrid.tcl + - -rwxr-xr-x 0 0 0 3933 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/SHList.tcl + - -rwxr-xr-x 0 0 0 7433 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/SListBox.tcl + - -rwxr-xr-x 0 0 0 2521 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/STList.tcl + - -rwxr-xr-x 0 0 0 3297 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/SText.tcl + - -rwxr-xr-x 0 0 0 10213 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/SWidget.tcl + - -rwxr-xr-x 0 0 0 7182 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/SWindow.tcl + - -rwxr-xr-x 0 0 0 7504 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Select.tcl + - -rwxr-xr-x 0 0 0 1129 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Shell.tcl + - -rwxr-xr-x 0 0 0 1204 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/SimpDlg.tcl + - -rwxr-xr-x 0 0 0 2076 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/StackWin.tcl + - -rwxr-xr-x 0 0 0 1395 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/StatBar.tcl + - -rwxr-xr-x 0 0 0 1727 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/StdBBox.tcl + - -rwxr-xr-x 0 0 0 1222 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/StdShell.tcl + - -rwxr-xr-x 0 0 0 18962 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/TList.tcl + - -rwxr-xr-x 0 0 0 10135 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Tix.tcl + - -rwxr-xr-x 0 0 0 4890 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Tree.tcl + - -rwxr-xr-x 0 0 0 11230 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Utils.tcl + - -rwxr-xr-x 0 0 0 5280 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/VResize.tcl + - -rwxr-xr-x 0 0 0 10081 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/VStack.tcl + - -rwxr-xr-x 0 0 0 4605 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/VTree.tcl + - -rwxr-xr-x 0 0 0 2664 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/Variable.tcl + - -rwxr-xr-x 0 0 0 1005 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/WInfo.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/ + - -rwxr-xr-x 0 0 0 90 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/act_fold.gif + - -rwxr-xr-x 0 0 0 221 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/act_fold.xbm + - -rwxr-xr-x 0 0 0 436 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/act_fold.xpm + - -rwxr-xr-x 0 0 0 123 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/balarrow.xbm + - -rwxr-xr-x 0 0 0 263 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/cbxarrow.xbm + - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/ck_def.xbm + - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/ck_off.xbm + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/ck_on.xbm + - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/cross.xbm + - -rwxr-xr-x 0 0 0 99 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/decr.xbm + - -rwxr-xr-x 0 0 0 326 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/drop.xbm + - -rwxr-xr-x 0 0 0 76 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/file.gif + - -rwxr-xr-x 0 0 0 233 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/file.xbm + - -rwxr-xr-x 0 0 0 298 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/file.xpm + - -rwxr-xr-x 0 0 0 79 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/folder.gif + - -rwxr-xr-x 0 0 0 215 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/folder.xbm + - -rwxr-xr-x 0 0 0 418 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/folder.xpm + - -rwxr-xr-x 0 0 0 896 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/harddisk.xbm + - -rwxr-xr-x 0 0 0 969 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/hourglas.mask + - -rwxr-xr-x 0 0 0 940 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/hourglas.xbm + - -rwxr-xr-x 0 0 0 99 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/incr.xbm + - -rwxr-xr-x 0 0 0 159 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/info.gif + - -rwxr-xr-x 0 0 0 1258 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/info.xpm + - -rwxr-xr-x 0 0 0 284 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/maximize.xbm + - -rwxr-xr-x 0 0 0 284 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minimize.xbm + - -rwxr-xr-x 0 0 0 57 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minus.gif + - -rwxr-xr-x 0 0 0 198 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minus.xbm + - -rwxr-xr-x 0 0 0 201 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minus.xpm + - -rwxr-xr-x 0 0 0 59 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minusarm.gif + - -rwxr-xr-x 0 0 0 207 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minusarm.xbm + - -rwxr-xr-x 0 0 0 220 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minusarm.xpm + - -rwxr-xr-x 0 0 0 263 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/mktransgif.tcl + - -rwxr-xr-x 0 0 0 893 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/network.xbm + - -rwxr-xr-x 0 0 0 176 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/no_entry.gif + - -rwxr-xr-x 0 0 0 1274 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/no_entry.xpm + - -rwxr-xr-x 0 0 0 221 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/openfile.xbm + - -rwxr-xr-x 0 0 0 84 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/openfold.gif + - -rwxr-xr-x 0 0 0 221 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/openfold.xbm + - -rwxr-xr-x 0 0 0 418 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/openfold.xpm + - -rwxr-xr-x 0 0 0 58 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plus.gif + - -rwxr-xr-x 0 0 0 195 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plus.xbm + - -rwxr-xr-x 0 0 0 200 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plus.xpm + - -rwxr-xr-x 0 0 0 60 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plusarm.gif + - -rwxr-xr-x 0 0 0 204 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plusarm.xbm + - -rwxr-xr-x 0 0 0 212 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plusarm.xpm + - -rwxr-xr-x 0 0 0 305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/resize1.xbm + - -rwxr-xr-x 0 0 0 305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/resize2.xbm + - -rwxr-xr-x 0 0 0 281 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/restore.xbm + - -rwxr-xr-x 0 0 0 79 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/srcfile.gif + - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/srcfile.xbm + - -rwxr-xr-x 0 0 0 294 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/srcfile.xpm + - -rwxr-xr-x 0 0 0 278 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/system.xbm + - -rwxr-xr-x 0 0 0 79 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/textfile.gif + - -rwxr-xr-x 0 0 0 245 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/textfile.xbm + - -rwxr-xr-x 0 0 0 302 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/textfile.xpm + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/tick.xbm + - -rwxr-xr-x 0 0 0 180 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/warning.gif + - -rwxr-xr-x 0 0 0 1262 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/warning.xpm + - -rwxr-xr-x 0 0 0 4165 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/fs.tcl + - -rwxr-xr-x 0 0 0 2828 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/license.terms + - -rwxr-xr-x 0 0 0 126 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pkgIndex.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/ + - -rwxr-xr-x 0 0 0 641 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/10Point.fs + - -rwxr-xr-x 0 0 0 2046 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/10Point.fsc + - -rwxr-xr-x 0 0 0 640 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/12Point.fs + - -rwxr-xr-x 0 0 0 2045 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/12Point.fsc + - -rwxr-xr-x 0 0 0 639 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/14Point.fs + - -rwxr-xr-x 0 0 0 2105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/14Point.fsc + - -rwxr-xr-x 0 0 0 1028 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/Bisque.cs + - -rwxr-xr-x 0 0 0 22539 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/Bisque.csc + - -rwxr-xr-x 0 0 0 1045 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/Blue.cs + - -rwxr-xr-x 0 0 0 22552 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/Blue.csc + - -rwxr-xr-x 0 0 0 1045 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/Gray.cs + - -rwxr-xr-x 0 0 0 22552 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/Gray.csc + - -rwxr-xr-x 0 0 0 541 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/Old12Pt.fs + - -rwxr-xr-x 0 0 0 499 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/Old14Pt.fs + - -rwxr-xr-x 0 0 0 1026 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/SGIGray.cs + - -rwxr-xr-x 0 0 0 22537 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/SGIGray.csc + - -rwxr-xr-x 0 0 0 1024 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/TK.cs + - -rwxr-xr-x 0 0 0 2023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/TK.csc + - -rwxr-xr-x 0 0 0 506 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/TK.fs + - -rwxr-xr-x 0 0 0 569 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/TK.fsc + - -rwxr-xr-x 0 0 0 1026 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/TixGray.cs + - -rwxr-xr-x 0 0 0 22539 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/TixGray.csc + - -rwxr-xr-x 0 0 0 2246 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/TkWin.cs + - -rwxr-xr-x 0 0 0 22302 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/TkWin.csc + - -rwxr-xr-x 0 0 0 390 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/TkWin.fs + - -rwxr-xr-x 0 0 0 1674 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/TkWin.fsc + - -rwxr-xr-x 0 0 0 1452 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.cs + - -rwxr-xr-x 0 0 0 14566 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.csc + - -rwxr-xr-x 0 0 0 755 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.fs + - -rwxr-xr-x 0 0 0 2184 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.fsc + - -rwxr-xr-x 0 0 0 3597 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.py + - -rwxr-xr-x 0 0 0 34898 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.tcl + - -rwxr-xr-x 0 0 0 4466 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.txt + - -rwxr-xr-x 0 0 0 271 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/Tix8.4.3/pref/pkgIndex.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/itcl4.2.2/ + - -rwxr-xr-x 0 0 0 5153 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/itcl4.2.2/itcl.tcl + - -rwxr-xr-x 0 0 0 2932 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/itcl4.2.2/itclConfig.sh + - -rwxr-xr-x 0 0 0 21056 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/itcl4.2.2/itclHullCmds.tcl + - -rwxr-xr-x 0 0 0 12651 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/itcl4.2.2/itclWidget.tcl + - -rwxr-xr-x 0 0 0 40536144 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/libpython3.9.so.1.0 + - -rwxr-xr-x 0 0 0 66328 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/libpython3.so + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/pkgconfig/ + - -rwxr-xr-x 0 0 0 313 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/pkgconfig/python-3.9-embed.pc + - -rwxr-xr-x 0 0 0 287 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/pkgconfig/python-3.9.pc + - -rwxr-xr-x 0 0 0 313 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/pkgconfig/python3-embed.pc + - -rwxr-xr-x 0 0 0 287 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/pkgconfig/python3.pc + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ + - -rwxr-xr-x 0 0 0 13937 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/LICENSE.txt + - -rwxr-xr-x 0 0 0 5147 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/__future__.py + - -rwxr-xr-x 0 0 0 64 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/__phello__.foo.py + - -rwxr-xr-x 0 0 0 3389 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/_aix_support.py + - -rwxr-xr-x 0 0 0 1801 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/_bootlocale.py + - -rwxr-xr-x 0 0 0 2675 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/_bootsubprocess.py + - -rwxr-xr-x 0 0 0 29374 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/_collections_abc.py + - -rwxr-xr-x 0 0 0 8749 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/_compat_pickle.py + - -rwxr-xr-x 0 0 0 5340 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/_compression.py + - -rwxr-xr-x 0 0 0 14623 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/_markupbase.py + - -rwxr-xr-x 0 0 0 21773 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/_osx_support.py + - -rwxr-xr-x 0 0 0 6189 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/_py_abc.py + - -rwxr-xr-x 0 0 0 228666 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/_pydecimal.py + - -rwxr-xr-x 0 0 0 93316 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/_pyio.py + - -rwxr-xr-x 0 0 0 3115 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/_sitebuiltins.py + - -rwxr-xr-x 0 0 0 25277 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/_strptime.py + - -rwxr-xr-x 0 0 0 28617 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/_sysconfigdata__linux_aarch64-linux-gnu.py + - -rwxr-xr-x 0 0 0 7220 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/_threading_local.py + - -rwxr-xr-x 0 0 0 5923 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/_weakrefset.py + - -rwxr-xr-x 0 0 0 4920 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/abc.py + - -rwxr-xr-x 0 0 0 32605 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/aifc.py + - -rwxr-xr-x 0 0 0 500 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/antigravity.py + - -rwxr-xr-x 0 0 0 98119 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/argparse.py + - -rwxr-xr-x 0 0 0 56179 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ast.py + - -rwxr-xr-x 0 0 0 11321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asynchat.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/ + - -rwxr-xr-x 0 0 0 1279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/__init__.py + - -rwxr-xr-x 0 0 0 3379 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/__main__.py + - -rwxr-xr-x 0 0 0 74192 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/base_events.py + - -rwxr-xr-x 0 0 0 2574 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/base_futures.py + - -rwxr-xr-x 0 0 0 8843 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/base_subprocess.py + - -rwxr-xr-x 0 0 0 2467 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/base_tasks.py + - -rwxr-xr-x 0 0 0 888 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/constants.py + - -rwxr-xr-x 0 0 0 8797 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/coroutines.py + - -rwxr-xr-x 0 0 0 26451 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/events.py + - -rwxr-xr-x 0 0 0 1633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/exceptions.py + - -rwxr-xr-x 0 0 0 2404 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/format_helpers.py + - -rwxr-xr-x 0 0 0 14042 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/futures.py + - -rwxr-xr-x 0 0 0 15181 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/locks.py + - -rwxr-xr-x 0 0 0 124 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/log.py + - -rwxr-xr-x 0 0 0 32146 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/proactor_events.py + - -rwxr-xr-x 0 0 0 6957 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/protocols.py + - -rwxr-xr-x 0 0 0 8305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/queues.py + - -rwxr-xr-x 0 0 0 2125 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/runners.py + - -rwxr-xr-x 0 0 0 39500 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/selector_events.py + - -rwxr-xr-x 0 0 0 27459 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/sslproto.py + - -rwxr-xr-x 0 0 0 5992 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/staggered.py + - -rwxr-xr-x 0 0 0 26656 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/streams.py + - -rwxr-xr-x 0 0 0 8070 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/subprocess.py + - -rwxr-xr-x 0 0 0 34419 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/tasks.py + - -rwxr-xr-x 0 0 0 790 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/threads.py + - -rwxr-xr-x 0 0 0 10724 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/transports.py + - -rwxr-xr-x 0 0 0 5876 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/trsock.py + - -rwxr-xr-x 0 0 0 51754 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/unix_events.py + - -rwxr-xr-x 0 0 0 33054 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/windows_events.py + - -rwxr-xr-x 0 0 0 5060 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncio/windows_utils.py + - -rwxr-xr-x 0 0 0 20102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/asyncore.py + - -rwxr-xr-x 0 0 0 19861 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/base64.py + - -rwxr-xr-x 0 0 0 31389 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/bdb.py + - -rwxr-xr-x 0 0 0 14784 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/binhex.py + - -rwxr-xr-x 0 0 0 2350 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/bisect.py + - -rwxr-xr-x 0 0 0 12447 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/bz2.py + - -rwxr-xr-x 0 0 0 6347 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/cProfile.py + - -rwxr-xr-x 0 0 0 24832 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/calendar.py + - -rwxr-xr-x 0 0 0 33963 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/cgi.py + - -rwxr-xr-x 0 0 0 12096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/cgitb.py + - -rwxr-xr-x 0 0 0 5435 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/chunk.py + - -rwxr-xr-x 0 0 0 14860 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/cmd.py + - -rwxr-xr-x 0 0 0 10622 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/code.py + - -rwxr-xr-x 0 0 0 36673 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/codecs.py + - -rwxr-xr-x 0 0 0 6326 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/codeop.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/collections/ + - -rwxr-xr-x 0 0 0 49819 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/collections/__init__.py + - -rwxr-xr-x 0 0 0 119 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/collections/abc.py + - -rwxr-xr-x 0 0 0 4064 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/colorsys.py + - -rwxr-xr-x 0 0 0 20105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/compileall.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/concurrent/ + - -rwxr-xr-x 0 0 0 38 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/concurrent/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/concurrent/futures/ + - -rwxr-xr-x 0 0 0 1554 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/concurrent/futures/__init__.py + - -rwxr-xr-x 0 0 0 22577 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/concurrent/futures/_base.py + - -rwxr-xr-x 0 0 0 31395 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/concurrent/futures/process.py + - -rwxr-xr-x 0 0 0 8771 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/concurrent/futures/thread.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/config-3.9-aarch64-linux-gnu/ + - -rwxr-xr-x 0 0 0 112882 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/config-3.9-aarch64-linux-gnu/Makefile + - -rwxr-xr-x 0 0 0 15019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/config-3.9-aarch64-linux-gnu/Setup + - -rwxr-xr-x 0 0 0 3093 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/config-3.9-aarch64-linux-gnu/Setup.local + - -rwxr-xr-x 0 0 0 8848 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/config-3.9-aarch64-linux-gnu/config.c + - -rwxr-xr-x 0 0 0 1623 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/config-3.9-aarch64-linux-gnu/config.c.in + - -rwxr-xr-x 0 0 0 15368 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/config-3.9-aarch64-linux-gnu/install-sh + - -rwxr-xr-x 0 0 0 7929 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/config-3.9-aarch64-linux-gnu/makesetup + - -rwxr-xr-x 0 0 0 2069 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/config-3.9-aarch64-linux-gnu/python-config.py + - -rwxr-xr-x 0 0 0 36144 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/config-3.9-aarch64-linux-gnu/python.o + - -rwxr-xr-x 0 0 0 54584 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/configparser.py + - -rwxr-xr-x 0 0 0 24624 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/contextlib.py + - -rwxr-xr-x 0 0 0 129 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/contextvars.py + - -rwxr-xr-x 0 0 0 8650 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/copy.py + - -rwxr-xr-x 0 0 0 7274 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/copyreg.py + - -rwxr-xr-x 0 0 0 3819 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/crypt.py + - -rwxr-xr-x 0 0 0 16144 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/csv.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/ + - -rwxr-xr-x 0 0 0 18046 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/__init__.py + - -rwxr-xr-x 0 0 0 12575 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/_aix.py + - -rwxr-xr-x 0 0 0 2000 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/_endian.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/ + - -rwxr-xr-x 0 0 0 296 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/README.ctypes + - -rwxr-xr-x 0 0 0 154 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/__init__.py + - -rwxr-xr-x 0 0 0 5283 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/dyld.py + - -rwxr-xr-x 0 0 0 1828 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/dylib.py + - -rwxr-xr-x 0 0 0 84 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/fetch_macholib + - -rwxr-xr-x 0 0 0 75 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/fetch_macholib.bat + - -rwxr-xr-x 0 0 0 2201 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/framework.py + - -rwxr-xr-x 0 0 0 13879 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/util.py + - -rwxr-xr-x 0 0 0 5628 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ctypes/wintypes.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/curses/ + - -rwxr-xr-x 0 0 0 3369 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/curses/__init__.py + - -rwxr-xr-x 0 0 0 2547 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/curses/ascii.py + - -rwxr-xr-x 0 0 0 5634 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/curses/has_key.py + - -rwxr-xr-x 0 0 0 87 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/curses/panel.py + - -rwxr-xr-x 0 0 0 7657 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/curses/textpad.py + - -rwxr-xr-x 0 0 0 49586 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/dataclasses.py + - -rwxr-xr-x 0 0 0 89177 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/datetime.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/dbm/ + - -rwxr-xr-x 0 0 0 5839 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/dbm/__init__.py + - -rwxr-xr-x 0 0 0 11536 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/dbm/dumb.py + - -rwxr-xr-x 0 0 0 72 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/dbm/gnu.py + - -rwxr-xr-x 0 0 0 70 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/dbm/ndbm.py + - -rwxr-xr-x 0 0 0 320 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/decimal.py + - -rwxr-xr-x 0 0 0 83307 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/difflib.py + - -rwxr-xr-x 0 0 0 20570 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/dis.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/ + - -rwxr-xr-x 0 0 0 244 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/README + - -rwxr-xr-x 0 0 0 236 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/__init__.py + - -rwxr-xr-x 0 0 0 20007 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/_msvccompiler.py + - -rwxr-xr-x 0 0 0 8572 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/archive_util.py + - -rwxr-xr-x 0 0 0 14894 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/bcppcompiler.py + - -rwxr-xr-x 0 0 0 47418 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/ccompiler.py + - -rwxr-xr-x 0 0 0 18079 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/cmd.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/ + - -rwxr-xr-x 0 0 0 799 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/__init__.py + - -rwxr-xr-x 0 0 0 5562 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist.py + - -rwxr-xr-x 0 0 0 4913 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist_dumb.py + - -rwxr-xr-x 0 0 0 35579 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist_msi.py + - -rwxr-xr-x 0 0 0 21537 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist_rpm.py + - -rwxr-xr-x 0 0 0 16030 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist_wininst.py + - -rwxr-xr-x 0 0 0 5767 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/build.py + - -rwxr-xr-x 0 0 0 8022 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/build_clib.py + - -rwxr-xr-x 0 0 0 31635 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/build_ext.py + - -rwxr-xr-x 0 0 0 17190 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/build_py.py + - -rwxr-xr-x 0 0 0 6232 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/build_scripts.py + - -rwxr-xr-x 0 0 0 5636 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/check.py + - -rwxr-xr-x 0 0 0 2776 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/clean.py + - -rwxr-xr-x 0 0 0 633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/command_template + - -rwxr-xr-x 0 0 0 13117 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/config.py + - -rwxr-xr-x 0 0 0 26805 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/install.py + - -rwxr-xr-x 0 0 0 2822 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/install_data.py + - -rwxr-xr-x 0 0 0 2603 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/install_egg_info.py + - -rwxr-xr-x 0 0 0 1298 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/install_headers.py + - -rwxr-xr-x 0 0 0 8397 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/install_lib.py + - -rwxr-xr-x 0 0 0 2017 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/install_scripts.py + - -rwxr-xr-x 0 0 0 11712 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/register.py + - -rwxr-xr-x 0 0 0 19005 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/sdist.py + - -rwxr-xr-x 0 0 0 7621 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/command/upload.py + - -rwxr-xr-x 0 0 0 4827 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/config.py + - -rwxr-xr-x 0 0 0 8876 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/core.py + - -rwxr-xr-x 0 0 0 16380 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/cygwinccompiler.py + - -rwxr-xr-x 0 0 0 139 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/debug.py + - -rwxr-xr-x 0 0 0 3491 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/dep_util.py + - -rwxr-xr-x 0 0 0 7778 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/dir_util.py + - -rwxr-xr-x 0 0 0 50385 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/dist.py + - -rwxr-xr-x 0 0 0 3577 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/errors.py + - -rwxr-xr-x 0 0 0 10515 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/extension.py + - -rwxr-xr-x 0 0 0 17784 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/fancy_getopt.py + - -rwxr-xr-x 0 0 0 8148 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/file_util.py + - -rwxr-xr-x 0 0 0 12832 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/filelist.py + - -rwxr-xr-x 0 0 0 1969 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/log.py + - -rwxr-xr-x 0 0 0 30453 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/msvc9compiler.py + - -rwxr-xr-x 0 0 0 23540 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/msvccompiler.py + - -rwxr-xr-x 0 0 0 4660 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/spawn.py + - -rwxr-xr-x 0 0 0 20632 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/sysconfig.py + - -rwxr-xr-x 0 0 0 12483 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/text_file.py + - -rwxr-xr-x 0 0 0 14818 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/unixccompiler.py + - -rwxr-xr-x 0 0 0 20913 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/util.py + - -rwxr-xr-x 0 0 0 12514 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/version.py + - -rwxr-xr-x 0 0 0 5133 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/distutils/versionpredicate.py + - -rwxr-xr-x 0 0 0 104568 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/doctest.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/ + - -rwxr-xr-x 0 0 0 1766 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/__init__.py + - -rwxr-xr-x 0 0 0 8541 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/_encoded_words.py + - -rwxr-xr-x 0 0 0 107205 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/_header_value_parser.py + - -rwxr-xr-x 0 0 0 17722 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/_parseaddr.py + - -rwxr-xr-x 0 0 0 15534 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/_policybase.py + - -rwxr-xr-x 0 0 0 9561 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/architecture.rst + - -rwxr-xr-x 0 0 0 3558 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/base64mime.py + - -rwxr-xr-x 0 0 0 17128 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/charset.py + - -rwxr-xr-x 0 0 0 10555 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/contentmanager.py + - -rwxr-xr-x 0 0 0 1786 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/encoders.py + - -rwxr-xr-x 0 0 0 3726 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/errors.py + - -rwxr-xr-x 0 0 0 22780 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/feedparser.py + - -rwxr-xr-x 0 0 0 20816 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/generator.py + - -rwxr-xr-x 0 0 0 24102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/header.py + - -rwxr-xr-x 0 0 0 20628 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/headerregistry.py + - -rwxr-xr-x 0 0 0 2135 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/iterators.py + - -rwxr-xr-x 0 0 0 47060 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/message.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/mime/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/mime/__init__.py + - -rwxr-xr-x 0 0 0 1321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/mime/application.py + - -rwxr-xr-x 0 0 0 2739 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/mime/audio.py + - -rwxr-xr-x 0 0 0 916 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/mime/base.py + - -rwxr-xr-x 0 0 0 1829 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/mime/image.py + - -rwxr-xr-x 0 0 0 1317 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/mime/message.py + - -rwxr-xr-x 0 0 0 1621 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/mime/multipart.py + - -rwxr-xr-x 0 0 0 691 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/mime/nonmultipart.py + - -rwxr-xr-x 0 0 0 1437 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/mime/text.py + - -rwxr-xr-x 0 0 0 5041 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/parser.py + - -rwxr-xr-x 0 0 0 10383 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/policy.py + - -rwxr-xr-x 0 0 0 9858 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/quoprimime.py + - -rwxr-xr-x 0 0 0 17060 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/email/utils.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/ + - -rwxr-xr-x 0 0 0 5588 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/__init__.py + - -rwxr-xr-x 0 0 0 15677 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/aliases.py + - -rwxr-xr-x 0 0 0 1248 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/ascii.py + - -rwxr-xr-x 0 0 0 1533 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/base64_codec.py + - -rwxr-xr-x 0 0 0 1019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/big5.py + - -rwxr-xr-x 0 0 0 1039 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/big5hkscs.py + - -rwxr-xr-x 0 0 0 2249 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/bz2_codec.py + - -rwxr-xr-x 0 0 0 2084 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/charmap.py + - -rwxr-xr-x 0 0 0 13121 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp037.py + - -rwxr-xr-x 0 0 0 13568 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1006.py + - -rwxr-xr-x 0 0 0 13113 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1026.py + - -rwxr-xr-x 0 0 0 34597 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1125.py + - -rwxr-xr-x 0 0 0 13105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1140.py + - -rwxr-xr-x 0 0 0 13686 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1250.py + - -rwxr-xr-x 0 0 0 13361 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1251.py + - -rwxr-xr-x 0 0 0 13511 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1252.py + - -rwxr-xr-x 0 0 0 13094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1253.py + - -rwxr-xr-x 0 0 0 13502 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1254.py + - -rwxr-xr-x 0 0 0 12466 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1255.py + - -rwxr-xr-x 0 0 0 12814 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1256.py + - -rwxr-xr-x 0 0 0 13374 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1257.py + - -rwxr-xr-x 0 0 0 13364 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp1258.py + - -rwxr-xr-x 0 0 0 14132 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp273.py + - -rwxr-xr-x 0 0 0 12055 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp424.py + - -rwxr-xr-x 0 0 0 34564 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp437.py + - -rwxr-xr-x 0 0 0 13121 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp500.py + - -rwxr-xr-x 0 0 0 13686 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp720.py + - -rwxr-xr-x 0 0 0 34681 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp737.py + - -rwxr-xr-x 0 0 0 34476 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp775.py + - -rwxr-xr-x 0 0 0 34105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp850.py + - -rwxr-xr-x 0 0 0 35002 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp852.py + - -rwxr-xr-x 0 0 0 33850 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp855.py + - -rwxr-xr-x 0 0 0 12423 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp856.py + - -rwxr-xr-x 0 0 0 33908 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp857.py + - -rwxr-xr-x 0 0 0 34015 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp858.py + - -rwxr-xr-x 0 0 0 34681 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp860.py + - -rwxr-xr-x 0 0 0 34633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp861.py + - -rwxr-xr-x 0 0 0 33370 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp862.py + - -rwxr-xr-x 0 0 0 34252 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp863.py + - -rwxr-xr-x 0 0 0 33663 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp864.py + - -rwxr-xr-x 0 0 0 34618 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp865.py + - -rwxr-xr-x 0 0 0 34396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp866.py + - -rwxr-xr-x 0 0 0 32965 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp869.py + - -rwxr-xr-x 0 0 0 12595 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp874.py + - -rwxr-xr-x 0 0 0 12854 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp875.py + - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp932.py + - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp949.py + - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/cp950.py + - -rwxr-xr-x 0 0 0 1051 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/euc_jis_2004.py + - -rwxr-xr-x 0 0 0 1051 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/euc_jisx0213.py + - -rwxr-xr-x 0 0 0 1027 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/euc_jp.py + - -rwxr-xr-x 0 0 0 1027 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/euc_kr.py + - -rwxr-xr-x 0 0 0 1031 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/gb18030.py + - -rwxr-xr-x 0 0 0 1027 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/gb2312.py + - -rwxr-xr-x 0 0 0 1015 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/gbk.py + - -rwxr-xr-x 0 0 0 1508 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/hex_codec.py + - -rwxr-xr-x 0 0 0 13475 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/hp_roman8.py + - -rwxr-xr-x 0 0 0 1011 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/hz.py + - -rwxr-xr-x 0 0 0 9098 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/idna.py + - -rwxr-xr-x 0 0 0 1053 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp.py + - -rwxr-xr-x 0 0 0 1061 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_1.py + - -rwxr-xr-x 0 0 0 1061 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_2.py + - -rwxr-xr-x 0 0 0 1073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_2004.py + - -rwxr-xr-x 0 0 0 1061 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_3.py + - -rwxr-xr-x 0 0 0 1069 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_ext.py + - -rwxr-xr-x 0 0 0 1053 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_kr.py + - -rwxr-xr-x 0 0 0 13176 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_1.py + - -rwxr-xr-x 0 0 0 13589 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_10.py + - -rwxr-xr-x 0 0 0 12335 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_11.py + - -rwxr-xr-x 0 0 0 13271 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_13.py + - -rwxr-xr-x 0 0 0 13652 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_14.py + - -rwxr-xr-x 0 0 0 13212 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_15.py + - -rwxr-xr-x 0 0 0 13557 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_16.py + - -rwxr-xr-x 0 0 0 13404 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_2.py + - -rwxr-xr-x 0 0 0 13089 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_3.py + - -rwxr-xr-x 0 0 0 13376 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_4.py + - -rwxr-xr-x 0 0 0 13015 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_5.py + - -rwxr-xr-x 0 0 0 10833 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_6.py + - -rwxr-xr-x 0 0 0 12844 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_7.py + - -rwxr-xr-x 0 0 0 11036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_8.py + - -rwxr-xr-x 0 0 0 13156 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_9.py + - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/johab.py + - -rwxr-xr-x 0 0 0 13779 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/koi8_r.py + - -rwxr-xr-x 0 0 0 13193 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/koi8_t.py + - -rwxr-xr-x 0 0 0 13762 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/koi8_u.py + - -rwxr-xr-x 0 0 0 13723 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/kz1048.py + - -rwxr-xr-x 0 0 0 1264 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/latin_1.py + - -rwxr-xr-x 0 0 0 36467 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/mac_arabic.py + - -rwxr-xr-x 0 0 0 13633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/mac_croatian.py + - -rwxr-xr-x 0 0 0 13454 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/mac_cyrillic.py + - -rwxr-xr-x 0 0 0 15170 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/mac_farsi.py + - -rwxr-xr-x 0 0 0 13721 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/mac_greek.py + - -rwxr-xr-x 0 0 0 13498 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/mac_iceland.py + - -rwxr-xr-x 0 0 0 14118 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/mac_latin2.py + - -rwxr-xr-x 0 0 0 13480 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/mac_roman.py + - -rwxr-xr-x 0 0 0 13661 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/mac_romanian.py + - -rwxr-xr-x 0 0 0 13513 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/mac_turkish.py + - -rwxr-xr-x 0 0 0 1211 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/mbcs.py + - -rwxr-xr-x 0 0 0 1019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/oem.py + - -rwxr-xr-x 0 0 0 13519 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/palmos.py + - -rwxr-xr-x 0 0 0 14015 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/ptcp154.py + - -rwxr-xr-x 0 0 0 6883 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/punycode.py + - -rwxr-xr-x 0 0 0 1525 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/quopri_codec.py + - -rwxr-xr-x 0 0 0 1332 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/raw_unicode_escape.py + - -rwxr-xr-x 0 0 0 2448 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/rot_13.py + - -rwxr-xr-x 0 0 0 1039 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/shift_jis.py + - -rwxr-xr-x 0 0 0 1059 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/shift_jis_2004.py + - -rwxr-xr-x 0 0 0 1059 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/shift_jisx0213.py + - -rwxr-xr-x 0 0 0 12300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/tis_620.py + - -rwxr-xr-x 0 0 0 1299 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/undefined.py + - -rwxr-xr-x 0 0 0 1304 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/unicode_escape.py + - -rwxr-xr-x 0 0 0 5236 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/utf_16.py + - -rwxr-xr-x 0 0 0 1037 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/utf_16_be.py + - -rwxr-xr-x 0 0 0 1037 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/utf_16_le.py + - -rwxr-xr-x 0 0 0 5129 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/utf_32.py + - -rwxr-xr-x 0 0 0 930 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/utf_32_be.py + - -rwxr-xr-x 0 0 0 930 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/utf_32_le.py + - -rwxr-xr-x 0 0 0 946 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/utf_7.py + - -rwxr-xr-x 0 0 0 1005 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/utf_8.py + - -rwxr-xr-x 0 0 0 4133 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/utf_8_sig.py + - -rwxr-xr-x 0 0 0 2851 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/uu_codec.py + - -rwxr-xr-x 0 0 0 2204 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/encodings/zlib_codec.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ensurepip/ + - -rwxr-xr-x 0 0 0 6963 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ensurepip/__init__.py + - -rwxr-xr-x 0 0 0 88 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ensurepip/__main__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ensurepip/_bundled/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ensurepip/_bundled/__init__.py + - -rwxr-xr-x 0 0 0 808 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ensurepip/_uninstall.py + - -rwxr-xr-x 0 0 0 39440 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/enum.py + - -rwxr-xr-x 0 0 0 10024 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/filecmp.py + - -rwxr-xr-x 0 0 0 14791 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/fileinput.py + - -rwxr-xr-x 0 0 0 6004 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/fnmatch.py + - -rwxr-xr-x 0 0 0 15143 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/formatter.py + - -rwxr-xr-x 0 0 0 24323 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/fractions.py + - -rwxr-xr-x 0 0 0 35496 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ftplib.py + - -rwxr-xr-x 0 0 0 38881 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/functools.py + - -rwxr-xr-x 0 0 0 4975 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/genericpath.py + - -rwxr-xr-x 0 0 0 7489 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/getopt.py + - -rwxr-xr-x 0 0 0 5990 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/getpass.py + - -rwxr-xr-x 0 0 0 27266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/gettext.py + - -rwxr-xr-x 0 0 0 5823 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/glob.py + - -rwxr-xr-x 0 0 0 9573 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/graphlib.py + - -rwxr-xr-x 0 0 0 21772 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/gzip.py + - -rwxr-xr-x 0 0 0 10010 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/hashlib.py + - -rwxr-xr-x 0 0 0 22877 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/heapq.py + - -rwxr-xr-x 0 0 0 7003 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/hmac.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/html/ + - -rwxr-xr-x 0 0 0 4756 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/html/__init__.py + - -rwxr-xr-x 0 0 0 75383 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/html/entities.py + - -rwxr-xr-x 0 0 0 17392 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/html/parser.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/http/ + - -rwxr-xr-x 0 0 0 6732 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/http/__init__.py + - -rwxr-xr-x 0 0 0 56549 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/http/client.py + - -rwxr-xr-x 0 0 0 76835 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/http/cookiejar.py + - -rwxr-xr-x 0 0 0 19840 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/http/cookies.py + - -rwxr-xr-x 0 0 0 48231 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/http/server.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/ + - -rwxr-xr-x 0 0 0 1866 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/CREDITS.txt + - -rwxr-xr-x 0 0 0 56360 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/ChangeLog + - -rwxr-xr-x 0 0 0 10312 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/HISTORY.txt + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/ + - -rwxr-xr-x 0 0 0 443 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/README.txt + - -rwxr-xr-x 0 0 0 120 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/folder.gif + - -rwxr-xr-x 0 0 0 57746 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle.ico + - -rwxr-xr-x 0 0 0 634 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_16.gif + - -rwxr-xr-x 0 0 0 1031 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_16.png + - -rwxr-xr-x 0 0 0 39205 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_256.png + - -rwxr-xr-x 0 0 0 1019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_32.gif + - -rwxr-xr-x 0 0 0 2036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_32.png + - -rwxr-xr-x 0 0 0 1388 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_48.gif + - -rwxr-xr-x 0 0 0 3977 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_48.png + - -rwxr-xr-x 0 0 0 75 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/minusnode.gif + - -rwxr-xr-x 0 0 0 125 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/openfolder.gif + - -rwxr-xr-x 0 0 0 78 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/plusnode.gif + - -rwxr-xr-x 0 0 0 380 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/python.gif + - -rwxr-xr-x 0 0 0 72 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/tk.gif + - -rwxr-xr-x 0 0 0 51948 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/NEWS.txt + - -rwxr-xr-x 0 0 0 27172 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/NEWS2x.txt + - -rwxr-xr-x 0 0 0 9680 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/README.txt + - -rwxr-xr-x 0 0 0 8478 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/TODO.txt + - -rwxr-xr-x 0 0 0 396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/__init__.py + - -rwxr-xr-x 0 0 0 159 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/__main__.py + - -rwxr-xr-x 0 0 0 9150 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/autocomplete.py + - -rwxr-xr-x 0 0 0 20981 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/autocomplete_w.py + - -rwxr-xr-x 0 0 0 3216 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/autoexpand.py + - -rwxr-xr-x 0 0 0 8314 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/browser.py + - -rwxr-xr-x 0 0 0 7267 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/calltip.py + - -rwxr-xr-x 0 0 0 7158 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/calltip_w.py + - -rwxr-xr-x 0 0 0 11420 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/codecontext.py + - -rwxr-xr-x 0 0 0 13201 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/colorizer.py + - -rwxr-xr-x 0 0 0 2266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/config-extensions.def + - -rwxr-xr-x 0 0 0 2864 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/config-highlight.def + - -rwxr-xr-x 0 0 0 10910 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/config-keys.def + - -rwxr-xr-x 0 0 0 3168 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/config-main.def + - -rwxr-xr-x 0 0 0 38173 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/config.py + - -rwxr-xr-x 0 0 0 14540 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/config_key.py + - -rwxr-xr-x 0 0 0 105738 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/configdialog.py + - -rwxr-xr-x 0 0 0 19104 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/debugger.py + - -rwxr-xr-x 0 0 0 12167 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/debugger_r.py + - -rwxr-xr-x 0 0 0 4055 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/debugobj.py + - -rwxr-xr-x 0 0 0 1082 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/debugobj_r.py + - -rwxr-xr-x 0 0 0 1043 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/delegator.py + - -rwxr-xr-x 0 0 0 2017 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/dynoption.py + - -rwxr-xr-x 0 0 0 65733 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/editor.py + - -rwxr-xr-x 0 0 0 3631 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/extend.txt + - -rwxr-xr-x 0 0 0 3876 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/filelist.py + - -rwxr-xr-x 0 0 0 15777 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/format.py + - -rwxr-xr-x 0 0 0 7479 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/grep.py + - -rwxr-xr-x 0 0 0 68554 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/help.html + - -rwxr-xr-x 0 0 0 11851 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/help.py + - -rwxr-xr-x 0 0 0 9084 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/help_about.py + - -rwxr-xr-x 0 0 0 4043 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/history.py + - -rwxr-xr-x 0 0 0 12883 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/hyperparser.py + - -rwxr-xr-x 0 0 0 177 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/idle.bat + - -rwxr-xr-x 0 0 0 454 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/idle.py + - -rwxr-xr-x 0 0 0 570 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/idle.pyw + - -rwxr-xr-x 0 0 0 15832 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/iomenu.py + - -rwxr-xr-x 0 0 0 9663 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/macosx.py + - -rwxr-xr-x 0 0 0 3930 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/mainmenu.py + - -rwxr-xr-x 0 0 0 18648 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/multicall.py + - -rwxr-xr-x 0 0 0 5709 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/outwin.py + - -rwxr-xr-x 0 0 0 7204 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/parenmatch.py + - -rwxr-xr-x 0 0 0 3193 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/pathbrowser.py + - -rwxr-xr-x 0 0 0 3130 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/percolator.py + - -rwxr-xr-x 0 0 0 19864 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/pyparse.py + - -rwxr-xr-x 0 0 0 57605 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/pyshell.py + - -rwxr-xr-x 0 0 0 15075 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/query.py + - -rwxr-xr-x 0 0 0 6875 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/redirector.py + - -rwxr-xr-x 0 0 0 9799 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/replace.py + - -rwxr-xr-x 0 0 0 21076 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/rpc.py + - -rwxr-xr-x 0 0 0 21046 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/run.py + - -rwxr-xr-x 0 0 0 8273 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/runscript.py + - -rwxr-xr-x 0 0 0 4465 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/scrolledlist.py + - -rwxr-xr-x 0 0 0 5566 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/search.py + - -rwxr-xr-x 0 0 0 7856 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/searchbase.py + - -rwxr-xr-x 0 0 0 7362 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/searchengine.py + - -rwxr-xr-x 0 0 0 13585 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/sidebar.py + - -rwxr-xr-x 0 0 0 12825 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/squeezer.py + - -rwxr-xr-x 0 0 0 4454 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/stackviewer.py + - -rwxr-xr-x 0 0 0 1472 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/statusbar.py + - -rwxr-xr-x 0 0 0 6813 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/textview.py + - -rwxr-xr-x 0 0 0 6557 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/tooltip.py + - -rwxr-xr-x 0 0 0 16370 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/tree.py + - -rwxr-xr-x 0 0 0 11046 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/undo.py + - -rwxr-xr-x 0 0 0 721 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/util.py + - -rwxr-xr-x 0 0 0 2616 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/window.py + - -rwxr-xr-x 0 0 0 4203 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/zoomheight.py + - -rwxr-xr-x 0 0 0 2005 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/idlelib/zzdummy.py + - -rwxr-xr-x 0 0 0 54904 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/imaplib.py + - -rwxr-xr-x 0 0 0 3808 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/imghdr.py + - -rwxr-xr-x 0 0 0 10536 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/imp.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/importlib/ + - -rwxr-xr-x 0 0 0 6061 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/importlib/__init__.py + - -rwxr-xr-x 0 0 0 40322 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/importlib/_bootstrap.py + - -rwxr-xr-x 0 0 0 64947 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/importlib/_bootstrap_external.py + - -rwxr-xr-x 0 0 0 1497 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/importlib/_common.py + - -rwxr-xr-x 0 0 0 14924 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/importlib/abc.py + - -rwxr-xr-x 0 0 0 844 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/importlib/machinery.py + - -rwxr-xr-x 0 0 0 18750 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/importlib/metadata.py + - -rwxr-xr-x 0 0 0 7209 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/importlib/resources.py + - -rwxr-xr-x 0 0 0 11321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/importlib/util.py + - -rwxr-xr-x 0 0 0 118235 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/inspect.py + - -rwxr-xr-x 0 0 0 3541 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/io.py + - -rwxr-xr-x 0 0 0 77867 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ipaddress.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/json/ + - -rwxr-xr-x 0 0 0 14019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/json/__init__.py + - -rwxr-xr-x 0 0 0 12472 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/json/decoder.py + - -rwxr-xr-x 0 0 0 16073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/json/encoder.py + - -rwxr-xr-x 0 0 0 2425 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/json/scanner.py + - -rwxr-xr-x 0 0 0 3339 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/json/tool.py + - -rwxr-xr-x 0 0 0 1047 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/keyword.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib-dynload/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib-dynload/.empty + - -rwxr-xr-x 0 0 0 22368 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib-dynload/_crypt.cpython-39-aarch64-linux-gnu.so + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/ + - -rwxr-xr-x 0 0 0 8696 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/Grammar.txt + - -rwxr-xr-x 0 0 0 15313 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/Grammar3.9.20.final.0.pickle + - -rwxr-xr-x 0 0 0 793 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/PatternGrammar.txt + - -rwxr-xr-x 0 0 0 1225 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/PatternGrammar3.9.20.final.0.pickle + - -rwxr-xr-x 0 0 0 163 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/__init__.py + - -rwxr-xr-x 0 0 0 67 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/__main__.py + - -rwxr-xr-x 0 0 0 6623 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/btm_matcher.py + - -rwxr-xr-x 0 0 0 9966 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/btm_utils.py + - -rwxr-xr-x 0 0 0 6690 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixer_base.py + - -rwxr-xr-x 0 0 0 15206 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixer_util.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/ + - -rwxr-xr-x 0 0 0 47 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/__init__.py + - -rwxr-xr-x 0 0 0 2346 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_apply.py + - -rwxr-xr-x 0 0 0 984 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_asserts.py + - -rwxr-xr-x 0 0 0 320 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_basestring.py + - -rwxr-xr-x 0 0 0 590 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_buffer.py + - -rwxr-xr-x 0 0 0 3760 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_dict.py + - -rwxr-xr-x 0 0 0 3344 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_except.py + - -rwxr-xr-x 0 0 0 979 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_exec.py + - -rwxr-xr-x 0 0 0 2048 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_execfile.py + - -rwxr-xr-x 0 0 0 2495 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_exitfunc.py + - -rwxr-xr-x 0 0 0 2765 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_filter.py + - -rwxr-xr-x 0 0 0 644 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_funcattrs.py + - -rwxr-xr-x 0 0 0 547 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_future.py + - -rwxr-xr-x 0 0 0 451 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_getcwdu.py + - -rwxr-xr-x 0 0 0 3196 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_has_key.py + - -rwxr-xr-x 0 0 0 4876 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_idioms.py + - -rwxr-xr-x 0 0 0 3256 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_import.py + - -rwxr-xr-x 0 0 0 5684 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_imports.py + - -rwxr-xr-x 0 0 0 289 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_imports2.py + - -rwxr-xr-x 0 0 0 708 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_input.py + - -rwxr-xr-x 0 0 0 1144 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_intern.py + - -rwxr-xr-x 0 0 0 1608 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_isinstance.py + - -rwxr-xr-x 0 0 0 1548 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_itertools.py + - -rwxr-xr-x 0 0 0 2086 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_itertools_imports.py + - -rwxr-xr-x 0 0 0 476 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_long.py + - -rwxr-xr-x 0 0 0 3640 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_map.py + - -rwxr-xr-x 0 0 0 8197 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_metaclass.py + - -rwxr-xr-x 0 0 0 606 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_methodattrs.py + - -rwxr-xr-x 0 0 0 571 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_ne.py + - -rwxr-xr-x 0 0 0 3174 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_next.py + - -rwxr-xr-x 0 0 0 591 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_nonzero.py + - -rwxr-xr-x 0 0 0 768 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_numliterals.py + - -rwxr-xr-x 0 0 0 3426 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_operator.py + - -rwxr-xr-x 0 0 0 1226 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_paren.py + - -rwxr-xr-x 0 0 0 2844 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_print.py + - -rwxr-xr-x 0 0 0 2926 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_raise.py + - -rwxr-xr-x 0 0 0 454 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_raw_input.py + - -rwxr-xr-x 0 0 0 837 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_reduce.py + - -rwxr-xr-x 0 0 0 1081 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_reload.py + - -rwxr-xr-x 0 0 0 2221 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_renames.py + - -rwxr-xr-x 0 0 0 613 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_repr.py + - -rwxr-xr-x 0 0 0 1697 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_set_literal.py + - -rwxr-xr-x 0 0 0 449 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_standarderror.py + - -rwxr-xr-x 0 0 0 1034 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_sys_exc.py + - -rwxr-xr-x 0 0 0 1582 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_throw.py + - -rwxr-xr-x 0 0 0 5565 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_tuple_params.py + - -rwxr-xr-x 0 0 0 1774 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_types.py + - -rwxr-xr-x 0 0 0 1256 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_unicode.py + - -rwxr-xr-x 0 0 0 8367 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_urllib.py + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_ws_comma.py + - -rwxr-xr-x 0 0 0 2694 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_xrange.py + - -rwxr-xr-x 0 0 0 689 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_xreadlines.py + - -rwxr-xr-x 0 0 0 1289 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_zip.py + - -rwxr-xr-x 0 0 0 11854 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/main.py + - -rwxr-xr-x 0 0 0 7054 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/patcomp.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/ + - -rwxr-xr-x 0 0 0 143 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/__init__.py + - -rwxr-xr-x 0 0 0 9642 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/conv.py + - -rwxr-xr-x 0 0 0 5969 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/driver.py + - -rwxr-xr-x 0 0 0 5533 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/grammar.py + - -rwxr-xr-x 0 0 0 1635 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/literals.py + - -rwxr-xr-x 0 0 0 8155 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/parse.py + - -rwxr-xr-x 0 0 0 13812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/pgen.py + - -rwxr-xr-x 0 0 0 1302 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/token.py + - -rwxr-xr-x 0 0 0 21119 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/tokenize.py + - -rwxr-xr-x 0 0 0 1305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/pygram.py + - -rwxr-xr-x 0 0 0 27974 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/pytree.py + - -rwxr-xr-x 0 0 0 27507 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lib2to3/refactor.py + - -rwxr-xr-x 0 0 0 5461 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/linecache.py + - -rwxr-xr-x 0 0 0 78271 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/locale.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/logging/ + - -rwxr-xr-x 0 0 0 78600 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/logging/__init__.py + - -rwxr-xr-x 0 0 0 36379 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/logging/config.py + - -rwxr-xr-x 0 0 0 60423 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/logging/handlers.py + - -rwxr-xr-x 0 0 0 13231 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/lzma.py + - -rwxr-xr-x 0 0 0 78794 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/mailbox.py + - -rwxr-xr-x 0 0 0 9116 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/mailcap.py + - -rwxr-xr-x 0 0 0 21564 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/mimetypes.py + - -rwxr-xr-x 0 0 0 24401 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/modulefinder.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/ + - -rwxr-xr-x 0 0 0 916 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/__init__.py + - -rwxr-xr-x 0 0 0 31685 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/connection.py + - -rwxr-xr-x 0 0 0 11257 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/context.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/dummy/ + - -rwxr-xr-x 0 0 0 3061 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/dummy/__init__.py + - -rwxr-xr-x 0 0 0 1598 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/dummy/connection.py + - -rwxr-xr-x 0 0 0 12142 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/forkserver.py + - -rwxr-xr-x 0 0 0 11626 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/heap.py + - -rwxr-xr-x 0 0 0 47303 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/managers.py + - -rwxr-xr-x 0 0 0 32555 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/pool.py + - -rwxr-xr-x 0 0 0 2377 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/popen_fork.py + - -rwxr-xr-x 0 0 0 2230 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/popen_forkserver.py + - -rwxr-xr-x 0 0 0 2029 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/popen_spawn_posix.py + - -rwxr-xr-x 0 0 0 4011 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/popen_spawn_win32.py + - -rwxr-xr-x 0 0 0 12000 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/process.py + - -rwxr-xr-x 0 0 0 12023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/queues.py + - -rwxr-xr-x 0 0 0 9512 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/reduction.py + - -rwxr-xr-x 0 0 0 5132 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/resource_sharer.py + - -rwxr-xr-x 0 0 0 8613 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/resource_tracker.py + - -rwxr-xr-x 0 0 0 18396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/shared_memory.py + - -rwxr-xr-x 0 0 0 6306 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/sharedctypes.py + - -rwxr-xr-x 0 0 0 9296 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/spawn.py + - -rwxr-xr-x 0 0 0 11610 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/synchronize.py + - -rwxr-xr-x 0 0 0 14006 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/multiprocessing/util.py + - -rwxr-xr-x 0 0 0 5566 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/netrc.py + - -rwxr-xr-x 0 0 0 41023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/nntplib.py + - -rwxr-xr-x 0 0 0 27734 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ntpath.py + - -rwxr-xr-x 0 0 0 2887 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/nturl2path.py + - -rwxr-xr-x 0 0 0 10338 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/numbers.py + - -rwxr-xr-x 0 0 0 5660 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/opcode.py + - -rwxr-xr-x 0 0 0 10751 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/operator.py + - -rwxr-xr-x 0 0 0 60369 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/optparse.py + - -rwxr-xr-x 0 0 0 39065 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/os.py + - -rwxr-xr-x 0 0 0 54073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/pathlib.py + - -rwxr-xr-x 0 0 0 63239 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/pdb.py + - -rwxr-xr-x 0 0 0 64920 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/pickle.py + - -rwxr-xr-x 0 0 0 93486 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/pickletools.py + - -rwxr-xr-x 0 0 0 8916 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/pipes.py + - -rwxr-xr-x 0 0 0 24276 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/pkgutil.py + - -rwxr-xr-x 0 0 0 40602 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/platform.py + - -rwxr-xr-x 0 0 0 28248 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/plistlib.py + - -rwxr-xr-x 0 0 0 15198 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/poplib.py + - -rwxr-xr-x 0 0 0 15721 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/posixpath.py + - -rwxr-xr-x 0 0 0 22527 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/pprint.py + - -rwxr-xr-x 0 0 0 22883 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/profile.py + - -rwxr-xr-x 0 0 0 29326 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/pstats.py + - -rwxr-xr-x 0 0 0 4807 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/pty.py + - -rwxr-xr-x 0 0 0 8148 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/py_compile.py + - -rwxr-xr-x 0 0 0 15255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/pyclbr.py + - -rwxr-xr-x 0 0 0 109600 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/pydoc.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/pydoc_data/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/pydoc_data/__init__.py + - -rwxr-xr-x 0 0 0 96 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/pydoc_data/_pydoc.css + - -rwxr-xr-x 0 0 0 703325 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/pydoc_data/topics.py + - -rwxr-xr-x 0 0 0 11496 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/queue.py + - -rwxr-xr-x 0 0 0 7268 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/quopri.py + - -rwxr-xr-x 0 0 0 31484 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/random.py + - -rwxr-xr-x 0 0 0 15861 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/re.py + - -rwxr-xr-x 0 0 0 5267 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/reprlib.py + - -rwxr-xr-x 0 0 0 7648 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/rlcompleter.py + - -rwxr-xr-x 0 0 0 13084 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/runpy.py + - -rwxr-xr-x 0 0 0 6442 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/sched.py + - -rwxr-xr-x 0 0 0 2036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/secrets.py + - -rwxr-xr-x 0 0 0 19536 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/selectors.py + - -rwxr-xr-x 0 0 0 8527 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/shelve.py + - -rwxr-xr-x 0 0 0 13501 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/shlex.py + - -rwxr-xr-x 0 0 0 53030 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/shutil.py + - -rwxr-xr-x 0 0 0 2438 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/signal.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/ + - -rwxr-xr-x 0 0 0 119 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/README.txt + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/ + - -rwxr-xr-x 0 0 0 6715 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/__init__.py + - -rwxr-xr-x 0 0 0 44 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/override.py + - -rwxr-xr-x 0 0 0 151 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/distutils-precedence.pth + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/ + - -rwxr-xr-x 0 0 0 10669 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/AUTHORS.txt + - -rwxr-xr-x 0 0 0 4 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/INSTALLER + - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/LICENSE.txt + - -rwxr-xr-x 0 0 0 3626 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/METADATA + - -rwxr-xr-x 0 0 0 66872 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/RECORD + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/REQUESTED + - -rwxr-xr-x 0 0 0 91 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/WHEEL + - -rwxr-xr-x 0 0 0 243 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/direct_url.json + - -rwxr-xr-x 0 0 0 87 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/entry_points.txt + - -rwxr-xr-x 0 0 0 4 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/top_level.txt + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/ + - -rwxr-xr-x 0 0 0 357 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/__init__.py + - -rwxr-xr-x 0 0 0 854 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/__main__.py + - -rwxr-xr-x 0 0 0 1450 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/__pip-runner__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/ + - -rwxr-xr-x 0 0 0 513 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/__init__.py + - -rwxr-xr-x 0 0 0 10374 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/build_env.py + - -rwxr-xr-x 0 0 0 10369 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cache.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/ + - -rwxr-xr-x 0 0 0 132 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/__init__.py + - -rwxr-xr-x 0 0 0 6865 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/autocompletion.py + - -rwxr-xr-x 0 0 0 8667 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/base_command.py + - -rwxr-xr-x 0 0 0 30066 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/cmdoptions.py + - -rwxr-xr-x 0 0 0 774 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/command_context.py + - -rwxr-xr-x 0 0 0 5857 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/index_command.py + - -rwxr-xr-x 0 0 0 2817 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/main.py + - -rwxr-xr-x 0 0 0 4338 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/main_parser.py + - -rwxr-xr-x 0 0 0 10811 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/parser.py + - -rwxr-xr-x 0 0 0 2714 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/progress_bars.py + - -rwxr-xr-x 0 0 0 12250 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/req_command.py + - -rwxr-xr-x 0 0 0 5118 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/spinners.py + - -rwxr-xr-x 0 0 0 116 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/status_codes.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/ + - -rwxr-xr-x 0 0 0 3882 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/__init__.py + - -rwxr-xr-x 0 0 0 7944 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/cache.py + - -rwxr-xr-x 0 0 0 1684 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/check.py + - -rwxr-xr-x 0 0 0 4287 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/completion.py + - -rwxr-xr-x 0 0 0 9766 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/configuration.py + - -rwxr-xr-x 0 0 0 6797 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/debug.py + - -rwxr-xr-x 0 0 0 5273 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/download.py + - -rwxr-xr-x 0 0 0 3172 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/freeze.py + - -rwxr-xr-x 0 0 0 1703 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/hash.py + - -rwxr-xr-x 0 0 0 1132 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/help.py + - -rwxr-xr-x 0 0 0 4731 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/index.py + - -rwxr-xr-x 0 0 0 3189 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/inspect.py + - -rwxr-xr-x 0 0 0 28997 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/install.py + - -rwxr-xr-x 0 0 0 12771 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/list.py + - -rwxr-xr-x 0 0 0 5628 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/search.py + - -rwxr-xr-x 0 0 0 7507 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/show.py + - -rwxr-xr-x 0 0 0 3892 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/uninstall.py + - -rwxr-xr-x 0 0 0 6414 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/wheel.py + - -rwxr-xr-x 0 0 0 14006 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/configuration.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/ + - -rwxr-xr-x 0 0 0 858 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/__init__.py + - -rwxr-xr-x 0 0 0 1783 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/base.py + - -rwxr-xr-x 0 0 0 842 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/installed.py + - -rwxr-xr-x 0 0 0 6751 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/sdist.py + - -rwxr-xr-x 0 0 0 1317 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/wheel.py + - -rwxr-xr-x 0 0 0 25371 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/exceptions.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/ + - -rwxr-xr-x 0 0 0 30 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/__init__.py + - -rwxr-xr-x 0 0 0 16265 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/collector.py + - -rwxr-xr-x 0 0 0 37733 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/package_finder.py + - -rwxr-xr-x 0 0 0 8688 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/sources.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/ + - -rwxr-xr-x 0 0 0 14925 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/__init__.py + - -rwxr-xr-x 0 0 0 6009 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/_distutils.py + - -rwxr-xr-x 0 0 0 7724 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/_sysconfig.py + - -rwxr-xr-x 0 0 0 2556 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/base.py + - -rwxr-xr-x 0 0 0 340 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/main.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/ + - -rwxr-xr-x 0 0 0 4339 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/__init__.py + - -rwxr-xr-x 0 0 0 2644 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/_json.py + - -rwxr-xr-x 0 0 0 25298 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/base.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/ + - -rwxr-xr-x 0 0 0 135 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/__init__.py + - -rwxr-xr-x 0 0 0 1882 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/_compat.py + - -rwxr-xr-x 0 0 0 8275 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/_dists.py + - -rwxr-xr-x 0 0 0 7455 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/_envs.py + - -rwxr-xr-x 0 0 0 10542 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/pkg_resources.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/ + - -rwxr-xr-x 0 0 0 63 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/__init__.py + - -rwxr-xr-x 0 0 0 753 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/candidate.py + - -rwxr-xr-x 0 0 0 6578 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/direct_url.py + - -rwxr-xr-x 0 0 0 2486 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/format_control.py + - -rwxr-xr-x 0 0 0 1030 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/index.py + - -rwxr-xr-x 0 0 0 2818 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/installation_report.py + - -rwxr-xr-x 0 0 0 21034 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/link.py + - -rwxr-xr-x 0 0 0 575 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/scheme.py + - -rwxr-xr-x 0 0 0 4531 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/search_scope.py + - -rwxr-xr-x 0 0 0 2015 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/selection_prefs.py + - -rwxr-xr-x 0 0 0 4271 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/target_python.py + - -rwxr-xr-x 0 0 0 3601 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/wheel.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/ + - -rwxr-xr-x 0 0 0 50 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/__init__.py + - -rwxr-xr-x 0 0 0 20533 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/auth.py + - -rwxr-xr-x 0 0 0 3935 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/cache.py + - -rwxr-xr-x 0 0 0 6087 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/download.py + - -rwxr-xr-x 0 0 0 7638 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/lazy_wheel.py + - -rwxr-xr-x 0 0 0 18741 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/session.py + - -rwxr-xr-x 0 0 0 4073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/utils.py + - -rwxr-xr-x 0 0 0 1838 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/xmlrpc.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/__init__.py + - -rwxr-xr-x 0 0 0 4774 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/build_tracker.py + - -rwxr-xr-x 0 0 0 1422 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/metadata.py + - -rwxr-xr-x 0 0 0 1474 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/metadata_editable.py + - -rwxr-xr-x 0 0 0 2190 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/metadata_legacy.py + - -rwxr-xr-x 0 0 0 1075 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/wheel.py + - -rwxr-xr-x 0 0 0 1417 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/wheel_editable.py + - -rwxr-xr-x 0 0 0 3045 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/wheel_legacy.py + - -rwxr-xr-x 0 0 0 5087 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/check.py + - -rwxr-xr-x 0 0 0 9864 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/freeze.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/install/ + - -rwxr-xr-x 0 0 0 51 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/install/__init__.py + - -rwxr-xr-x 0 0 0 1283 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/install/editable_legacy.py + - -rwxr-xr-x 0 0 0 27197 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/install/wheel.py + - -rwxr-xr-x 0 0 0 28118 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/prepare.py + - -rwxr-xr-x 0 0 0 7152 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/pyproject.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/ + - -rwxr-xr-x 0 0 0 2653 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/__init__.py + - -rwxr-xr-x 0 0 0 18412 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/constructors.py + - -rwxr-xr-x 0 0 0 17687 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/req_file.py + - -rwxr-xr-x 0 0 0 35054 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/req_install.py + - -rwxr-xr-x 0 0 0 2858 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/req_set.py + - -rwxr-xr-x 0 0 0 23853 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/req_uninstall.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/__init__.py + - -rwxr-xr-x 0 0 0 583 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/base.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/legacy/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/legacy/__init__.py + - -rwxr-xr-x 0 0 0 24068 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__init__.py + - -rwxr-xr-x 0 0 0 5023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/base.py + - -rwxr-xr-x 0 0 0 19823 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/candidates.py + - -rwxr-xr-x 0 0 0 32395 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/factory.py + - -rwxr-xr-x 0 0 0 6383 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py + - -rwxr-xr-x 0 0 0 9935 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/provider.py + - -rwxr-xr-x 0 0 0 3100 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/reporter.py + - -rwxr-xr-x 0 0 0 8065 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/requirements.py + - -rwxr-xr-x 0 0 0 12592 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/resolver.py + - -rwxr-xr-x 0 0 0 8356 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/self_outdated_check.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/__init__.py + - -rwxr-xr-x 0 0 0 3350 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/_jaraco_text.py + - -rwxr-xr-x 0 0 0 1015 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/_log.py + - -rwxr-xr-x 0 0 0 1665 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/appdirs.py + - -rwxr-xr-x 0 0 0 2399 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/compat.py + - -rwxr-xr-x 0 0 0 5377 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/compatibility_tags.py + - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/datetime.py + - -rwxr-xr-x 0 0 0 3707 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/deprecation.py + - -rwxr-xr-x 0 0 0 3196 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/direct_url_helpers.py + - -rwxr-xr-x 0 0 0 2463 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/egg_link.py + - -rwxr-xr-x 0 0 0 1169 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/encoding.py + - -rwxr-xr-x 0 0 0 3064 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/entrypoints.py + - -rwxr-xr-x 0 0 0 5122 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/filesystem.py + - -rwxr-xr-x 0 0 0 716 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/filetypes.py + - -rwxr-xr-x 0 0 0 3166 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/glibc.py + - -rwxr-xr-x 0 0 0 3113 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/glibc.py.orig + - -rwxr-xr-x 0 0 0 4951 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/hashes.py + - -rwxr-xr-x 0 0 0 11602 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/logging.py + - -rwxr-xr-x 0 0 0 23814 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/misc.py + - -rwxr-xr-x 0 0 0 2108 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/packaging.py + - -rwxr-xr-x 0 0 0 4435 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/setuptools_build.py + - -rwxr-xr-x 0 0 0 8988 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/subprocess.py + - -rwxr-xr-x 0 0 0 9312 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/temp_dir.py + - -rwxr-xr-x 0 0 0 11951 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/unpacking.py + - -rwxr-xr-x 0 0 0 1599 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/urls.py + - -rwxr-xr-x 0 0 0 3456 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/virtualenv.py + - -rwxr-xr-x 0 0 0 4494 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/wheel.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/ + - -rwxr-xr-x 0 0 0 596 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/__init__.py + - -rwxr-xr-x 0 0 0 3528 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/bazaar.py + - -rwxr-xr-x 0 0 0 18177 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/git.py + - -rwxr-xr-x 0 0 0 5249 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/mercurial.py + - -rwxr-xr-x 0 0 0 11735 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/subversion.py + - -rwxr-xr-x 0 0 0 22440 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/versioncontrol.py + - -rwxr-xr-x 0 0 0 11799 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/wheel_builder.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/ + - -rwxr-xr-x 0 0 0 4850 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/ + - -rwxr-xr-x 0 0 0 676 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__init__.py + - -rwxr-xr-x 0 0 0 1737 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/_cmd.py + - -rwxr-xr-x 0 0 0 6355 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/adapter.py + - -rwxr-xr-x 0 0 0 1952 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/cache.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/ + - -rwxr-xr-x 0 0 0 303 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/__init__.py + - -rwxr-xr-x 0 0 0 5406 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py + - -rwxr-xr-x 0 0 0 1386 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py + - -rwxr-xr-x 0 0 0 18575 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/controller.py + - -rwxr-xr-x 0 0 0 4292 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/filewrapper.py + - -rwxr-xr-x 0 0 0 4834 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/heuristics.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/py.typed + - -rwxr-xr-x 0 0 0 5163 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/serialize.py + - -rwxr-xr-x 0 0 0 1417 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/wrapper.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/ + - -rwxr-xr-x 0 0 0 94 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/__init__.py + - -rwxr-xr-x 0 0 0 255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/__main__.py + - -rwxr-xr-x 0 0 0 292541 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/cacert.pem + - -rwxr-xr-x 0 0 0 4486 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/core.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/py.typed + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/ + - -rwxr-xr-x 0 0 0 625 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/__init__.py + - -rwxr-xr-x 0 0 0 41487 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/compat.py + - -rwxr-xr-x 0 0 0 51965 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/database.py + - -rwxr-xr-x 0 0 0 20797 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/index.py + - -rwxr-xr-x 0 0 0 51767 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/locators.py + - -rwxr-xr-x 0 0 0 14168 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/manifest.py + - -rwxr-xr-x 0 0 0 5268 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/markers.py + - -rwxr-xr-x 0 0 0 39693 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/metadata.py + - -rwxr-xr-x 0 0 0 10820 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/resources.py + - -rwxr-xr-x 0 0 0 18780 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/scripts.py + - -rwxr-xr-x 0 0 0 97792 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/t32.exe + - -rwxr-xr-x 0 0 0 182784 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/t64-arm.exe + - -rwxr-xr-x 0 0 0 108032 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/t64.exe + - -rwxr-xr-x 0 0 0 67530 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/util.py + - -rwxr-xr-x 0 0 0 23747 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/version.py + - -rwxr-xr-x 0 0 0 91648 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/w32.exe + - -rwxr-xr-x 0 0 0 168448 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/w64-arm.exe + - -rwxr-xr-x 0 0 0 101888 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/w64.exe + - -rwxr-xr-x 0 0 0 43958 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/wheel.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/ + - -rwxr-xr-x 0 0 0 981 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/__init__.py + - -rwxr-xr-x 0 0 0 64 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/__main__.py + - -rwxr-xr-x 0 0 0 49430 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/distro.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/py.typed + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/ + - -rwxr-xr-x 0 0 0 849 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/__init__.py + - -rwxr-xr-x 0 0 0 3426 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/codec.py + - -rwxr-xr-x 0 0 0 321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/compat.py + - -rwxr-xr-x 0 0 0 12663 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/core.py + - -rwxr-xr-x 0 0 0 78320 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/idnadata.py + - -rwxr-xr-x 0 0 0 1881 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/intranges.py + - -rwxr-xr-x 0 0 0 21 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/package_data.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/py.typed + - -rwxr-xr-x 0 0 0 206503 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/uts46data.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/ + - -rwxr-xr-x 0 0 0 1077 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/__init__.py + - -rwxr-xr-x 0 0 0 1081 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/exceptions.py + - -rwxr-xr-x 0 0 0 5629 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/ext.py + - -rwxr-xr-x 0 0 0 33175 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/fallback.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/ + - -rwxr-xr-x 0 0 0 496 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/__init__.py + - -rwxr-xr-x 0 0 0 3282 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_elffile.py + - -rwxr-xr-x 0 0 0 9586 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_manylinux.py + - -rwxr-xr-x 0 0 0 2694 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_musllinux.py + - -rwxr-xr-x 0 0 0 10236 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_parser.py + - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_structures.py + - -rwxr-xr-x 0 0 0 5273 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_tokenizer.py + - -rwxr-xr-x 0 0 0 10671 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/markers.py + - -rwxr-xr-x 0 0 0 32349 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/metadata.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/py.typed + - -rwxr-xr-x 0 0 0 2947 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/requirements.py + - -rwxr-xr-x 0 0 0 39738 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/specifiers.py + - -rwxr-xr-x 0 0 0 18883 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/tags.py + - -rwxr-xr-x 0 0 0 5287 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/utils.py + - -rwxr-xr-x 0 0 0 16210 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/version.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pkg_resources/ + - -rwxr-xr-x 0 0 0 108869 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pkg_resources/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/ + - -rwxr-xr-x 0 0 0 22285 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/__init__.py + - -rwxr-xr-x 0 0 0 1505 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/__main__.py + - -rwxr-xr-x 0 0 0 7681 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/android.py + - -rwxr-xr-x 0 0 0 8996 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/api.py + - -rwxr-xr-x 0 0 0 5580 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/macos.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/py.typed + - -rwxr-xr-x 0 0 0 10643 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/unix.py + - -rwxr-xr-x 0 0 0 411 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/version.py + - -rwxr-xr-x 0 0 0 10125 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/windows.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/ + - -rwxr-xr-x 0 0 0 2983 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/__init__.py + - -rwxr-xr-x 0 0 0 353 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/__main__.py + - -rwxr-xr-x 0 0 0 23650 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/cmdline.py + - -rwxr-xr-x 0 0 0 1697 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/console.py + - -rwxr-xr-x 0 0 0 1938 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/filter.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/filters/ + - -rwxr-xr-x 0 0 0 40386 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/filters/__init__.py + - -rwxr-xr-x 0 0 0 4178 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatter.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/ + - -rwxr-xr-x 0 0 0 5431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/__init__.py + - -rwxr-xr-x 0 0 0 4176 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/_mapping.py + - -rwxr-xr-x 0 0 0 3314 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/bbcode.py + - -rwxr-xr-x 0 0 0 5094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/groff.py + - -rwxr-xr-x 0 0 0 35676 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/html.py + - -rwxr-xr-x 0 0 0 23140 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/img.py + - -rwxr-xr-x 0 0 0 4981 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/irc.py + - -rwxr-xr-x 0 0 0 19351 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/latex.py + - -rwxr-xr-x 0 0 0 5073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/other.py + - -rwxr-xr-x 0 0 0 2212 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py + - -rwxr-xr-x 0 0 0 5014 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/rtf.py + - -rwxr-xr-x 0 0 0 7335 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/svg.py + - -rwxr-xr-x 0 0 0 4674 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/terminal.py + - -rwxr-xr-x 0 0 0 11753 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/terminal256.py + - -rwxr-xr-x 0 0 0 35284 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexer.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexers/ + - -rwxr-xr-x 0 0 0 12161 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexers/__init__.py + - -rwxr-xr-x 0 0 0 74926 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexers/_mapping.py + - -rwxr-xr-x 0 0 0 53448 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexers/python.py + - -rwxr-xr-x 0 0 0 986 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/modeline.py + - -rwxr-xr-x 0 0 0 2591 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/plugin.py + - -rwxr-xr-x 0 0 0 3072 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/regexopt.py + - -rwxr-xr-x 0 0 0 3092 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/scanner.py + - -rwxr-xr-x 0 0 0 7770 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/sphinxext.py + - -rwxr-xr-x 0 0 0 6420 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/style.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/styles/ + - -rwxr-xr-x 0 0 0 2042 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/styles/__init__.py + - -rwxr-xr-x 0 0 0 3251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/styles/_mapping.py + - -rwxr-xr-x 0 0 0 6226 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/token.py + - -rwxr-xr-x 0 0 0 63223 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/unistring.py + - -rwxr-xr-x 0 0 0 10230 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/util.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/ + - -rwxr-xr-x 0 0 0 491 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/__init__.py + - -rwxr-xr-x 0 0 0 138 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_compat.py + - -rwxr-xr-x 0 0 0 11920 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_impl.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_in_process/ + - -rwxr-xr-x 0 0 0 546 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py + - -rwxr-xr-x 0 0 0 10927 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/ + - -rwxr-xr-x 0 0 0 5057 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/__init__.py + - -rwxr-xr-x 0 0 0 435 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/__version__.py + - -rwxr-xr-x 0 0 0 1495 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/_internal_utils.py + - -rwxr-xr-x 0 0 0 27607 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py + - -rwxr-xr-x 0 0 0 6449 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/api.py + - -rwxr-xr-x 0 0 0 10186 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/auth.py + - -rwxr-xr-x 0 0 0 575 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/certs.py + - -rwxr-xr-x 0 0 0 1485 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/compat.py + - -rwxr-xr-x 0 0 0 18590 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/cookies.py + - -rwxr-xr-x 0 0 0 4272 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/exceptions.py + - -rwxr-xr-x 0 0 0 3813 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/help.py + - -rwxr-xr-x 0 0 0 733 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/hooks.py + - -rwxr-xr-x 0 0 0 35483 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/models.py + - -rwxr-xr-x 0 0 0 1057 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/packages.py + - -rwxr-xr-x 0 0 0 30495 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py + - -rwxr-xr-x 0 0 0 4322 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/status_codes.py + - -rwxr-xr-x 0 0 0 2912 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/structures.py + - -rwxr-xr-x 0 0 0 33631 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/utils.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/ + - -rwxr-xr-x 0 0 0 537 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/__init__.py + - -rwxr-xr-x 0 0 0 156 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py + - -rwxr-xr-x 0 0 0 5871 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/providers.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/py.typed + - -rwxr-xr-x 0 0 0 1601 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/reporters.py + - -rwxr-xr-x 0 0 0 20511 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/resolvers.py + - -rwxr-xr-x 0 0 0 4963 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/structs.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/ + - -rwxr-xr-x 0 0 0 6090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/__init__.py + - -rwxr-xr-x 0 0 0 8477 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/__main__.py + - -rwxr-xr-x 0 0 0 10209 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_cell_widths.py + - -rwxr-xr-x 0 0 0 140235 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_emoji_codes.py + - -rwxr-xr-x 0 0 0 1064 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_emoji_replace.py + - -rwxr-xr-x 0 0 0 2128 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_export_format.py + - -rwxr-xr-x 0 0 0 265 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_extension.py + - -rwxr-xr-x 0 0 0 799 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_fileno.py + - -rwxr-xr-x 0 0 0 9695 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_inspect.py + - -rwxr-xr-x 0 0 0 3225 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_log_render.py + - -rwxr-xr-x 0 0 0 1236 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_loop.py + - -rwxr-xr-x 0 0 0 1387 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_null_file.py + - -rwxr-xr-x 0 0 0 7063 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_palettes.py + - -rwxr-xr-x 0 0 0 423 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_pick.py + - -rwxr-xr-x 0 0 0 5471 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_ratio.py + - -rwxr-xr-x 0 0 0 19919 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_spinners.py + - -rwxr-xr-x 0 0 0 351 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_stack.py + - -rwxr-xr-x 0 0 0 417 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_timer.py + - -rwxr-xr-x 0 0 0 22820 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_win32_console.py + - -rwxr-xr-x 0 0 0 1925 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_windows.py + - -rwxr-xr-x 0 0 0 2783 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_windows_renderer.py + - -rwxr-xr-x 0 0 0 3404 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_wrap.py + - -rwxr-xr-x 0 0 0 890 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/abc.py + - -rwxr-xr-x 0 0 0 10368 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/align.py + - -rwxr-xr-x 0 0 0 6906 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/ansi.py + - -rwxr-xr-x 0 0 0 3263 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/bar.py + - -rwxr-xr-x 0 0 0 10831 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/box.py + - -rwxr-xr-x 0 0 0 4780 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/cells.py + - -rwxr-xr-x 0 0 0 18223 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/color.py + - -rwxr-xr-x 0 0 0 1054 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/color_triplet.py + - -rwxr-xr-x 0 0 0 7131 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/columns.py + - -rwxr-xr-x 0 0 0 99173 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/console.py + - -rwxr-xr-x 0 0 0 1288 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/constrain.py + - -rwxr-xr-x 0 0 0 5502 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/containers.py + - -rwxr-xr-x 0 0 0 6630 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/control.py + - -rwxr-xr-x 0 0 0 8082 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/default_styles.py + - -rwxr-xr-x 0 0 0 972 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/diagnose.py + - -rwxr-xr-x 0 0 0 2501 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/emoji.py + - -rwxr-xr-x 0 0 0 642 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/errors.py + - -rwxr-xr-x 0 0 0 1683 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/file_proxy.py + - -rwxr-xr-x 0 0 0 2508 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/filesize.py + - -rwxr-xr-x 0 0 0 9585 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/highlighter.py + - -rwxr-xr-x 0 0 0 5031 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/json.py + - -rwxr-xr-x 0 0 0 3252 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/jupyter.py + - -rwxr-xr-x 0 0 0 14004 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/layout.py + - -rwxr-xr-x 0 0 0 14271 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/live.py + - -rwxr-xr-x 0 0 0 3666 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/live_render.py + - -rwxr-xr-x 0 0 0 11903 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/logging.py + - -rwxr-xr-x 0 0 0 8451 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/markup.py + - -rwxr-xr-x 0 0 0 5305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/measure.py + - -rwxr-xr-x 0 0 0 4970 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/padding.py + - -rwxr-xr-x 0 0 0 828 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/pager.py + - -rwxr-xr-x 0 0 0 3396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/palette.py + - -rwxr-xr-x 0 0 0 10705 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/panel.py + - -rwxr-xr-x 0 0 0 35848 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/pretty.py + - -rwxr-xr-x 0 0 0 59715 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/progress.py + - -rwxr-xr-x 0 0 0 8164 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/progress_bar.py + - -rwxr-xr-x 0 0 0 11304 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/prompt.py + - -rwxr-xr-x 0 0 0 1391 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/protocol.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/py.typed + - -rwxr-xr-x 0 0 0 166 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/region.py + - -rwxr-xr-x 0 0 0 4431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/repr.py + - -rwxr-xr-x 0 0 0 4602 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/rule.py + - -rwxr-xr-x 0 0 0 2843 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/scope.py + - -rwxr-xr-x 0 0 0 1591 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/screen.py + - -rwxr-xr-x 0 0 0 24246 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/segment.py + - -rwxr-xr-x 0 0 0 4339 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/spinner.py + - -rwxr-xr-x 0 0 0 4424 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/status.py + - -rwxr-xr-x 0 0 0 27073 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/style.py + - -rwxr-xr-x 0 0 0 1258 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/styled.py + - -rwxr-xr-x 0 0 0 35475 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/syntax.py + - -rwxr-xr-x 0 0 0 39680 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/table.py + - -rwxr-xr-x 0 0 0 3370 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/terminal_theme.py + - -rwxr-xr-x 0 0 0 47312 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/text.py + - -rwxr-xr-x 0 0 0 3777 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/theme.py + - -rwxr-xr-x 0 0 0 102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/themes.py + - -rwxr-xr-x 0 0 0 29601 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/traceback.py + - -rwxr-xr-x 0 0 0 9167 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/tree.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/ + - -rwxr-xr-x 0 0 0 20518 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/__init__.py + - -rwxr-xr-x 0 0 0 3551 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/_asyncio.py + - -rwxr-xr-x 0 0 0 2179 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/_utils.py + - -rwxr-xr-x 0 0 0 1682 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/after.py + - -rwxr-xr-x 0 0 0 1562 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/before.py + - -rwxr-xr-x 0 0 0 2372 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/before_sleep.py + - -rwxr-xr-x 0 0 0 1383 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/nap.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/py.typed + - -rwxr-xr-x 0 0 0 8746 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/retry.py + - -rwxr-xr-x 0 0 0 3086 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/stop.py + - -rwxr-xr-x 0 0 0 2142 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/tornadoweb.py + - -rwxr-xr-x 0 0 0 8024 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/wait.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/ + - -rwxr-xr-x 0 0 0 396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/__init__.py + - -rwxr-xr-x 0 0 0 22633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/_parser.py + - -rwxr-xr-x 0 0 0 2943 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/_re.py + - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/_types.py + - -rwxr-xr-x 0 0 0 26 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/py.typed + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/truststore/ + - -rwxr-xr-x 0 0 0 403 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/truststore/__init__.py + - -rwxr-xr-x 0 0 0 10461 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/truststore/_api.py + - -rwxr-xr-x 0 0 0 17608 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/truststore/_macos.py + - -rwxr-xr-x 0 0 0 2324 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/truststore/_openssl.py + - -rwxr-xr-x 0 0 0 1130 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/truststore/_ssl_constants.py + - -rwxr-xr-x 0 0 0 17891 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/truststore/_windows.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/truststore/py.typed + - -rwxr-xr-x 0 0 0 122341 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/typing_extensions.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/ + - -rwxr-xr-x 0 0 0 3333 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/__init__.py + - -rwxr-xr-x 0 0 0 11372 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/_collections.py + - -rwxr-xr-x 0 0 0 64 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/_version.py + - -rwxr-xr-x 0 0 0 20300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/connection.py + - -rwxr-xr-x 0 0 0 40285 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/__init__.py + - -rwxr-xr-x 0 0 0 957 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py + - -rwxr-xr-x 0 0 0 17632 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py + - -rwxr-xr-x 0 0 0 13922 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py + - -rwxr-xr-x 0 0 0 11036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/appengine.py + - -rwxr-xr-x 0 0 0 4528 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py + - -rwxr-xr-x 0 0 0 17081 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py + - -rwxr-xr-x 0 0 0 34446 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/securetransport.py + - -rwxr-xr-x 0 0 0 7097 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/socks.py + - -rwxr-xr-x 0 0 0 8217 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/exceptions.py + - -rwxr-xr-x 0 0 0 8579 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/fields.py + - -rwxr-xr-x 0 0 0 2440 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/filepost.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py + - -rwxr-xr-x 0 0 0 1417 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py + - -rwxr-xr-x 0 0 0 5343 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py + - -rwxr-xr-x 0 0 0 34665 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/six.py + - -rwxr-xr-x 0 0 0 19990 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/poolmanager.py + - -rwxr-xr-x 0 0 0 6691 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/request.py + - -rwxr-xr-x 0 0 0 30641 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/response.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ + - -rwxr-xr-x 0 0 0 1155 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/__init__.py + - -rwxr-xr-x 0 0 0 4901 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/connection.py + - -rwxr-xr-x 0 0 0 1605 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/proxy.py + - -rwxr-xr-x 0 0 0 498 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/queue.py + - -rwxr-xr-x 0 0 0 3997 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/request.py + - -rwxr-xr-x 0 0 0 3510 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/response.py + - -rwxr-xr-x 0 0 0 22013 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/retry.py + - -rwxr-xr-x 0 0 0 17177 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_.py + - -rwxr-xr-x 0 0 0 5758 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py + - -rwxr-xr-x 0 0 0 6895 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssltransport.py + - -rwxr-xr-x 0 0 0 10168 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/timeout.py + - -rwxr-xr-x 0 0 0 14296 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/url.py + - -rwxr-xr-x 0 0 0 5403 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/wait.py + - -rwxr-xr-x 0 0 0 346 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/vendor.txt + - -rwxr-xr-x 0 0 0 286 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pip/py.typed + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/ + - -rwxr-xr-x 0 0 0 124456 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/backports/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/backports/__init__.py + - -rwxr-xr-x 0 0 0 106920 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/backports/tarfile.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/ + - -rwxr-xr-x 0 0 0 506 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py + - -rwxr-xr-x 0 0 0 4504 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_adapters.py + - -rwxr-xr-x 0 0 0 5457 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_common.py + - -rwxr-xr-x 0 0 0 2925 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_compat.py + - -rwxr-xr-x 0 0 0 884 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py + - -rwxr-xr-x 0 0 0 3481 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_legacy.py + - -rwxr-xr-x 0 0 0 5140 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/abc.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/py.typed + - -rwxr-xr-x 0 0 0 3581 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/readers.py + - -rwxr-xr-x 0 0 0 2576 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/simple.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/__init__.py + - -rwxr-xr-x 0 0 0 9573 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/context.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/functools/ + - -rwxr-xr-x 0 0 0 16705 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/functools/__init__.py + - -rwxr-xr-x 0 0 0 3982 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/functools/__init__.pyi + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/functools/py.typed + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/text/ + - -rwxr-xr-x 0 0 0 15526 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/text/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/ + - -rwxr-xr-x 0 0 0 149 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/__init__.py + - -rwxr-xr-x 0 0 0 43 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/__init__.pyi + - -rwxr-xr-x 0 0 0 143053 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/more.py + - -rwxr-xr-x 0 0 0 21044 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/more.pyi + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/py.typed + - -rwxr-xr-x 0 0 0 27548 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/recipes.py + - -rwxr-xr-x 0 0 0 4436 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/recipes.pyi + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/ + - -rwxr-xr-x 0 0 0 496 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/__init__.py + - -rwxr-xr-x 0 0 0 3266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_elffile.py + - -rwxr-xr-x 0 0 0 9590 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_manylinux.py + - -rwxr-xr-x 0 0 0 2676 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_musllinux.py + - -rwxr-xr-x 0 0 0 10347 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_parser.py + - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_structures.py + - -rwxr-xr-x 0 0 0 5292 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_tokenizer.py + - -rwxr-xr-x 0 0 0 8208 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/markers.py + - -rwxr-xr-x 0 0 0 33036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/metadata.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/py.typed + - -rwxr-xr-x 0 0 0 2933 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/requirements.py + - -rwxr-xr-x 0 0 0 39784 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/specifiers.py + - -rwxr-xr-x 0 0 0 18950 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/tags.py + - -rwxr-xr-x 0 0 0 5268 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/utils.py + - -rwxr-xr-x 0 0 0 16236 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/version.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/ + - -rwxr-xr-x 0 0 0 12806 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/__init__.py + - -rwxr-xr-x 0 0 0 1164 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/__main__.py + - -rwxr-xr-x 0 0 0 4068 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/android.py + - -rwxr-xr-x 0 0 0 4910 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/api.py + - -rwxr-xr-x 0 0 0 2655 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/macos.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/py.typed + - -rwxr-xr-x 0 0 0 6911 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/unix.py + - -rwxr-xr-x 0 0 0 160 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/version.py + - -rwxr-xr-x 0 0 0 6596 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/windows.py + - -rwxr-xr-x 0 0 0 8425 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/zipp.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/extern/ + - -rwxr-xr-x 0 0 0 3123 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/extern/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/ + - -rwxr-xr-x 0 0 0 4 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/INSTALLER + - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/LICENSE + - -rwxr-xr-x 0 0 0 5817 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/METADATA + - -rwxr-xr-x 0 0 0 43922 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/RECORD + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/REQUESTED + - -rwxr-xr-x 0 0 0 91 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/WHEEL + - -rwxr-xr-x 0 0 0 250 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/direct_url.json + - -rwxr-xr-x 0 0 0 2733 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/entry_points.txt + - -rwxr-xr-x 0 0 0 41 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/top_level.txt + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/ + - -rwxr-xr-x 0 0 0 8950 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/__init__.py + - -rwxr-xr-x 0 0 0 9826 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_core_metadata.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/ + - -rwxr-xr-x 0 0 0 359 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/__init__.py + - -rwxr-xr-x 0 0 0 5440 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_collections.py + - -rwxr-xr-x 0 0 0 1771 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_functools.py + - -rwxr-xr-x 0 0 0 1453 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_itertools.py + - -rwxr-xr-x 0 0 0 42 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_log.py + - -rwxr-xr-x 0 0 0 239 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_macos_compat.py + - -rwxr-xr-x 0 0 0 2410 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_modified.py + - -rwxr-xr-x 0 0 0 19641 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_msvccompiler.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/ + - -rwxr-xr-x 0 0 0 496 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/__init__.py + - -rwxr-xr-x 0 0 0 3266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/_elffile.py + - -rwxr-xr-x 0 0 0 9590 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/_manylinux.py + - -rwxr-xr-x 0 0 0 2676 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/_musllinux.py + - -rwxr-xr-x 0 0 0 10347 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/_parser.py + - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/_structures.py + - -rwxr-xr-x 0 0 0 5292 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/_tokenizer.py + - -rwxr-xr-x 0 0 0 8208 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/markers.py + - -rwxr-xr-x 0 0 0 33036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/metadata.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/py.typed + - -rwxr-xr-x 0 0 0 2933 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/requirements.py + - -rwxr-xr-x 0 0 0 39784 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/specifiers.py + - -rwxr-xr-x 0 0 0 18950 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/tags.py + - -rwxr-xr-x 0 0 0 5268 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/utils.py + - -rwxr-xr-x 0 0 0 16236 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/version.py + - -rwxr-xr-x 0 0 0 8551 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/archive_util.py + - -rwxr-xr-x 0 0 0 14674 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/bcppcompiler.py + - -rwxr-xr-x 0 0 0 48935 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/ccompiler.py + - -rwxr-xr-x 0 0 0 17877 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/cmd.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/ + - -rwxr-xr-x 0 0 0 416 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/__init__.py + - -rwxr-xr-x 0 0 0 1609 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/_framework_compat.py + - -rwxr-xr-x 0 0 0 5354 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/bdist.py + - -rwxr-xr-x 0 0 0 4582 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/bdist_dumb.py + - -rwxr-xr-x 0 0 0 21686 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/bdist_rpm.py + - -rwxr-xr-x 0 0 0 5729 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build.py + - -rwxr-xr-x 0 0 0 7684 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build_clib.py + - -rwxr-xr-x 0 0 0 31850 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build_ext.py + - -rwxr-xr-x 0 0 0 16552 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build_py.py + - -rwxr-xr-x 0 0 0 5534 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build_scripts.py + - -rwxr-xr-x 0 0 0 4928 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/check.py + - -rwxr-xr-x 0 0 0 2595 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/clean.py + - -rwxr-xr-x 0 0 0 13008 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/config.py + - -rwxr-xr-x 0 0 0 30079 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install.py + - -rwxr-xr-x 0 0 0 2764 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_data.py + - -rwxr-xr-x 0 0 0 2788 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_egg_info.py + - -rwxr-xr-x 0 0 0 1184 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_headers.py + - -rwxr-xr-x 0 0 0 8410 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_lib.py + - -rwxr-xr-x 0 0 0 1937 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_scripts.py + - -rwxr-xr-x 0 0 0 11793 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/register.py + - -rwxr-xr-x 0 0 0 19196 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/sdist.py + - -rwxr-xr-x 0 0 0 7493 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/upload.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/compat/ + - -rwxr-xr-x 0 0 0 429 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/compat/__init__.py + - -rwxr-xr-x 0 0 0 790 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/compat/py38.py + - -rwxr-xr-x 0 0 0 1964 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/compat/py39.py + - -rwxr-xr-x 0 0 0 5226 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/config.py + - -rwxr-xr-x 0 0 0 9318 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/core.py + - -rwxr-xr-x 0 0 0 11954 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/cygwinccompiler.py + - -rwxr-xr-x 0 0 0 139 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/debug.py + - -rwxr-xr-x 0 0 0 349 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/dep_util.py + - -rwxr-xr-x 0 0 0 8007 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/dir_util.py + - -rwxr-xr-x 0 0 0 50977 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/dist.py + - -rwxr-xr-x 0 0 0 3589 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/errors.py + - -rwxr-xr-x 0 0 0 10206 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/extension.py + - -rwxr-xr-x 0 0 0 17822 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/fancy_getopt.py + - -rwxr-xr-x 0 0 0 7944 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/file_util.py + - -rwxr-xr-x 0 0 0 13654 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/filelist.py + - -rwxr-xr-x 0 0 0 1200 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/log.py + - -rwxr-xr-x 0 0 0 30129 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/msvc9compiler.py + - -rwxr-xr-x 0 0 0 23451 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/msvccompiler.py + - -rwxr-xr-x 0 0 0 3626 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/spawn.py + - -rwxr-xr-x 0 0 0 18747 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py + - -rwxr-xr-x 0 0 0 12098 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/text_file.py + - -rwxr-xr-x 0 0 0 15698 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/unixccompiler.py + - -rwxr-xr-x 0 0 0 18093 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/util.py + - -rwxr-xr-x 0 0 0 12634 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/version.py + - -rwxr-xr-x 0 0 0 5205 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/versionpredicate.py + - -rwxr-xr-x 0 0 0 6589 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/zosccompiler.py + - -rwxr-xr-x 0 0 0 2333 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_entry_points.py + - -rwxr-xr-x 0 0 0 2443 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_imp.py + - -rwxr-xr-x 0 0 0 1454 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_importlib.py + - -rwxr-xr-x 0 0 0 675 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_itertools.py + - -rwxr-xr-x 0 0 0 4567 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_normalization.py + - -rwxr-xr-x 0 0 0 1178 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_path.py + - -rwxr-xr-x 0 0 0 1112 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_reqs.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/backports/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/backports/__init__.py + - -rwxr-xr-x 0 0 0 106920 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/backports/tarfile.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/ + - -rwxr-xr-x 0 0 0 26498 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/__init__.py + - -rwxr-xr-x 0 0 0 2454 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py + - -rwxr-xr-x 0 0 0 743 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_collections.py + - -rwxr-xr-x 0 0 0 1859 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_compat.py + - -rwxr-xr-x 0 0 0 2895 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_functools.py + - -rwxr-xr-x 0 0 0 2068 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py + - -rwxr-xr-x 0 0 0 1165 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_meta.py + - -rwxr-xr-x 0 0 0 1098 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_py39compat.py + - -rwxr-xr-x 0 0 0 2166 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_text.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/py.typed + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/ + - -rwxr-xr-x 0 0 0 506 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/__init__.py + - -rwxr-xr-x 0 0 0 4504 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_adapters.py + - -rwxr-xr-x 0 0 0 5457 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_common.py + - -rwxr-xr-x 0 0 0 2925 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_compat.py + - -rwxr-xr-x 0 0 0 884 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_itertools.py + - -rwxr-xr-x 0 0 0 3481 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_legacy.py + - -rwxr-xr-x 0 0 0 5140 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/abc.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/py.typed + - -rwxr-xr-x 0 0 0 3581 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/readers.py + - -rwxr-xr-x 0 0 0 2576 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/simple.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/__init__.py + - -rwxr-xr-x 0 0 0 9570 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/context.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/functools/ + - -rwxr-xr-x 0 0 0 16696 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/functools/__init__.py + - -rwxr-xr-x 0 0 0 3982 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/functools/__init__.pyi + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/functools/py.typed + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/text/ + - -rwxr-xr-x 0 0 0 15517 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/text/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/ + - -rwxr-xr-x 0 0 0 82 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/__init__.py + - -rwxr-xr-x 0 0 0 43 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/__init__.pyi + - -rwxr-xr-x 0 0 0 117959 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/more.py + - -rwxr-xr-x 0 0 0 14977 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/more.pyi + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/py.typed + - -rwxr-xr-x 0 0 0 16256 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/recipes.py + - -rwxr-xr-x 0 0 0 3551 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/recipes.pyi + - -rwxr-xr-x 0 0 0 15130 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/ordered_set.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/ + - -rwxr-xr-x 0 0 0 496 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/__init__.py + - -rwxr-xr-x 0 0 0 3266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_elffile.py + - -rwxr-xr-x 0 0 0 9590 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_manylinux.py + - -rwxr-xr-x 0 0 0 2676 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_musllinux.py + - -rwxr-xr-x 0 0 0 10347 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_parser.py + - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_structures.py + - -rwxr-xr-x 0 0 0 5292 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_tokenizer.py + - -rwxr-xr-x 0 0 0 8208 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/markers.py + - -rwxr-xr-x 0 0 0 33036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/metadata.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/py.typed + - -rwxr-xr-x 0 0 0 2933 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/requirements.py + - -rwxr-xr-x 0 0 0 39784 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/specifiers.py + - -rwxr-xr-x 0 0 0 18950 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/tags.py + - -rwxr-xr-x 0 0 0 5268 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/utils.py + - -rwxr-xr-x 0 0 0 16236 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/version.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/ + - -rwxr-xr-x 0 0 0 396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/__init__.py + - -rwxr-xr-x 0 0 0 22633 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/_parser.py + - -rwxr-xr-x 0 0 0 2943 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/_re.py + - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/_types.py + - -rwxr-xr-x 0 0 0 26 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/py.typed + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/wheel/ + - -rwxr-xr-x 0 0 0 59 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/wheel/__init__.py + - -rwxr-xr-x 0 0 0 16103 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/wheel/macosx_libfile.py + - -rwxr-xr-x 0 0 0 5876 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/wheel/metadata.py + - -rwxr-xr-x 0 0 0 621 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/wheel/util.py + - -rwxr-xr-x 0 0 0 7696 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/wheel/wheelfile.py + - -rwxr-xr-x 0 0 0 8425 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/zipp.py + - -rwxr-xr-x 0 0 0 7331 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/archive_util.py + - -rwxr-xr-x 0 0 0 19085 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/build_meta.py + - -rwxr-xr-x 0 0 0 11776 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/cli-32.exe + - -rwxr-xr-x 0 0 0 14336 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/cli-64.exe + - -rwxr-xr-x 0 0 0 13824 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/cli-arm64.exe + - -rwxr-xr-x 0 0 0 11776 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/cli.exe + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/ + - -rwxr-xr-x 0 0 0 396 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/__init__.py + - -rwxr-xr-x 0 0 0 4245 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/_requirestxt.py + - -rwxr-xr-x 0 0 0 2383 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/alias.py + - -rwxr-xr-x 0 0 0 16525 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/bdist_egg.py + - -rwxr-xr-x 0 0 0 1289 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/bdist_rpm.py + - -rwxr-xr-x 0 0 0 21412 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/bdist_wheel.py + - -rwxr-xr-x 0 0 0 5816 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/build.py + - -rwxr-xr-x 0 0 0 4539 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/build_clib.py + - -rwxr-xr-x 0 0 0 17760 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/build_ext.py + - -rwxr-xr-x 0 0 0 15193 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/build_py.py + - -rwxr-xr-x 0 0 0 6892 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/develop.py + - -rwxr-xr-x 0 0 0 3507 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/dist_info.py + - -rwxr-xr-x 0 0 0 86995 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/easy_install.py + - -rwxr-xr-x 0 0 0 35275 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/editable_wheel.py + - -rwxr-xr-x 0 0 0 26522 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/egg_info.py + - -rwxr-xr-x 0 0 0 5779 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/install.py + - -rwxr-xr-x 0 0 0 2066 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/install_egg_info.py + - -rwxr-xr-x 0 0 0 3965 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/install_lib.py + - -rwxr-xr-x 0 0 0 2474 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/install_scripts.py + - -rwxr-xr-x 0 0 0 628 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/launcher manifest.xml + - -rwxr-xr-x 0 0 0 466 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/register.py + - -rwxr-xr-x 0 0 0 2144 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/rotate.py + - -rwxr-xr-x 0 0 0 657 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/saveopts.py + - -rwxr-xr-x 0 0 0 6808 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/sdist.py + - -rwxr-xr-x 0 0 0 5018 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/setopt.py + - -rwxr-xr-x 0 0 0 8104 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/test.py + - -rwxr-xr-x 0 0 0 460 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/upload.py + - -rwxr-xr-x 0 0 0 7821 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/upload_docs.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/compat/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/compat/__init__.py + - -rwxr-xr-x 0 0 0 165 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/compat/py310.py + - -rwxr-xr-x 0 0 0 735 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/compat/py311.py + - -rwxr-xr-x 0 0 0 493 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/compat/py39.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/ + - -rwxr-xr-x 0 0 0 1499 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/__init__.py + - -rwxr-xr-x 0 0 0 14700 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_apply_pyprojecttoml.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/ + - -rwxr-xr-x 0 0 0 1042 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/__init__.py + - -rwxr-xr-x 0 0 0 11862 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/error_reporting.py + - -rwxr-xr-x 0 0 0 1625 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/extra_validations.py + - -rwxr-xr-x 0 0 0 1612 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py + - -rwxr-xr-x 0 0 0 295453 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py + - -rwxr-xr-x 0 0 0 12062 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/formats.py + - -rwxr-xr-x 0 0 0 15527 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/expand.py + - -rwxr-xr-x 0 0 0 17653 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/pyprojecttoml.py + - -rwxr-xr-x 0 0 0 25592 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/setupcfg.py + - -rwxr-xr-x 0 0 0 5551 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/depends.py + - -rwxr-xr-x 0 0 0 21124 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/discovery.py + - -rwxr-xr-x 0 0 0 37933 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/dist.py + - -rwxr-xr-x 0 0 0 2669 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/errors.py + - -rwxr-xr-x 0 0 0 5794 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/extension.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/extern/ + - -rwxr-xr-x 0 0 0 2728 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/extern/__init__.py + - -rwxr-xr-x 0 0 0 4852 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/glob.py + - -rwxr-xr-x 0 0 0 11776 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/gui-32.exe + - -rwxr-xr-x 0 0 0 14336 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/gui-64.exe + - -rwxr-xr-x 0 0 0 13824 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/gui-arm64.exe + - -rwxr-xr-x 0 0 0 11776 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/gui.exe + - -rwxr-xr-x 0 0 0 4969 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/installer.py + - -rwxr-xr-x 0 0 0 812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/launch.py + - -rwxr-xr-x 0 0 0 1239 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/logging.py + - -rwxr-xr-x 0 0 0 190 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/modified.py + - -rwxr-xr-x 0 0 0 4333 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/monkey.py + - -rwxr-xr-x 0 0 0 47532 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/msvc.py + - -rwxr-xr-x 0 0 0 3128 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/namespaces.py + - -rwxr-xr-x 0 0 0 39081 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/package_index.py + - -rwxr-xr-x 0 0 0 14730 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/sandbox.py + - -rwxr-xr-x 0 0 0 218 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/script (dev).tmpl + - -rwxr-xr-x 0 0 0 138 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/script.tmpl + - -rwxr-xr-x 0 0 0 3181 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/unicode_utils.py + - -rwxr-xr-x 0 0 0 161 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/version.py + - -rwxr-xr-x 0 0 0 3699 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/warnings.py + - -rwxr-xr-x 0 0 0 8682 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/wheel.py + - -rwxr-xr-x 0 0 0 720 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/windows_support.py + - -rwxr-xr-x 0 0 0 21844 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/site.py + - -rwxr-xr-x 0 0 0 34823 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/smtpd.py + - -rwxr-xr-x 0 0 0 45407 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/smtplib.py + - -rwxr-xr-x 0 0 0 7099 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/sndhdr.py + - -rwxr-xr-x 0 0 0 36915 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/socket.py + - -rwxr-xr-x 0 0 0 27296 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/socketserver.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/sqlite3/ + - -rwxr-xr-x 0 0 0 2014 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/sqlite3/__init__.py + - -rwxr-xr-x 0 0 0 2687 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/sqlite3/dbapi2.py + - -rwxr-xr-x 0 0 0 2825 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/sqlite3/dump.py + - -rwxr-xr-x 0 0 0 27973 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/sre_compile.py + - -rwxr-xr-x 0 0 0 7177 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/sre_constants.py + - -rwxr-xr-x 0 0 0 40779 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/sre_parse.py + - -rwxr-xr-x 0 0 0 52530 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/ssl.py + - -rwxr-xr-x 0 0 0 5485 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/stat.py + - -rwxr-xr-x 0 0 0 38067 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/statistics.py + - -rwxr-xr-x 0 0 0 10566 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/string.py + - -rwxr-xr-x 0 0 0 12917 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/stringprep.py + - -rwxr-xr-x 0 0 0 257 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/struct.py + - -rwxr-xr-x 0 0 0 83564 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/subprocess.py + - -rwxr-xr-x 0 0 0 18158 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/sunau.py + - -rwxr-xr-x 0 0 0 2281 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/symbol.py + - -rwxr-xr-x 0 0 0 7905 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/symtable.py + - -rwxr-xr-x 0 0 0 24914 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/sysconfig.py + - -rwxr-xr-x 0 0 0 11408 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/tabnanny.py + - -rwxr-xr-x 0 0 0 106881 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/tarfile.py + - -rwxr-xr-x 0 0 0 23254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/telnetlib.py + - -rwxr-xr-x 0 0 0 27963 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/tempfile.py + - -rwxr-xr-x 0 0 0 19407 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/textwrap.py + - -rwxr-xr-x 0 0 0 1003 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/this.py + - -rwxr-xr-x 0 0 0 54176 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/threading.py + - -rwxr-xr-x 0 0 0 13482 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/timeit.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/ + - -rwxr-xr-x 0 0 0 169626 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/__init__.py + - -rwxr-xr-x 0 0 0 148 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/__main__.py + - -rwxr-xr-x 0 0 0 2660 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/colorchooser.py + - -rwxr-xr-x 0 0 0 1245 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/commondialog.py + - -rwxr-xr-x 0 0 0 1493 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/constants.py + - -rwxr-xr-x 0 0 0 1543 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/dialog.py + - -rwxr-xr-x 0 0 0 11528 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/dnd.py + - -rwxr-xr-x 0 0 0 14947 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/filedialog.py + - -rwxr-xr-x 0 0 0 6821 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/font.py + - -rwxr-xr-x 0 0 0 3861 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/messagebox.py + - -rwxr-xr-x 0 0 0 1816 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/scrolledtext.py + - -rwxr-xr-x 0 0 0 11757 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/simpledialog.py + - -rwxr-xr-x 0 0 0 76845 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/tix.py + - -rwxr-xr-x 0 0 0 57139 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/tkinter/ttk.py + - -rwxr-xr-x 0 0 0 2368 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/token.py + - -rwxr-xr-x 0 0 0 25883 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/tokenize.py + - -rwxr-xr-x 0 0 0 29208 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/trace.py + - -rwxr-xr-x 0 0 0 24660 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/traceback.py + - -rwxr-xr-x 0 0 0 18047 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/tracemalloc.py + - -rwxr-xr-x 0 0 0 879 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/tty.py + - -rwxr-xr-x 0 0 0 143796 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/turtle.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/ + - -rwxr-xr-x 0 0 0 314 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/__init__.py + - -rwxr-xr-x 0 0 0 15050 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/__main__.py + - -rwxr-xr-x 0 0 0 4248 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/bytedesign.py + - -rwxr-xr-x 0 0 0 951 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/chaos.py + - -rwxr-xr-x 0 0 0 3201 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/clock.py + - -rwxr-xr-x 0 0 0 1339 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/colormixer.py + - -rwxr-xr-x 0 0 0 2966 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/forest.py + - -rwxr-xr-x 0 0 0 3473 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/fractalcurves.py + - -rwxr-xr-x 0 0 0 2434 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/lindenmayer.py + - -rwxr-xr-x 0 0 0 2051 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/minimal_hanoi.py + - -rwxr-xr-x 0 0 0 6513 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/nim.py + - -rwxr-xr-x 0 0 0 1291 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/paint.py + - -rwxr-xr-x 0 0 0 1066 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/peace.py + - -rwxr-xr-x 0 0 0 3380 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/penrose.py + - -rwxr-xr-x 0 0 0 2825 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/planet_and_moon.py + - -rwxr-xr-x 0 0 0 1361 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/rosette.py + - -rwxr-xr-x 0 0 0 1804 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/round_dance.py + - -rwxr-xr-x 0 0 0 5052 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/sorting_animate.py + - -rwxr-xr-x 0 0 0 1401 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/tree.py + - -rwxr-xr-x 0 0 0 160 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/turtle.cfg + - -rwxr-xr-x 0 0 0 1119 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/two_canvases.py + - -rwxr-xr-x 0 0 0 821 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/turtledemo/yinyang.py + - -rwxr-xr-x 0 0 0 9785 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/types.py + - -rwxr-xr-x 0 0 0 77044 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/typing.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/unittest/ + - -rwxr-xr-x 0 0 0 3761 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/unittest/__init__.py + - -rwxr-xr-x 0 0 0 472 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/unittest/__main__.py + - -rwxr-xr-x 0 0 0 2295 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/unittest/_log.py + - -rwxr-xr-x 0 0 0 6368 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/unittest/async_case.py + - -rwxr-xr-x 0 0 0 57155 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/unittest/case.py + - -rwxr-xr-x 0 0 0 22702 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/unittest/loader.py + - -rwxr-xr-x 0 0 0 11256 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/unittest/main.py + - -rwxr-xr-x 0 0 0 99217 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/unittest/mock.py + - -rwxr-xr-x 0 0 0 8364 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/unittest/result.py + - -rwxr-xr-x 0 0 0 8051 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/unittest/runner.py + - -rwxr-xr-x 0 0 0 2403 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/unittest/signals.py + - -rwxr-xr-x 0 0 0 13512 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/unittest/suite.py + - -rwxr-xr-x 0 0 0 5215 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/unittest/util.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/urllib/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/urllib/__init__.py + - -rwxr-xr-x 0 0 0 2632 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/urllib/error.py + - -rwxr-xr-x 0 0 0 43064 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/urllib/parse.py + - -rwxr-xr-x 0 0 0 101306 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/urllib/request.py + - -rwxr-xr-x 0 0 0 2361 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/urllib/response.py + - -rwxr-xr-x 0 0 0 9424 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/urllib/robotparser.py + - -rwxr-xr-x 0 0 0 7301 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/uu.py + - -rwxr-xr-x 0 0 0 27324 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/uuid.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/venv/ + - -rwxr-xr-x 0 0 0 23213 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/venv/__init__.py + - -rwxr-xr-x 0 0 0 145 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/venv/__main__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/venv/scripts/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/venv/scripts/common/ + - -rwxr-xr-x 0 0 0 8834 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/venv/scripts/common/Activate.ps1 + - -rwxr-xr-x 0 0 0 1909 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/venv/scripts/common/activate + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/venv/scripts/posix/ + - -rwxr-xr-x 0 0 0 858 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/venv/scripts/posix/activate.csh + - -rwxr-xr-x 0 0 0 1998 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/venv/scripts/posix/activate.fish + - -rwxr-xr-x 0 0 0 19688 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/warnings.py + - -rwxr-xr-x 0 0 0 18004 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/wave.py + - -rwxr-xr-x 0 0 0 21560 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/weakref.py + - -rwxr-xr-x 0 0 0 24085 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/webbrowser.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/wsgiref/ + - -rwxr-xr-x 0 0 0 587 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/wsgiref/__init__.py + - -rwxr-xr-x 0 0 0 21669 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/wsgiref/handlers.py + - -rwxr-xr-x 0 0 0 6766 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/wsgiref/headers.py + - -rwxr-xr-x 0 0 0 5171 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/wsgiref/simple_server.py + - -rwxr-xr-x 0 0 0 5851 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/wsgiref/util.py + - -rwxr-xr-x 0 0 0 15099 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/wsgiref/validate.py + - -rwxr-xr-x 0 0 0 5913 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xdrlib.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/ + - -rwxr-xr-x 0 0 0 557 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/dom/ + - -rwxr-xr-x 0 0 0 936 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/dom/NodeFilter.py + - -rwxr-xr-x 0 0 0 4019 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/dom/__init__.py + - -rwxr-xr-x 0 0 0 3451 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/dom/domreg.py + - -rwxr-xr-x 0 0 0 35767 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/dom/expatbuilder.py + - -rwxr-xr-x 0 0 0 3367 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/dom/minicompat.py + - -rwxr-xr-x 0 0 0 68066 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/dom/minidom.py + - -rwxr-xr-x 0 0 0 11997 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/dom/pulldom.py + - -rwxr-xr-x 0 0 0 12387 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/dom/xmlbuilder.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/etree/ + - -rwxr-xr-x 0 0 0 6882 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/etree/ElementInclude.py + - -rwxr-xr-x 0 0 0 13063 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/etree/ElementPath.py + - -rwxr-xr-x 0 0 0 74404 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/etree/ElementTree.py + - -rwxr-xr-x 0 0 0 1605 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/etree/__init__.py + - -rwxr-xr-x 0 0 0 82 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/etree/cElementTree.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/parsers/ + - -rwxr-xr-x 0 0 0 167 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/parsers/__init__.py + - -rwxr-xr-x 0 0 0 248 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/parsers/expat.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/sax/ + - -rwxr-xr-x 0 0 0 3642 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/sax/__init__.py + - -rwxr-xr-x 0 0 0 4785 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/sax/_exceptions.py + - -rwxr-xr-x 0 0 0 16211 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/sax/expatreader.py + - -rwxr-xr-x 0 0 0 13922 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/sax/handler.py + - -rwxr-xr-x 0 0 0 12255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/sax/saxutils.py + - -rwxr-xr-x 0 0 0 12684 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xml/sax/xmlreader.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xmlrpc/ + - -rwxr-xr-x 0 0 0 38 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xmlrpc/__init__.py + - -rwxr-xr-x 0 0 0 49391 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xmlrpc/client.py + - -rwxr-xr-x 0 0 0 36672 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/xmlrpc/server.py + - -rwxr-xr-x 0 0 0 7535 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/zipapp.py + - -rwxr-xr-x 0 0 0 88240 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/zipfile.py + - -rwxr-xr-x 0 0 0 30765 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/zipimport.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/zoneinfo/ + - -rwxr-xr-x 0 0 0 703 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/zoneinfo/__init__.py + - -rwxr-xr-x 0 0 0 5320 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/zoneinfo/_common.py + - -rwxr-xr-x 0 0 0 5081 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/zoneinfo/_tzpath.py + - -rwxr-xr-x 0 0 0 24318 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/python3.9/zoneinfo/_zoneinfo.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/ + - -rwxr-xr-x 0 0 0 20875 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/auto.tcl + - -rwxr-xr-x 0 0 0 128893 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/clock.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/ + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/ascii.enc + - -rwxr-xr-x 0 0 0 92873 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/big5.enc + - -rwxr-xr-x 0 0 0 97050 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cns11643.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1250.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1251.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1252.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1253.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1254.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1255.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1256.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1257.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1258.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp437.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp737.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp775.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp850.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp852.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp855.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp857.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp860.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp861.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp862.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp863.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp864.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp865.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp866.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp869.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp874.enc + - -rwxr-xr-x 0 0 0 48207 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp932.enc + - -rwxr-xr-x 0 0 0 132509 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp936.enc + - -rwxr-xr-x 0 0 0 130423 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp949.enc + - -rwxr-xr-x 0 0 0 91831 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/cp950.enc + - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/dingbats.enc + - -rwxr-xr-x 0 0 0 1054 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/ebcdic.enc + - -rwxr-xr-x 0 0 0 85574 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/euc-cn.enc + - -rwxr-xr-x 0 0 0 82537 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/euc-jp.enc + - -rwxr-xr-x 0 0 0 93918 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/euc-kr.enc + - -rwxr-xr-x 0 0 0 86619 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/gb12345.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/gb1988.enc + - -rwxr-xr-x 0 0 0 84532 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/gb2312-raw.enc + - -rwxr-xr-x 0 0 0 85574 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/gb2312.enc + - -rwxr-xr-x 0 0 0 192 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso2022-jp.enc + - -rwxr-xr-x 0 0 0 115 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso2022-kr.enc + - -rwxr-xr-x 0 0 0 226 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso2022.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-1.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-10.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-11.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-13.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-14.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-15.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-16.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-2.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-3.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-4.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-5.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-6.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-7.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-8.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-9.enc + - -rwxr-xr-x 0 0 0 1092 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/jis0201.enc + - -rwxr-xr-x 0 0 0 80453 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/jis0208.enc + - -rwxr-xr-x 0 0 0 70974 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/jis0212.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/koi8-r.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/koi8-u.enc + - -rwxr-xr-x 0 0 0 92877 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/ksc5601.enc + - -rwxr-xr-x 0 0 0 1096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/macCentEuro.enc + - -rwxr-xr-x 0 0 0 1096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/macCroatian.enc + - -rwxr-xr-x 0 0 0 1096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/macCyrillic.enc + - -rwxr-xr-x 0 0 0 1096 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/macDingbats.enc + - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/macGreek.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/macIceland.enc + - -rwxr-xr-x 0 0 0 48028 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/macJapan.enc + - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/macRoman.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/macRomania.enc + - -rwxr-xr-x 0 0 0 1092 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/macThai.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/macTurkish.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/macUkraine.enc + - -rwxr-xr-x 0 0 0 41862 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/shiftjis.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/symbol.enc + - -rwxr-xr-x 0 0 0 1092 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/encoding/tis-620.enc + - -rwxr-xr-x 0 0 0 7900 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/history.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/http1.0/ + - -rwxr-xr-x 0 0 0 9689 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/http1.0/http.tcl + - -rwxr-xr-x 0 0 0 735 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/http1.0/pkgIndex.tcl + - -rwxr-xr-x 0 0 0 24806 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/init.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ + - -rwxr-xr-x 0 0 0 989 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/af.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/af_za.msg + - -rwxr-xr-x 0 0 0 1964 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ar.msg + - -rwxr-xr-x 0 0 0 259 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ar_in.msg + - -rwxr-xr-x 0 0 0 1812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ar_jo.msg + - -rwxr-xr-x 0 0 0 1812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ar_lb.msg + - -rwxr-xr-x 0 0 0 1812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ar_sy.msg + - -rwxr-xr-x 0 0 0 2105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/be.msg + - -rwxr-xr-x 0 0 0 1819 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/bg.msg + - -rwxr-xr-x 0 0 0 2286 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/bn.msg + - -rwxr-xr-x 0 0 0 259 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/bn_in.msg + - -rwxr-xr-x 0 0 0 1102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ca.msg + - -rwxr-xr-x 0 0 0 1300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/cs.msg + - -rwxr-xr-x 0 0 0 1156 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/da.msg + - -rwxr-xr-x 0 0 0 1222 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/de.msg + - -rwxr-xr-x 0 0 0 812 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/de_at.msg + - -rwxr-xr-x 0 0 0 1223 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/de_be.msg + - -rwxr-xr-x 0 0 0 2252 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/el.msg + - -rwxr-xr-x 0 0 0 300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_au.msg + - -rwxr-xr-x 0 0 0 305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_be.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_bw.msg + - -rwxr-xr-x 0 0 0 288 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_ca.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_gb.msg + - -rwxr-xr-x 0 0 0 321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_hk.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_ie.msg + - -rwxr-xr-x 0 0 0 310 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_in.msg + - -rwxr-xr-x 0 0 0 300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_nz.msg + - -rwxr-xr-x 0 0 0 321 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_ph.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_sg.msg + - -rwxr-xr-x 0 0 0 245 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_za.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/en_zw.msg + - -rwxr-xr-x 0 0 0 1231 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/eo.msg + - -rwxr-xr-x 0 0 0 1180 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es.msg + - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_ar.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_bo.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_cl.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_co.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_cr.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_do.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_ec.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_gt.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_hn.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_mx.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_ni.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_pa.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_pe.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_pr.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_py.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_sv.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_uy.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/es_ve.msg + - -rwxr-xr-x 0 0 0 1206 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/et.msg + - -rwxr-xr-x 0 0 0 985 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/eu.msg + - -rwxr-xr-x 0 0 0 287 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/eu_es.msg + - -rwxr-xr-x 0 0 0 1664 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/fa.msg + - -rwxr-xr-x 0 0 0 1957 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/fa_in.msg + - -rwxr-xr-x 0 0 0 417 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/fa_ir.msg + - -rwxr-xr-x 0 0 0 1145 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/fi.msg + - -rwxr-xr-x 0 0 0 986 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/fo.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/fo_fo.msg + - -rwxr-xr-x 0 0 0 1205 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/fr.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/fr_be.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/fr_ca.msg + - -rwxr-xr-x 0 0 0 281 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/fr_ch.msg + - -rwxr-xr-x 0 0 0 1141 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ga.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ga_ie.msg + - -rwxr-xr-x 0 0 0 950 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/gl.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/gl_es.msg + - -rwxr-xr-x 0 0 0 1037 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/gv.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/gv_gb.msg + - -rwxr-xr-x 0 0 0 1938 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/he.msg + - -rwxr-xr-x 0 0 0 1738 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/hi.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/hi_in.msg + - -rwxr-xr-x 0 0 0 1121 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/hr.msg + - -rwxr-xr-x 0 0 0 1327 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/hu.msg + - -rwxr-xr-x 0 0 0 914 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/id.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/id_id.msg + - -rwxr-xr-x 0 0 0 1255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/is.msg + - -rwxr-xr-x 0 0 0 1240 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/it.msg + - -rwxr-xr-x 0 0 0 244 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/it_ch.msg + - -rwxr-xr-x 0 0 0 1645 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ja.msg + - -rwxr-xr-x 0 0 0 978 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/kl.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/kl_gl.msg + - -rwxr-xr-x 0 0 0 1566 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ko.msg + - -rwxr-xr-x 0 0 0 346 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ko_kr.msg + - -rwxr-xr-x 0 0 0 1958 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/kok.msg + - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/kok_in.msg + - -rwxr-xr-x 0 0 0 966 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/kw.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/kw_gb.msg + - -rwxr-xr-x 0 0 0 1255 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/lt.msg + - -rwxr-xr-x 0 0 0 1219 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/lv.msg + - -rwxr-xr-x 0 0 0 2105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/mk.msg + - -rwxr-xr-x 0 0 0 1807 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/mr.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/mr_in.msg + - -rwxr-xr-x 0 0 0 910 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ms.msg + - -rwxr-xr-x 0 0 0 259 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ms_my.msg + - -rwxr-xr-x 0 0 0 690 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/mt.msg + - -rwxr-xr-x 0 0 0 1157 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/nb.msg + - -rwxr-xr-x 0 0 0 1079 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/nl.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/nl_be.msg + - -rwxr-xr-x 0 0 0 1148 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/nn.msg + - -rwxr-xr-x 0 0 0 1211 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/pl.msg + - -rwxr-xr-x 0 0 0 1127 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/pt.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/pt_br.msg + - -rwxr-xr-x 0 0 0 1172 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ro.msg + - -rwxr-xr-x 0 0 0 2039 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ru.msg + - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ru_ua.msg + - -rwxr-xr-x 0 0 0 1160 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/sh.msg + - -rwxr-xr-x 0 0 0 1203 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/sk.msg + - -rwxr-xr-x 0 0 0 1164 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/sl.msg + - -rwxr-xr-x 0 0 0 1267 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/sq.msg + - -rwxr-xr-x 0 0 0 2035 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/sr.msg + - -rwxr-xr-x 0 0 0 1167 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/sv.msg + - -rwxr-xr-x 0 0 0 991 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/sw.msg + - -rwxr-xr-x 0 0 0 1835 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ta.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/ta_in.msg + - -rwxr-xr-x 0 0 0 2102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/te.msg + - -rwxr-xr-x 0 0 0 411 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/te_in.msg + - -rwxr-xr-x 0 0 0 2305 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/th.msg + - -rwxr-xr-x 0 0 0 1133 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/tr.msg + - -rwxr-xr-x 0 0 0 2113 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/uk.msg + - -rwxr-xr-x 0 0 0 1421 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/vi.msg + - -rwxr-xr-x 0 0 0 3330 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/zh.msg + - -rwxr-xr-x 0 0 0 312 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/zh_cn.msg + - -rwxr-xr-x 0 0 0 752 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/zh_hk.msg + - -rwxr-xr-x 0 0 0 339 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/zh_sg.msg + - -rwxr-xr-x 0 0 0 346 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/msgs/zh_tw.msg + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/opt0.4/ + - -rwxr-xr-x 0 0 0 32705 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/opt0.4/optparse.tcl + - -rwxr-xr-x 0 0 0 608 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/opt0.4/pkgIndex.tcl + - -rwxr-xr-x 0 0 0 23244 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/package.tcl + - -rwxr-xr-x 0 0 0 816 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/parray.tcl + - -rwxr-xr-x 0 0 0 40934 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/safe.tcl + - -rwxr-xr-x 0 0 0 4511 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/tclAppInit.c + - -rwxr-xr-x 0 0 0 5539 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/tclIndex + - -rwxr-xr-x 0 0 0 11824 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/tm.tcl + - -rwxr-xr-x 0 0 0 4876 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8.6/word.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8/8.4/ + - -rwxr-xr-x 0 0 0 10984 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8/8.4/platform-1.0.18.tm + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8/8.4/platform/ + - -rwxr-xr-x 0 0 0 5977 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8/8.4/platform/shell-1.1.4.tm + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8/8.5/ + - -rwxr-xr-x 0 0 0 33926 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8/8.5/msgcat-1.6.1.tm + - -rwxr-xr-x 0 0 0 103526 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8/8.5/tcltest-2.5.3.tm + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8/8.6/ + - -rwxr-xr-x 0 0 0 111709 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tcl8/8.6/http-2.9.5.tm + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/thread2.8.7/ + - -rwxr-xr-x 0 0 0 29530 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/thread2.8.7/ttrace.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ + - -rwxr-xr-x 0 0 0 8534 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/bgerror.tcl + - -rwxr-xr-x 0 0 0 20830 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/button.tcl + - -rwxr-xr-x 0 0 0 9652 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/choosedir.tcl + - -rwxr-xr-x 0 0 0 21417 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/clrpick.tcl + - -rwxr-xr-x 0 0 0 8368 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/comdlg.tcl + - -rwxr-xr-x 0 0 0 32792 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/console.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/ + - -rwxr-xr-x 0 0 0 2082 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/README + - -rwxr-xr-x 0 0 0 6670 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/anilabel.tcl + - -rwxr-xr-x 0 0 0 3494 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/aniwave.tcl + - -rwxr-xr-x 0 0 0 8110 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/arrow.tcl + - -rwxr-xr-x 0 0 0 3078 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/bind.tcl + - -rwxr-xr-x 0 0 0 1411 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/bitmap.tcl + - -rwxr-xr-x 0 0 0 1758 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/browse + - -rwxr-xr-x 0 0 0 1504 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/button.tcl + - -rwxr-xr-x 0 0 0 2278 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/check.tcl + - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/clrpick.tcl + - -rwxr-xr-x 0 0 0 5002 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/colors.tcl + - -rwxr-xr-x 0 0 0 1963 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/combo.tcl + - -rwxr-xr-x 0 0 0 5036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/cscroll.tcl + - -rwxr-xr-x 0 0 0 6205 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/ctext.tcl + - -rwxr-xr-x 0 0 0 974 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/dialog1.tcl + - -rwxr-xr-x 0 0 0 828 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/dialog2.tcl + - -rwxr-xr-x 0 0 0 3867 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/en.msg + - -rwxr-xr-x 0 0 0 1401 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/entry1.tcl + - -rwxr-xr-x 0 0 0 2091 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/entry2.tcl + - -rwxr-xr-x 0 0 0 6102 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/entry3.tcl + - -rwxr-xr-x 0 0 0 2351 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/filebox.tcl + - -rwxr-xr-x 0 0 0 79803 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/floor.tcl + - -rwxr-xr-x 0 0 0 1710 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/fontchoose.tcl + - -rwxr-xr-x 0 0 0 1046 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/form.tcl + - -rwxr-xr-x 0 0 0 56598 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/goldberg.tcl + - -rwxr-xr-x 0 0 0 512 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/hello + - -rwxr-xr-x 0 0 0 1497 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/hscale.tcl + - -rwxr-xr-x 0 0 0 2063 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/icon.tcl + - -rwxr-xr-x 0 0 0 1002 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/image1.tcl + - -rwxr-xr-x 0 0 0 3359 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/image2.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/ + - -rwxr-xr-x 0 0 0 51712 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/earth.gif + - -rwxr-xr-x 0 0 0 8157 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/earthmenu.png + - -rwxr-xr-x 0 0 0 6343 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/earthris.gif + - -rwxr-xr-x 0 0 0 1886 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/flagdown.xbm + - -rwxr-xr-x 0 0 0 1880 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/flagup.xbm + - -rwxr-xr-x 0 0 0 275 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/gray25.xbm + - -rwxr-xr-x 0 0 0 1883 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/letters.xbm + - -rwxr-xr-x 0 0 0 1889 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/noletter.xbm + - -rwxr-xr-x 0 0 0 54257 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/ouster.png + - -rwxr-xr-x 0 0 0 272 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/pattern.xbm + - -rwxr-xr-x 0 0 0 2341 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/tcllogo.gif + - -rwxr-xr-x 0 0 0 196623 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/images/teapot.ppm + - -rwxr-xr-x 0 0 0 10490 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/items.tcl + - -rwxr-xr-x 0 0 0 8075 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/ixset + - -rwxr-xr-x 0 0 0 9123 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/knightstour.tcl + - -rwxr-xr-x 0 0 0 1379 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/label.tcl + - -rwxr-xr-x 0 0 0 1847 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/labelframe.tcl + - -rwxr-xr-x 0 0 0 2267 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/license.terms + - -rwxr-xr-x 0 0 0 4357 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/mclist.tcl + - -rwxr-xr-x 0 0 0 7479 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/menu.tcl + - -rwxr-xr-x 0 0 0 4476 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/menubu.tcl + - -rwxr-xr-x 0 0 0 1998 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/msgbox.tcl + - -rwxr-xr-x 0 0 0 6750 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/nl.msg + - -rwxr-xr-x 0 0 0 1130 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/paned1.tcl + - -rwxr-xr-x 0 0 0 2244 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/paned2.tcl + - -rwxr-xr-x 0 0 0 7623 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/pendulum.tcl + - -rwxr-xr-x 0 0 0 2757 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/plot.tcl + - -rwxr-xr-x 0 0 0 2602 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/puzzle.tcl + - -rwxr-xr-x 0 0 0 2752 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/radio.tcl + - -rwxr-xr-x 0 0 0 5319 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/rmt + - -rwxr-xr-x 0 0 0 8300 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/rolodex + - -rwxr-xr-x 0 0 0 5333 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/ruler.tcl + - -rwxr-xr-x 0 0 0 2273 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/sayings.tcl + - -rwxr-xr-x 0 0 0 4403 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/search.tcl + - -rwxr-xr-x 0 0 0 1820 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/spin.tcl + - -rwxr-xr-x 0 0 0 2048 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/states.tcl + - -rwxr-xr-x 0 0 0 6943 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/style.tcl + - -rwxr-xr-x 0 0 0 5298 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/tclIndex + - -rwxr-xr-x 0 0 0 11253 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/tcolor + - -rwxr-xr-x 0 0 0 4291 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/text.tcl + - -rwxr-xr-x 0 0 0 2188 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/textpeer.tcl + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/timer + - -rwxr-xr-x 0 0 0 3272 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/toolbar.tcl + - -rwxr-xr-x 0 0 0 3178 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/tree.tcl + - -rwxr-xr-x 0 0 0 3405 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/ttkbut.tcl + - -rwxr-xr-x 0 0 0 2391 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/ttkmenu.tcl + - -rwxr-xr-x 0 0 0 2317 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/ttknote.tcl + - -rwxr-xr-x 0 0 0 4177 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/ttkpane.tcl + - -rwxr-xr-x 0 0 0 1536 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/ttkprogress.tcl + - -rwxr-xr-x 0 0 0 1420 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/ttkscale.tcl + - -rwxr-xr-x 0 0 0 11654 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/twind.tcl + - -rwxr-xr-x 0 0 0 4706 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/unicodeout.tcl + - -rwxr-xr-x 0 0 0 1477 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/vscale.tcl + - -rwxr-xr-x 0 0 0 24063 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/demos/widget + - -rwxr-xr-x 0 0 0 5813 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/dialog.tcl + - -rwxr-xr-x 0 0 0 17715 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/entry.tcl + - -rwxr-xr-x 0 0 0 4857 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/focus.tcl + - -rwxr-xr-x 0 0 0 16011 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/fontchooser.tcl + - -rwxr-xr-x 0 0 0 16704 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/iconlist.tcl + - -rwxr-xr-x 0 0 0 10884 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/icons.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/images/ + - -rwxr-xr-x 0 0 0 322 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/images/README + - -rwxr-xr-x 0 0 0 32900 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/images/logo.eps + - -rwxr-xr-x 0 0 0 2341 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/images/logo100.gif + - -rwxr-xr-x 0 0 0 1670 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/images/logo64.gif + - -rwxr-xr-x 0 0 0 11000 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/images/logoLarge.gif + - -rwxr-xr-x 0 0 0 3889 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/images/logoMed.gif + - -rwxr-xr-x 0 0 0 27809 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo.eps + - -rwxr-xr-x 0 0 0 1615 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo100.gif + - -rwxr-xr-x 0 0 0 2489 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo150.gif + - -rwxr-xr-x 0 0 0 2981 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo175.gif + - -rwxr-xr-x 0 0 0 3491 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo200.gif + - -rwxr-xr-x 0 0 0 1171 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo75.gif + - -rwxr-xr-x 0 0 0 5473 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/images/tai-ku.gif + - -rwxr-xr-x 0 0 0 14695 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/listbox.tcl + - -rwxr-xr-x 0 0 0 9565 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/megawidget.tcl + - -rwxr-xr-x 0 0 0 38122 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/menu.tcl + - -rwxr-xr-x 0 0 0 29352 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/mkpsenc.tcl + - -rwxr-xr-x 0 0 0 16359 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/msgbox.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/ + - -rwxr-xr-x 0 0 0 4158 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/cs.msg + - -rwxr-xr-x 0 0 0 3909 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/da.msg + - -rwxr-xr-x 0 0 0 4823 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/de.msg + - -rwxr-xr-x 0 0 0 8698 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/el.msg + - -rwxr-xr-x 0 0 0 3286 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/en.msg + - -rwxr-xr-x 0 0 0 63 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/en_gb.msg + - -rwxr-xr-x 0 0 0 3916 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/eo.msg + - -rwxr-xr-x 0 0 0 3948 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/es.msg + - -rwxr-xr-x 0 0 0 3805 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/fr.msg + - -rwxr-xr-x 0 0 0 4600 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/hu.msg + - -rwxr-xr-x 0 0 0 3692 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/it.msg + - -rwxr-xr-x 0 0 0 4466 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/nl.msg + - -rwxr-xr-x 0 0 0 4841 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/pl.msg + - -rwxr-xr-x 0 0 0 3913 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/pt.msg + - -rwxr-xr-x 0 0 0 7214 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/ru.msg + - -rwxr-xr-x 0 0 0 3832 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/msgs/sv.msg + - -rwxr-xr-x 0 0 0 5594 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/obsolete.tcl + - -rwxr-xr-x 0 0 0 1586 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/optMenu.tcl + - -rwxr-xr-x 0 0 0 8174 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/palette.tcl + - -rwxr-xr-x 0 0 0 5176 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/panedwindow.tcl + - -rwxr-xr-x 0 0 0 7370 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/safetk.tcl + - -rwxr-xr-x 0 0 0 7766 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/scale.tcl + - -rwxr-xr-x 0 0 0 12732 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/scrlbar.tcl + - -rwxr-xr-x 0 0 0 15933 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/spinbox.tcl + - -rwxr-xr-x 0 0 0 20270 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/tclIndex + - -rwxr-xr-x 0 0 0 5125 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/tearoff.tcl + - -rwxr-xr-x 0 0 0 33724 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/text.tcl + - -rwxr-xr-x 0 0 0 23554 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/tk.tcl + - -rwxr-xr-x 0 0 0 4615 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/tkAppInit.c + - -rwxr-xr-x 0 0 0 38373 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/tkfbox.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/ + - -rwxr-xr-x 0 0 0 3604 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/altTheme.tcl + - -rwxr-xr-x 0 0 0 3719 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/aquaTheme.tcl + - -rwxr-xr-x 0 0 0 2931 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/button.tcl + - -rwxr-xr-x 0 0 0 4662 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/clamTheme.tcl + - -rwxr-xr-x 0 0 0 3749 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/classicTheme.tcl + - -rwxr-xr-x 0 0 0 12270 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/combobox.tcl + - -rwxr-xr-x 0 0 0 4619 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/cursors.tcl + - -rwxr-xr-x 0 0 0 4410 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/defaults.tcl + - -rwxr-xr-x 0 0 0 16985 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/entry.tcl + - -rwxr-xr-x 0 0 0 5575 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/fonts.tcl + - -rwxr-xr-x 0 0 0 6400 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/menubutton.tcl + - -rwxr-xr-x 0 0 0 5626 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/notebook.tcl + - -rwxr-xr-x 0 0 0 2199 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/panedwindow.tcl + - -rwxr-xr-x 0 0 0 1089 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/progress.tcl + - -rwxr-xr-x 0 0 0 2693 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/scale.tcl + - -rwxr-xr-x 0 0 0 3159 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/scrollbar.tcl + - -rwxr-xr-x 0 0 0 2401 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/sizegrip.tcl + - -rwxr-xr-x 0 0 0 4811 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/spinbox.tcl + - -rwxr-xr-x 0 0 0 9797 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/treeview.tcl + - -rwxr-xr-x 0 0 0 4817 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/ttk.tcl + - -rwxr-xr-x 0 0 0 8287 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/utils.tcl + - -rwxr-xr-x 0 0 0 9481 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/vistaTheme.tcl + - -rwxr-xr-x 0 0 0 2781 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/winTheme.tcl + - -rwxr-xr-x 0 0 0 2036 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/ttk/xpTheme.tcl + - -rwxr-xr-x 0 0 0 10252 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/unsupported.tcl + - -rwxr-xr-x 0 0 0 26075 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/lib/tk8.6/xmfbox.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/share/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/share/man/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/share/man/man1/ + - -rwxr-xr-x 0 0 0 18711 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/share/man/man1/python3.1 + - -rwxr-xr-x 0 0 0 18711 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_aarch64-unknown-linux-gnu/share/man/man1/python3.9.1 --- layer: 1 files: - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/ - - -rwxr-xr-x 0 0 0 328 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/_aspect.pth - - -rwxr-xr-x 0 0 0 19 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/_virtualenv.pth - - -rwxr-xr-x 0 0 0 4342 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/_virtualenv.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama-0.4.6.dist-info/ - - -rwxr-xr-x 0 0 0 42 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama-0.4.6.dist-info/INSTALLER - - -rwxr-xr-x 0 0 0 17158 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama-0.4.6.dist-info/METADATA - - -rwxr-xr-x 0 0 0 105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama-0.4.6.dist-info/WHEEL - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama-0.4.6.dist-info/licenses/ - - -rwxr-xr-x 0 0 0 1491 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama-0.4.6.dist-info/licenses/LICENSE.txt - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/ - - -rwxr-xr-x 0 0 0 266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/__init__.py - - -rwxr-xr-x 0 0 0 2522 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/ansi.py - - -rwxr-xr-x 0 0 0 11128 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/ansitowin32.py - - -rwxr-xr-x 0 0 0 3325 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/initialise.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/ - - -rwxr-xr-x 0 0 0 75 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/__init__.py - - -rwxr-xr-x 0 0 0 2839 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/ansi_test.py - - -rwxr-xr-x 0 0 0 10678 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/ansitowin32_test.py - - -rwxr-xr-x 0 0 0 6741 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/initialise_test.py - - -rwxr-xr-x 0 0 0 1866 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/isatty_test.py - - -rwxr-xr-x 0 0 0 1079 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/utils.py - - -rwxr-xr-x 0 0 0 3709 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/winterm_test.py - - -rwxr-xr-x 0 0 0 6181 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/win32.py - - -rwxr-xr-x 0 0 0 7134 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/winterm.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/ - - -rwxr-xr-x 0 0 0 149 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama-0.4.6.dist-info/ - - -rwxr-xr-x 0 0 0 42 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama-0.4.6.dist-info/INSTALLER - - -rwxr-xr-x 0 0 0 17158 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama-0.4.6.dist-info/METADATA - - -rwxr-xr-x 0 0 0 105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama-0.4.6.dist-info/WHEEL - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama-0.4.6.dist-info/licenses/ - - -rwxr-xr-x 0 0 0 1491 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama-0.4.6.dist-info/licenses/LICENSE.txt - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/ - - -rwxr-xr-x 0 0 0 266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/__init__.py - - -rwxr-xr-x 0 0 0 2522 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/ansi.py - - -rwxr-xr-x 0 0 0 11128 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/ansitowin32.py - - -rwxr-xr-x 0 0 0 3325 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/initialise.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/tests/ - - -rwxr-xr-x 0 0 0 75 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/tests/__init__.py - - -rwxr-xr-x 0 0 0 2839 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/tests/ansi_test.py - - -rwxr-xr-x 0 0 0 10678 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/tests/ansitowin32_test.py - - -rwxr-xr-x 0 0 0 6741 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/tests/initialise_test.py - - -rwxr-xr-x 0 0 0 1866 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/tests/isatty_test.py - - -rwxr-xr-x 0 0 0 1079 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/tests/utils.py - - -rwxr-xr-x 0 0 0 3709 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/tests/winterm_test.py - - -rwxr-xr-x 0 0 0 6181 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/win32.py - - -rwxr-xr-x 0 0 0 7134 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/winterm.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/ + - -rwxr-xr-x 0 0 0 298 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/_aspect.pth + - -rwxr-xr-x 0 0 0 19 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/_virtualenv.pth + - -rwxr-xr-x 0 0 0 4342 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/_virtualenv.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama-0.4.6.dist-info/ + - -rwxr-xr-x 0 0 0 42 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama-0.4.6.dist-info/INSTALLER + - -rwxr-xr-x 0 0 0 17158 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama-0.4.6.dist-info/METADATA + - -rwxr-xr-x 0 0 0 105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama-0.4.6.dist-info/WHEEL + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama-0.4.6.dist-info/licenses/ + - -rwxr-xr-x 0 0 0 1491 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama-0.4.6.dist-info/licenses/LICENSE.txt + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/ + - -rwxr-xr-x 0 0 0 266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/__init__.py + - -rwxr-xr-x 0 0 0 2522 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/ansi.py + - -rwxr-xr-x 0 0 0 11128 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/ansitowin32.py + - -rwxr-xr-x 0 0 0 3325 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/initialise.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/ + - -rwxr-xr-x 0 0 0 75 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/__init__.py + - -rwxr-xr-x 0 0 0 2839 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/ansi_test.py + - -rwxr-xr-x 0 0 0 10678 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/ansitowin32_test.py + - -rwxr-xr-x 0 0 0 6741 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/initialise_test.py + - -rwxr-xr-x 0 0 0 1866 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/isatty_test.py + - -rwxr-xr-x 0 0 0 1079 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/utils.py + - -rwxr-xr-x 0 0 0 3709 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/tests/winterm_test.py + - -rwxr-xr-x 0 0 0 6181 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/win32.py + - -rwxr-xr-x 0 0 0 7134 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/winterm.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/ + - -rwxr-xr-x 0 0 0 149 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama-0.4.6.dist-info/ + - -rwxr-xr-x 0 0 0 42 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama-0.4.6.dist-info/INSTALLER + - -rwxr-xr-x 0 0 0 17158 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama-0.4.6.dist-info/METADATA + - -rwxr-xr-x 0 0 0 105 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama-0.4.6.dist-info/WHEEL + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama-0.4.6.dist-info/licenses/ + - -rwxr-xr-x 0 0 0 1491 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama-0.4.6.dist-info/licenses/LICENSE.txt + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/ + - -rwxr-xr-x 0 0 0 266 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/__init__.py + - -rwxr-xr-x 0 0 0 2522 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/ansi.py + - -rwxr-xr-x 0 0 0 11128 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/ansitowin32.py + - -rwxr-xr-x 0 0 0 3325 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/initialise.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/tests/ + - -rwxr-xr-x 0 0 0 75 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/tests/__init__.py + - -rwxr-xr-x 0 0 0 2839 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/tests/ansi_test.py + - -rwxr-xr-x 0 0 0 10678 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/tests/ansitowin32_test.py + - -rwxr-xr-x 0 0 0 6741 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/tests/initialise_test.py + - -rwxr-xr-x 0 0 0 1866 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/tests/isatty_test.py + - -rwxr-xr-x 0 0 0 1079 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/tests/utils.py + - -rwxr-xr-x 0 0 0 3709 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/tests/winterm_test.py + - -rwxr-xr-x 0 0 0 6181 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/win32.py + - -rwxr-xr-x 0 0 0 7134 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/winterm.py --- layer: 2 files: - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/ - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/ - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/ - - -rwxr-xr-x 0 0 0 1275 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin + - -rwxr-xr-x 0 0 0 1245 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/internal-deps/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/internal-deps/adder/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/internal-deps/adder/__init__.py - - -rwxr-xr-x 0 0 0 32 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/internal-deps/adder/add.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_image_layer/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_image_layer/branding/ - - -rwxr-xr-x 0 0 0 42 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_image_layer/branding/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/bin/ - - -rwxr-xr-x 0 0 0 2853 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/bin/activate - - -rwxr-xr-x 0 0 0 726736 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/bin/python - - -rwxr-xr-x 0 0 0 726736 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/bin/python3 - - -rwxr-xr-x 0 0 0 726736 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/bin/python3.9 - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/ - - -rwxr-xr-x 0 0 0 344 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/pyvenv.cfg - - -rwxr-xr-x 0 0 0 299 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/__main__.py - - -rwxr-xr-x 0 0 0 1275 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/my_app_bin + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/internal-deps/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/internal-deps/adder/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/internal-deps/adder/__init__.py + - -rwxr-xr-x 0 0 0 32 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/internal-deps/adder/add.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_image_layer/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_image_layer/branding/ + - -rwxr-xr-x 0 0 0 42 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_image_layer/branding/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/bin/ + - -rwxr-xr-x 0 0 0 2843 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/bin/activate + - -rwxr-xr-x 0 0 0 5366048 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/bin/python + - -rwxr-xr-x 0 0 0 5366048 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/bin/python3 + - -rwxr-xr-x 0 0 0 5366048 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/bin/python3.9 + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/ + - -rwxr-xr-x 0 0 0 349 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/pyvenv.cfg + - -rwxr-xr-x 0 0 0 299 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/__main__.py + - -rwxr-xr-x 0 0 0 1245 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/my_app_bin - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/bazel_tools/ - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/bazel_tools/tools/ - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/bazel_tools/tools/bash/ - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/bazel_tools/tools/bash/runfiles/ - -rwxr-xr-x 0 0 0 21622 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/bazel_tools/tools/bash/runfiles/runfiles.bash - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/ diff --git a/py/tools/py/BUILD.bazel b/py/tools/py/BUILD.bazel index 0870be1a..10db5068 100644 --- a/py/tools/py/BUILD.bazel +++ b/py/tools/py/BUILD.bazel @@ -8,7 +8,7 @@ rust_library( "src/unpack.rs", "src/venv.rs", ], - data = [ + compile_data = [ "src/_virtualenv.py", "src/activate.tmpl", "src/pyvenv.cfg.tmpl", diff --git a/py/tools/venv_shim/BUILD.bazel b/py/tools/venv_shim/BUILD.bazel index f40a662e..779396cd 100644 --- a/py/tools/venv_shim/BUILD.bazel +++ b/py/tools/venv_shim/BUILD.bazel @@ -8,6 +8,7 @@ rust_binary( ], deps = [ "@crates//:miette", + "//py/tools/runfiles", ], ) From 0f09477111c66e30a31577160556b24a320547fe Mon Sep 17 00:00:00 2001 From: "Reid D. McKenzie" Date: Tue, 2 Sep 2025 22:47:12 -0600 Subject: [PATCH 4/9] [NO TESTS] WIP --- .../py_image_layer/my_app_layers_listing.yaml | 4957 +++++++++-------- py/tests/py_image_layer/py_image_test.yaml | 4 +- py/tests/py_venv_image_layer/__main__.py | 5 + .../my_app_amd64_layers_listing.yaml | 2 +- .../my_app_arm64_layers_listing.yaml | 2 +- .../py_amd64_image_content_test.yaml | 6 +- .../py_arm64_image_content_test.yaml | 6 +- .../py_image_command_test.yaml | 4 +- 8 files changed, 2498 insertions(+), 2488 deletions(-) diff --git a/py/tests/py_image_layer/my_app_layers_listing.yaml b/py/tests/py_image_layer/my_app_layers_listing.yaml index 257458ed..efd9f2ce 100644 --- a/py/tests/py_image_layer/my_app_layers_listing.yaml +++ b/py/tests/py_image_layer/my_app_layers_listing.yaml @@ -1,2469 +1,2472 @@ --- layer: 0 files: - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/ - - -rwxr-xr-x 0 0 0 127 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/2to3 - - -rwxr-xr-x 0 0 0 127 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/2to3-3.9 - - -rwxr-xr-x 0 0 0 125 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/idle3 - - -rwxr-xr-x 0 0 0 125 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/idle3.9 - - -rwxr-xr-x 0 0 0 255 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/pip - - -rwxr-xr-x 0 0 0 255 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/pip3 - - -rwxr-xr-x 0 0 0 255 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/pip3.9 - - -rwxr-xr-x 0 0 0 110 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/pydoc3 - - -rwxr-xr-x 0 0 0 110 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/pydoc3.9 - - -rwxr-xr-x 0 0 0 20960 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/python3 - - -rwxr-xr-x 0 0 0 3211 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/python3-config - - -rwxr-xr-x 0 0 0 20960 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/python3.9 - - -rwxr-xr-x 0 0 0 3211 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/python3.9-config - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/ - - -rwxr-xr-x 0 0 0 26193 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/Python-ast.h - - -rwxr-xr-x 0 0 0 3532 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/Python.h - - -rwxr-xr-x 0 0 0 30476 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/abstract.h - - -rwxr-xr-x 0 0 0 1224 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/asdl.h - - -rwxr-xr-x 0 0 0 947 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/ast.h - - -rwxr-xr-x 0 0 0 468 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/bitset.h - - -rwxr-xr-x 0 0 0 264 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/bltinmodule.h - - -rwxr-xr-x 0 0 0 885 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/boolobject.h - - -rwxr-xr-x 0 0 0 1484 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/bytearrayobject.h - - -rwxr-xr-x 0 0 0 3048 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/bytesobject.h - - -rwxr-xr-x 0 0 0 712 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cellobject.h - - -rwxr-xr-x 0 0 0 5954 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/ceval.h - - -rwxr-xr-x 0 0 0 1657 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/classobject.h - - -rwxr-xr-x 0 0 0 318 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/code.h - - -rwxr-xr-x 0 0 0 6793 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/codecs.h - - -rwxr-xr-x 0 0 0 3778 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/compile.h - - -rwxr-xr-x 0 0 0 1806 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/complexobject.h - - -rwxr-xr-x 0 0 0 1962 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/context.h - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/ - - -rwxr-xr-x 0 0 0 14200 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/abstract.h - - -rwxr-xr-x 0 0 0 769 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/bytearrayobject.h - - -rwxr-xr-x 0 0 0 4114 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/bytesobject.h - - -rwxr-xr-x 0 0 0 1537 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/ceval.h - - -rwxr-xr-x 0 0 0 6989 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/code.h - - -rwxr-xr-x 0 0 0 3797 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/dictobject.h - - -rwxr-xr-x 0 0 0 721 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/fileobject.h - - -rwxr-xr-x 0 0 0 4004 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/fileutils.h - - -rwxr-xr-x 0 0 0 3059 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/frameobject.h - - -rwxr-xr-x 0 0 0 1473 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/import.h - - -rwxr-xr-x 0 0 0 16979 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/initconfig.h - - -rwxr-xr-x 0 0 0 456 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/interpreteridobject.h - - -rwxr-xr-x 0 0 0 1364 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/listobject.h - - -rwxr-xr-x 0 0 0 1399 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/methodobject.h - - -rwxr-xr-x 0 0 0 19358 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/object.h - - -rwxr-xr-x 0 0 0 4456 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/objimpl.h - - -rwxr-xr-x 0 0 0 5101 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/pyerrors.h - - -rwxr-xr-x 0 0 0 2096 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/pylifecycle.h - - -rwxr-xr-x 0 0 0 3511 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/pymem.h - - -rwxr-xr-x 0 0 0 10134 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/pystate.h - - -rwxr-xr-x 0 0 0 575 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/sysmodule.h - - -rwxr-xr-x 0 0 0 473 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/traceback.h - - -rwxr-xr-x 0 0 0 1036 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/tupleobject.h - - -rwxr-xr-x 0 0 0 46154 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/cpython/unicodeobject.h - - -rwxr-xr-x 0 0 0 9255 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/datetime.h - - -rwxr-xr-x 0 0 0 3019 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/descrobject.h - - -rwxr-xr-x 0 0 0 3715 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/dictobject.h - - -rwxr-xr-x 0 0 0 22469 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/dynamic_annotations.h - - -rwxr-xr-x 0 0 0 253 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/enumobject.h - - -rwxr-xr-x 0 0 0 1624 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/errcode.h - - -rwxr-xr-x 0 0 0 1209 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/eval.h - - -rwxr-xr-x 0 0 0 1098 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/exports.h - - -rwxr-xr-x 0 0 0 1571 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/fileobject.h - - -rwxr-xr-x 0 0 0 597 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/fileutils.h - - -rwxr-xr-x 0 0 0 4360 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/floatobject.h - - -rwxr-xr-x 0 0 0 337 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/frameobject.h - - -rwxr-xr-x 0 0 0 4057 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/funcobject.h - - -rwxr-xr-x 0 0 0 334 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/genericaliasobject.h - - -rwxr-xr-x 0 0 0 3525 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/genobject.h - - -rwxr-xr-x 0 0 0 2118 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/graminit.h - - -rwxr-xr-x 0 0 0 1821 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/grammar.h - - -rwxr-xr-x 0 0 0 3026 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/import.h - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/ - - -rwxr-xr-x 0 0 0 953 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pegen_interface.h - - -rwxr-xr-x 0 0 0 479 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_abstract.h - - -rwxr-xr-x 0 0 0 1126 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_accu.h - - -rwxr-xr-x 0 0 0 16977 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_atomic.h - - -rwxr-xr-x 0 0 0 3384 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_bytes_methods.h - - -rwxr-xr-x 0 0 0 2620 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_byteswap.h - - -rwxr-xr-x 0 0 0 870 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_call.h - - -rwxr-xr-x 0 0 0 3403 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_ceval.h - - -rwxr-xr-x 0 0 0 541 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_code.h - - -rwxr-xr-x 0 0 0 2809 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_condvar.h - - -rwxr-xr-x 0 0 0 800 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_context.h - - -rwxr-xr-x 0 0 0 646 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_dtoa.h - - -rwxr-xr-x 0 0 0 1541 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_fileutils.h - - -rwxr-xr-x 0 0 0 6647 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_gc.h - - -rwxr-xr-x 0 0 0 490 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_getopt.h - - -rwxr-xr-x 0 0 0 1565 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_gil.h - - -rwxr-xr-x 0 0 0 3697 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_hamt.h - - -rwxr-xr-x 0 0 0 4197 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_hashtable.h - - -rwxr-xr-x 0 0 0 473 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_import.h - - -rwxr-xr-x 0 0 0 5233 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_initconfig.h - - -rwxr-xr-x 0 0 0 5299 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_interp.h - - -rwxr-xr-x 0 0 0 1548 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_long.h - - -rwxr-xr-x 0 0 0 4157 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_object.h - - -rwxr-xr-x 0 0 0 1936 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_pathconfig.h - - -rwxr-xr-x 0 0 0 2032 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_pyerrors.h - - -rwxr-xr-x 0 0 0 206 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_pyhash.h - - -rwxr-xr-x 0 0 0 3741 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_pylifecycle.h - - -rwxr-xr-x 0 0 0 3363 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_pymem.h - - -rwxr-xr-x 0 0 0 3583 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_pystate.h - - -rwxr-xr-x 0 0 0 4452 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_runtime.h - - -rwxr-xr-x 0 0 0 548 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_sysmodule.h - - -rwxr-xr-x 0 0 0 3056 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_traceback.h - - -rwxr-xr-x 0 0 0 442 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_tupleobject.h - - -rwxr-xr-x 0 0 0 633 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_warnings.h - - -rwxr-xr-x 0 0 0 334 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/interpreteridobject.h - - -rwxr-xr-x 0 0 0 861 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/intrcheck.h - - -rwxr-xr-x 0 0 0 521 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/iterobject.h - - -rwxr-xr-x 0 0 0 1781 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/listobject.h - - -rwxr-xr-x 0 0 0 3799 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/longintrepr.h - - -rwxr-xr-x 0 0 0 9513 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/longobject.h - - -rwxr-xr-x 0 0 0 803 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/marshal.h - - -rwxr-xr-x 0 0 0 2764 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/memoryobject.h - - -rwxr-xr-x 0 0 0 3775 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/methodobject.h - - -rwxr-xr-x 0 0 0 9959 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/modsupport.h - - -rwxr-xr-x 0 0 0 2361 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/moduleobject.h - - -rwxr-xr-x 0 0 0 349 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/namespaceobject.h - - -rwxr-xr-x 0 0 0 1281 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/node.h - - -rwxr-xr-x 0 0 0 24628 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/object.h - - -rwxr-xr-x 0 0 0 8423 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/objimpl.h - - -rwxr-xr-x 0 0 0 1299 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/odictobject.h - - -rwxr-xr-x 0 0 0 4900 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/opcode.h - - -rwxr-xr-x 0 0 0 737 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/osdefs.h - - -rwxr-xr-x 0 0 0 291 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/osmodule.h - - -rwxr-xr-x 0 0 0 2958 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/parsetok.h - - -rwxr-xr-x 0 0 0 1299 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/patchlevel.h - - -rwxr-xr-x 0 0 0 846 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/picklebufobject.h - - -rwxr-xr-x 0 0 0 2474 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/py_curses.h - - -rwxr-xr-x 0 0 0 2744 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pyarena.h - - -rwxr-xr-x 0 0 0 1725 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pycapsule.h - - -rwxr-xr-x 0 0 0 48082 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pyconfig.h - - -rwxr-xr-x 0 0 0 1387 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pyctype.h - - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pydebug.h - - -rwxr-xr-x 0 0 0 2413 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pydtrace.h - - -rwxr-xr-x 0 0 0 12427 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pyerrors.h - - -rwxr-xr-x 0 0 0 2450 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pyexpat.h - - -rwxr-xr-x 0 0 0 444 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pyfpe.h - - -rwxr-xr-x 0 0 0 466 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pyframe.h - - -rwxr-xr-x 0 0 0 4263 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pyhash.h - - -rwxr-xr-x 0 0 0 2136 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pylifecycle.h - - -rwxr-xr-x 0 0 0 2989 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pymacconfig.h - - -rwxr-xr-x 0 0 0 4920 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pymacro.h - - -rwxr-xr-x 0 0 0 8580 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pymath.h - - -rwxr-xr-x 0 0 0 4406 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pymem.h - - -rwxr-xr-x 0 0 0 31273 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pyport.h - - -rwxr-xr-x 0 0 0 5250 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pystate.h - - -rwxr-xr-x 0 0 0 436 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pystrcmp.h - - -rwxr-xr-x 0 0 0 849 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pystrhex.h - - -rwxr-xr-x 0 0 0 1483 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pystrtod.h - - -rwxr-xr-x 0 0 0 7673 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pythonrun.h - - -rwxr-xr-x 0 0 0 5938 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pythread.h - - -rwxr-xr-x 0 0 0 8928 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/pytime.h - - -rwxr-xr-x 0 0 0 628 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/rangeobject.h - - -rwxr-xr-x 0 0 0 3324 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/setobject.h - - -rwxr-xr-x 0 0 0 2516 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/sliceobject.h - - -rwxr-xr-x 0 0 0 2030 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/structmember.h - - -rwxr-xr-x 0 0 0 1390 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/structseq.h - - -rwxr-xr-x 0 0 0 5307 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/symtable.h - - -rwxr-xr-x 0 0 0 1242 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/sysmodule.h - - -rwxr-xr-x 0 0 0 2642 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/token.h - - -rwxr-xr-x 0 0 0 584 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/traceback.h - - -rwxr-xr-x 0 0 0 1114 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/tracemalloc.h - - -rwxr-xr-x 0 0 0 1614 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/tupleobject.h - - -rwxr-xr-x 0 0 0 2350 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/typeslots.h - - -rwxr-xr-x 0 0 0 1056 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/ucnhash.h - - -rwxr-xr-x 0 0 0 35426 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/unicodeobject.h - - -rwxr-xr-x 0 0 0 1776 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/warnings.h - - -rwxr-xr-x 0 0 0 2863 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/include/python3.9/weakrefobject.h - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/ - - -rwxr-xr-x 0 0 0 13870 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Balloon.tcl - - -rwxr-xr-x 0 0 0 2791 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/BtnBox.tcl - - -rwxr-xr-x 0 0 0 8098 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/CObjView.tcl - - -rwxr-xr-x 0 0 0 5326 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/ChkList.tcl - - -rwxr-xr-x 0 0 0 37829 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/ComboBox.tcl - - -rwxr-xr-x 0 0 0 903 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Compat.tcl - - -rwxr-xr-x 0 0 0 15923 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Console.tcl - - -rwxr-xr-x 0 0 0 12884 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Control.tcl - - -rwxr-xr-x 0 0 0 3116 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DefSchm.tcl - - -rwxr-xr-x 0 0 0 4471 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DialogS.tcl - - -rwxr-xr-x 0 0 0 5632 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DirBox.tcl - - -rwxr-xr-x 0 0 0 2301 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DirDlg.tcl - - -rwxr-xr-x 0 0 0 7336 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DirList.tcl - - -rwxr-xr-x 0 0 0 9322 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DirTree.tcl - - -rwxr-xr-x 0 0 0 4191 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DragDrop.tcl - - -rwxr-xr-x 0 0 0 1051 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DtlList.tcl - - -rwxr-xr-x 0 0 0 11826 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/EFileBox.tcl - - -rwxr-xr-x 0 0 0 1783 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/EFileDlg.tcl - - -rwxr-xr-x 0 0 0 5448 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Event.tcl - - -rwxr-xr-x 0 0 0 14904 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/FileBox.tcl - - -rwxr-xr-x 0 0 0 2591 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/FileCbx.tcl - - -rwxr-xr-x 0 0 0 2260 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/FileDlg.tcl - - -rwxr-xr-x 0 0 0 7589 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/FileEnt.tcl - - -rwxr-xr-x 0 0 0 3308 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/FloatEnt.tcl - - -rwxr-xr-x 0 0 0 22787 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Grid.tcl - - -rwxr-xr-x 0 0 0 19065 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/HList.tcl - - -rwxr-xr-x 0 0 0 4704 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/HListDD.tcl - - -rwxr-xr-x 0 0 0 6382 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/IconView.tcl - - -rwxr-xr-x 0 0 0 6431 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Init.tcl - - -rwxr-xr-x 0 0 0 2229 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/LabEntry.tcl - - -rwxr-xr-x 0 0 0 1230 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/LabFrame.tcl - - -rwxr-xr-x 0 0 0 4108 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/LabWidg.tcl - - -rwxr-xr-x 0 0 0 3734 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/ListNBk.tcl - - -rwxr-xr-x 0 0 0 3251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Meter.tcl - - -rwxr-xr-x 0 0 0 3861 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/MultView.tcl - - -rwxr-xr-x 0 0 0 6407 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/NoteBook.tcl - - -rwxr-xr-x 0 0 0 3164 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/OldUtil.tcl - - -rwxr-xr-x 0 0 0 9786 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/OptMenu.tcl - - -rwxr-xr-x 0 0 0 29562 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/PanedWin.tcl - - -rwxr-xr-x 0 0 0 5739 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/PopMenu.tcl - - -rwxr-xr-x 0 0 0 10955 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Primitiv.tcl - - -rwxr-xr-x 0 0 0 1013 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/README.txt - - -rwxr-xr-x 0 0 0 13752 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/ResizeH.tcl - - -rwxr-xr-x 0 0 0 6178 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SGrid.tcl - - -rwxr-xr-x 0 0 0 3933 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SHList.tcl - - -rwxr-xr-x 0 0 0 7433 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SListBox.tcl - - -rwxr-xr-x 0 0 0 2521 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/STList.tcl - - -rwxr-xr-x 0 0 0 3297 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SText.tcl - - -rwxr-xr-x 0 0 0 10213 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SWidget.tcl - - -rwxr-xr-x 0 0 0 7182 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SWindow.tcl - - -rwxr-xr-x 0 0 0 7504 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Select.tcl - - -rwxr-xr-x 0 0 0 1129 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Shell.tcl - - -rwxr-xr-x 0 0 0 1204 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SimpDlg.tcl - - -rwxr-xr-x 0 0 0 2076 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/StackWin.tcl - - -rwxr-xr-x 0 0 0 1395 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/StatBar.tcl - - -rwxr-xr-x 0 0 0 1727 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/StdBBox.tcl - - -rwxr-xr-x 0 0 0 1222 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/StdShell.tcl - - -rwxr-xr-x 0 0 0 18962 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/TList.tcl - - -rwxr-xr-x 0 0 0 10135 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Tix.tcl - - -rwxr-xr-x 0 0 0 4890 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Tree.tcl - - -rwxr-xr-x 0 0 0 11230 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Utils.tcl - - -rwxr-xr-x 0 0 0 5280 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/VResize.tcl - - -rwxr-xr-x 0 0 0 10081 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/VStack.tcl - - -rwxr-xr-x 0 0 0 4605 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/VTree.tcl - - -rwxr-xr-x 0 0 0 2664 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Variable.tcl - - -rwxr-xr-x 0 0 0 1005 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/WInfo.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/ - - -rwxr-xr-x 0 0 0 90 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/act_fold.gif - - -rwxr-xr-x 0 0 0 221 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/act_fold.xbm - - -rwxr-xr-x 0 0 0 436 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/act_fold.xpm - - -rwxr-xr-x 0 0 0 123 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/balarrow.xbm - - -rwxr-xr-x 0 0 0 263 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/cbxarrow.xbm - - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/ck_def.xbm - - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/ck_off.xbm - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/ck_on.xbm - - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/cross.xbm - - -rwxr-xr-x 0 0 0 99 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/decr.xbm - - -rwxr-xr-x 0 0 0 326 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/drop.xbm - - -rwxr-xr-x 0 0 0 76 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/file.gif - - -rwxr-xr-x 0 0 0 233 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/file.xbm - - -rwxr-xr-x 0 0 0 298 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/file.xpm - - -rwxr-xr-x 0 0 0 79 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/folder.gif - - -rwxr-xr-x 0 0 0 215 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/folder.xbm - - -rwxr-xr-x 0 0 0 418 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/folder.xpm - - -rwxr-xr-x 0 0 0 896 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/harddisk.xbm - - -rwxr-xr-x 0 0 0 969 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/hourglas.mask - - -rwxr-xr-x 0 0 0 940 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/hourglas.xbm - - -rwxr-xr-x 0 0 0 99 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/incr.xbm - - -rwxr-xr-x 0 0 0 159 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/info.gif - - -rwxr-xr-x 0 0 0 1258 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/info.xpm - - -rwxr-xr-x 0 0 0 284 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/maximize.xbm - - -rwxr-xr-x 0 0 0 284 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minimize.xbm - - -rwxr-xr-x 0 0 0 57 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minus.gif - - -rwxr-xr-x 0 0 0 198 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minus.xbm - - -rwxr-xr-x 0 0 0 201 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minus.xpm - - -rwxr-xr-x 0 0 0 59 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minusarm.gif - - -rwxr-xr-x 0 0 0 207 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minusarm.xbm - - -rwxr-xr-x 0 0 0 220 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minusarm.xpm - - -rwxr-xr-x 0 0 0 263 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/mktransgif.tcl - - -rwxr-xr-x 0 0 0 893 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/network.xbm - - -rwxr-xr-x 0 0 0 176 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/no_entry.gif - - -rwxr-xr-x 0 0 0 1274 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/no_entry.xpm - - -rwxr-xr-x 0 0 0 221 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/openfile.xbm - - -rwxr-xr-x 0 0 0 84 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/openfold.gif - - -rwxr-xr-x 0 0 0 221 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/openfold.xbm - - -rwxr-xr-x 0 0 0 418 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/openfold.xpm - - -rwxr-xr-x 0 0 0 58 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plus.gif - - -rwxr-xr-x 0 0 0 195 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plus.xbm - - -rwxr-xr-x 0 0 0 200 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plus.xpm - - -rwxr-xr-x 0 0 0 60 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plusarm.gif - - -rwxr-xr-x 0 0 0 204 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plusarm.xbm - - -rwxr-xr-x 0 0 0 212 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plusarm.xpm - - -rwxr-xr-x 0 0 0 305 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/resize1.xbm - - -rwxr-xr-x 0 0 0 305 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/resize2.xbm - - -rwxr-xr-x 0 0 0 281 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/restore.xbm - - -rwxr-xr-x 0 0 0 79 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/srcfile.gif - - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/srcfile.xbm - - -rwxr-xr-x 0 0 0 294 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/srcfile.xpm - - -rwxr-xr-x 0 0 0 278 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/system.xbm - - -rwxr-xr-x 0 0 0 79 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/textfile.gif - - -rwxr-xr-x 0 0 0 245 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/textfile.xbm - - -rwxr-xr-x 0 0 0 302 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/textfile.xpm - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/tick.xbm - - -rwxr-xr-x 0 0 0 180 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/warning.gif - - -rwxr-xr-x 0 0 0 1262 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/warning.xpm - - -rwxr-xr-x 0 0 0 4165 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/fs.tcl - - -rwxr-xr-x 0 0 0 2828 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/license.terms - - -rwxr-xr-x 0 0 0 126 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pkgIndex.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/ - - -rwxr-xr-x 0 0 0 641 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/10Point.fs - - -rwxr-xr-x 0 0 0 2046 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/10Point.fsc - - -rwxr-xr-x 0 0 0 640 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/12Point.fs - - -rwxr-xr-x 0 0 0 2045 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/12Point.fsc - - -rwxr-xr-x 0 0 0 639 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/14Point.fs - - -rwxr-xr-x 0 0 0 2105 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/14Point.fsc - - -rwxr-xr-x 0 0 0 1028 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Bisque.cs - - -rwxr-xr-x 0 0 0 22539 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Bisque.csc - - -rwxr-xr-x 0 0 0 1045 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Blue.cs - - -rwxr-xr-x 0 0 0 22552 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Blue.csc - - -rwxr-xr-x 0 0 0 1045 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Gray.cs - - -rwxr-xr-x 0 0 0 22552 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Gray.csc - - -rwxr-xr-x 0 0 0 541 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Old12Pt.fs - - -rwxr-xr-x 0 0 0 499 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Old14Pt.fs - - -rwxr-xr-x 0 0 0 1026 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/SGIGray.cs - - -rwxr-xr-x 0 0 0 22537 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/SGIGray.csc - - -rwxr-xr-x 0 0 0 1024 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TK.cs - - -rwxr-xr-x 0 0 0 2023 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TK.csc - - -rwxr-xr-x 0 0 0 506 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TK.fs - - -rwxr-xr-x 0 0 0 569 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TK.fsc - - -rwxr-xr-x 0 0 0 1026 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TixGray.cs - - -rwxr-xr-x 0 0 0 22539 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TixGray.csc - - -rwxr-xr-x 0 0 0 2246 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TkWin.cs - - -rwxr-xr-x 0 0 0 22302 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TkWin.csc - - -rwxr-xr-x 0 0 0 390 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TkWin.fs - - -rwxr-xr-x 0 0 0 1674 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TkWin.fsc - - -rwxr-xr-x 0 0 0 1452 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.cs - - -rwxr-xr-x 0 0 0 14566 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.csc - - -rwxr-xr-x 0 0 0 755 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.fs - - -rwxr-xr-x 0 0 0 2184 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.fsc - - -rwxr-xr-x 0 0 0 3597 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.py - - -rwxr-xr-x 0 0 0 34898 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.tcl - - -rwxr-xr-x 0 0 0 4466 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.txt - - -rwxr-xr-x 0 0 0 271 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/pkgIndex.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/itcl4.2.2/ - - -rwxr-xr-x 0 0 0 5153 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/itcl4.2.2/itcl.tcl - - -rwxr-xr-x 0 0 0 2932 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/itcl4.2.2/itclConfig.sh - - -rwxr-xr-x 0 0 0 21056 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/itcl4.2.2/itclHullCmds.tcl - - -rwxr-xr-x 0 0 0 12651 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/itcl4.2.2/itclWidget.tcl - - -rwxr-xr-x 0 0 0 47153392 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/libpython3.9.so.1.0 - - -rwxr-xr-x 0 0 0 16800 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/libpython3.so - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/pkgconfig/ - - -rwxr-xr-x 0 0 0 311 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/pkgconfig/python-3.9-embed.pc - - -rwxr-xr-x 0 0 0 285 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/pkgconfig/python-3.9.pc - - -rwxr-xr-x 0 0 0 311 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/pkgconfig/python3-embed.pc - - -rwxr-xr-x 0 0 0 285 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/pkgconfig/python3.pc - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ - - -rwxr-xr-x 0 0 0 13937 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/LICENSE.txt - - -rwxr-xr-x 0 0 0 5147 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__future__.py - - -rwxr-xr-x 0 0 0 64 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__phello__.foo.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/ - - -rwxr-xr-x 0 0 0 1246 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/_bootlocale.cpython-39.pyc - - -rwxr-xr-x 0 0 0 31750 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/_collections_abc.cpython-39.pyc - - -rwxr-xr-x 0 0 0 3520 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/_sitebuiltins.cpython-39.pyc - - -rwxr-xr-x 0 0 0 5794 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/abc.cpython-39.pyc - - -rwxr-xr-x 0 0 0 33907 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/codecs.cpython-39.pyc - - -rwxr-xr-x 0 0 0 4043 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/genericpath.cpython-39.pyc - - -rwxr-xr-x 0 0 0 3427 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/io.cpython-39.pyc - - -rwxr-xr-x 0 0 0 31665 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/os.cpython-39.pyc - - -rwxr-xr-x 0 0 0 10348 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/posixpath.cpython-39.pyc - - -rwxr-xr-x 0 0 0 16808 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/site.cpython-39.pyc - - -rwxr-xr-x 0 0 0 4391 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/stat.cpython-39.pyc - - -rwxr-xr-x 0 0 0 3389 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_aix_support.py - - -rwxr-xr-x 0 0 0 1801 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_bootlocale.py - - -rwxr-xr-x 0 0 0 2675 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_bootsubprocess.py - - -rwxr-xr-x 0 0 0 29374 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_collections_abc.py - - -rwxr-xr-x 0 0 0 8749 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_compat_pickle.py - - -rwxr-xr-x 0 0 0 5340 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_compression.py - - -rwxr-xr-x 0 0 0 14623 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_markupbase.py - - -rwxr-xr-x 0 0 0 21773 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_osx_support.py - - -rwxr-xr-x 0 0 0 6189 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_py_abc.py - - -rwxr-xr-x 0 0 0 228666 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_pydecimal.py - - -rwxr-xr-x 0 0 0 93316 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_pyio.py - - -rwxr-xr-x 0 0 0 3115 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_sitebuiltins.py - - -rwxr-xr-x 0 0 0 25277 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_strptime.py - - -rwxr-xr-x 0 0 0 30260 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_sysconfigdata__linux_x86_64-linux-gnu.py - - -rwxr-xr-x 0 0 0 7220 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_threading_local.py - - -rwxr-xr-x 0 0 0 5923 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/_weakrefset.py - - -rwxr-xr-x 0 0 0 4920 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/abc.py - - -rwxr-xr-x 0 0 0 32605 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/aifc.py - - -rwxr-xr-x 0 0 0 500 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/antigravity.py - - -rwxr-xr-x 0 0 0 98119 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/argparse.py - - -rwxr-xr-x 0 0 0 56179 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ast.py - - -rwxr-xr-x 0 0 0 11321 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asynchat.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/ - - -rwxr-xr-x 0 0 0 1279 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/__init__.py - - -rwxr-xr-x 0 0 0 3343 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/__main__.py - - -rwxr-xr-x 0 0 0 74192 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/base_events.py - - -rwxr-xr-x 0 0 0 2574 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/base_futures.py - - -rwxr-xr-x 0 0 0 8843 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/base_subprocess.py - - -rwxr-xr-x 0 0 0 2467 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/base_tasks.py - - -rwxr-xr-x 0 0 0 888 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/constants.py - - -rwxr-xr-x 0 0 0 8797 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/coroutines.py - - -rwxr-xr-x 0 0 0 26451 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/events.py - - -rwxr-xr-x 0 0 0 1633 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/exceptions.py - - -rwxr-xr-x 0 0 0 2404 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/format_helpers.py - - -rwxr-xr-x 0 0 0 14042 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/futures.py - - -rwxr-xr-x 0 0 0 15181 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/locks.py - - -rwxr-xr-x 0 0 0 124 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/log.py - - -rwxr-xr-x 0 0 0 32146 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/proactor_events.py - - -rwxr-xr-x 0 0 0 6957 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/protocols.py - - -rwxr-xr-x 0 0 0 8305 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/queues.py - - -rwxr-xr-x 0 0 0 2125 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/runners.py - - -rwxr-xr-x 0 0 0 39500 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/selector_events.py - - -rwxr-xr-x 0 0 0 27459 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/sslproto.py - - -rwxr-xr-x 0 0 0 5992 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/staggered.py - - -rwxr-xr-x 0 0 0 26656 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/streams.py - - -rwxr-xr-x 0 0 0 8070 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/subprocess.py - - -rwxr-xr-x 0 0 0 34419 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/tasks.py - - -rwxr-xr-x 0 0 0 790 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/threads.py - - -rwxr-xr-x 0 0 0 10724 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/transports.py - - -rwxr-xr-x 0 0 0 5876 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/trsock.py - - -rwxr-xr-x 0 0 0 51754 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/unix_events.py - - -rwxr-xr-x 0 0 0 33004 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/windows_events.py - - -rwxr-xr-x 0 0 0 5060 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/windows_utils.py - - -rwxr-xr-x 0 0 0 20102 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/asyncore.py - - -rwxr-xr-x 0 0 0 19861 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/base64.py - - -rwxr-xr-x 0 0 0 31389 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/bdb.py - - -rwxr-xr-x 0 0 0 14784 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/binhex.py - - -rwxr-xr-x 0 0 0 2350 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/bisect.py - - -rwxr-xr-x 0 0 0 12447 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/bz2.py - - -rwxr-xr-x 0 0 0 6347 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/cProfile.py - - -rwxr-xr-x 0 0 0 24832 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/calendar.py - - -rwxr-xr-x 0 0 0 33963 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/cgi.py - - -rwxr-xr-x 0 0 0 12096 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/cgitb.py - - -rwxr-xr-x 0 0 0 5435 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/chunk.py - - -rwxr-xr-x 0 0 0 14860 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/cmd.py - - -rwxr-xr-x 0 0 0 10622 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/code.py - - -rwxr-xr-x 0 0 0 36673 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/codecs.py - - -rwxr-xr-x 0 0 0 6326 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/codeop.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/collections/ - - -rwxr-xr-x 0 0 0 49819 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/collections/__init__.py - - -rwxr-xr-x 0 0 0 119 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/collections/abc.py - - -rwxr-xr-x 0 0 0 4064 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/colorsys.py - - -rwxr-xr-x 0 0 0 20105 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/compileall.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/ - - -rwxr-xr-x 0 0 0 38 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/futures/ - - -rwxr-xr-x 0 0 0 1554 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/futures/__init__.py - - -rwxr-xr-x 0 0 0 22577 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/futures/_base.py - - -rwxr-xr-x 0 0 0 31395 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/futures/process.py - - -rwxr-xr-x 0 0 0 8771 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/futures/thread.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/ - - -rwxr-xr-x 0 0 0 113057 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/Makefile - - -rwxr-xr-x 0 0 0 15019 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/Setup - - -rwxr-xr-x 0 0 0 3091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/Setup.local - - -rwxr-xr-x 0 0 0 8848 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/config.c - - -rwxr-xr-x 0 0 0 1623 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/config.c.in - - -rwxr-xr-x 0 0 0 15368 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/install-sh - - -rwxr-xr-x 0 0 0 7929 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/makesetup - - -rwxr-xr-x 0 0 0 2069 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/python-config.py - - -rwxr-xr-x 0 0 0 4012 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/python.o - - -rwxr-xr-x 0 0 0 54584 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/configparser.py - - -rwxr-xr-x 0 0 0 24624 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/contextlib.py - - -rwxr-xr-x 0 0 0 129 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/contextvars.py - - -rwxr-xr-x 0 0 0 8650 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/copy.py - - -rwxr-xr-x 0 0 0 7274 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/copyreg.py - - -rwxr-xr-x 0 0 0 3819 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/crypt.py - - -rwxr-xr-x 0 0 0 16144 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/csv.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/ - - -rwxr-xr-x 0 0 0 18046 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/__init__.py - - -rwxr-xr-x 0 0 0 12575 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/_aix.py - - -rwxr-xr-x 0 0 0 2000 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/_endian.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/ - - -rwxr-xr-x 0 0 0 296 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/README.ctypes - - -rwxr-xr-x 0 0 0 154 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/__init__.py - - -rwxr-xr-x 0 0 0 5283 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/dyld.py - - -rwxr-xr-x 0 0 0 1828 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/dylib.py - - -rwxr-xr-x 0 0 0 84 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/fetch_macholib - - -rwxr-xr-x 0 0 0 75 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/fetch_macholib.bat - - -rwxr-xr-x 0 0 0 2201 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/framework.py - - -rwxr-xr-x 0 0 0 13879 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/util.py - - -rwxr-xr-x 0 0 0 5628 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/wintypes.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/curses/ - - -rwxr-xr-x 0 0 0 3369 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/curses/__init__.py - - -rwxr-xr-x 0 0 0 2547 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/curses/ascii.py - - -rwxr-xr-x 0 0 0 5634 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/curses/has_key.py - - -rwxr-xr-x 0 0 0 87 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/curses/panel.py - - -rwxr-xr-x 0 0 0 7657 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/curses/textpad.py - - -rwxr-xr-x 0 0 0 49586 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/dataclasses.py - - -rwxr-xr-x 0 0 0 89177 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/datetime.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/dbm/ - - -rwxr-xr-x 0 0 0 5839 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/dbm/__init__.py - - -rwxr-xr-x 0 0 0 11536 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/dbm/dumb.py - - -rwxr-xr-x 0 0 0 72 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/dbm/gnu.py - - -rwxr-xr-x 0 0 0 70 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/dbm/ndbm.py - - -rwxr-xr-x 0 0 0 320 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/decimal.py - - -rwxr-xr-x 0 0 0 83307 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/difflib.py - - -rwxr-xr-x 0 0 0 20570 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/dis.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/ - - -rwxr-xr-x 0 0 0 244 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/README - - -rwxr-xr-x 0 0 0 236 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/__init__.py - - -rwxr-xr-x 0 0 0 20007 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/_msvccompiler.py - - -rwxr-xr-x 0 0 0 8572 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/archive_util.py - - -rwxr-xr-x 0 0 0 14894 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/bcppcompiler.py - - -rwxr-xr-x 0 0 0 47418 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/ccompiler.py - - -rwxr-xr-x 0 0 0 18079 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/cmd.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/ - - -rwxr-xr-x 0 0 0 799 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/__init__.py - - -rwxr-xr-x 0 0 0 5562 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist.py - - -rwxr-xr-x 0 0 0 4913 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist_dumb.py - - -rwxr-xr-x 0 0 0 35579 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist_msi.py - - -rwxr-xr-x 0 0 0 21537 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist_rpm.py - - -rwxr-xr-x 0 0 0 16030 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist_wininst.py - - -rwxr-xr-x 0 0 0 5767 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/build.py - - -rwxr-xr-x 0 0 0 8022 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/build_clib.py - - -rwxr-xr-x 0 0 0 31635 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/build_ext.py - - -rwxr-xr-x 0 0 0 17190 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/build_py.py - - -rwxr-xr-x 0 0 0 6232 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/build_scripts.py - - -rwxr-xr-x 0 0 0 5636 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/check.py - - -rwxr-xr-x 0 0 0 2776 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/clean.py - - -rwxr-xr-x 0 0 0 633 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/command_template - - -rwxr-xr-x 0 0 0 13117 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/config.py - - -rwxr-xr-x 0 0 0 26805 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/install.py - - -rwxr-xr-x 0 0 0 2822 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/install_data.py - - -rwxr-xr-x 0 0 0 2603 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/install_egg_info.py - - -rwxr-xr-x 0 0 0 1298 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/install_headers.py - - -rwxr-xr-x 0 0 0 8397 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/install_lib.py - - -rwxr-xr-x 0 0 0 2017 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/install_scripts.py - - -rwxr-xr-x 0 0 0 11712 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/register.py - - -rwxr-xr-x 0 0 0 19005 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/sdist.py - - -rwxr-xr-x 0 0 0 7621 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/upload.py - - -rwxr-xr-x 0 0 0 4827 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/config.py - - -rwxr-xr-x 0 0 0 8876 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/core.py - - -rwxr-xr-x 0 0 0 16380 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/cygwinccompiler.py - - -rwxr-xr-x 0 0 0 139 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/debug.py - - -rwxr-xr-x 0 0 0 3491 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/dep_util.py - - -rwxr-xr-x 0 0 0 7778 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/dir_util.py - - -rwxr-xr-x 0 0 0 50385 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/dist.py - - -rwxr-xr-x 0 0 0 3577 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/errors.py - - -rwxr-xr-x 0 0 0 10515 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/extension.py - - -rwxr-xr-x 0 0 0 17784 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/fancy_getopt.py - - -rwxr-xr-x 0 0 0 8148 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/file_util.py - - -rwxr-xr-x 0 0 0 12832 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/filelist.py - - -rwxr-xr-x 0 0 0 1969 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/log.py - - -rwxr-xr-x 0 0 0 30453 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/msvc9compiler.py - - -rwxr-xr-x 0 0 0 23540 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/msvccompiler.py - - -rwxr-xr-x 0 0 0 4660 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/spawn.py - - -rwxr-xr-x 0 0 0 20632 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/sysconfig.py - - -rwxr-xr-x 0 0 0 12483 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/text_file.py - - -rwxr-xr-x 0 0 0 14818 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/unixccompiler.py - - -rwxr-xr-x 0 0 0 20913 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/util.py - - -rwxr-xr-x 0 0 0 12514 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/version.py - - -rwxr-xr-x 0 0 0 5133 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/distutils/versionpredicate.py - - -rwxr-xr-x 0 0 0 104568 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/doctest.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/ - - -rwxr-xr-x 0 0 0 1766 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/__init__.py - - -rwxr-xr-x 0 0 0 8541 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/_encoded_words.py - - -rwxr-xr-x 0 0 0 106981 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/_header_value_parser.py - - -rwxr-xr-x 0 0 0 17722 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/_parseaddr.py - - -rwxr-xr-x 0 0 0 15073 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/_policybase.py - - -rwxr-xr-x 0 0 0 9561 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/architecture.rst - - -rwxr-xr-x 0 0 0 3558 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/base64mime.py - - -rwxr-xr-x 0 0 0 17128 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/charset.py - - -rwxr-xr-x 0 0 0 10555 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/contentmanager.py - - -rwxr-xr-x 0 0 0 1786 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/encoders.py - - -rwxr-xr-x 0 0 0 3647 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/errors.py - - -rwxr-xr-x 0 0 0 22780 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/feedparser.py - - -rwxr-xr-x 0 0 0 20196 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/generator.py - - -rwxr-xr-x 0 0 0 24102 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/header.py - - -rwxr-xr-x 0 0 0 20628 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/headerregistry.py - - -rwxr-xr-x 0 0 0 2135 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/iterators.py - - -rwxr-xr-x 0 0 0 47060 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/message.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/__init__.py - - -rwxr-xr-x 0 0 0 1321 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/application.py - - -rwxr-xr-x 0 0 0 2739 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/audio.py - - -rwxr-xr-x 0 0 0 916 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/base.py - - -rwxr-xr-x 0 0 0 1829 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/image.py - - -rwxr-xr-x 0 0 0 1317 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/message.py - - -rwxr-xr-x 0 0 0 1621 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/multipart.py - - -rwxr-xr-x 0 0 0 691 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/nonmultipart.py - - -rwxr-xr-x 0 0 0 1437 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/text.py - - -rwxr-xr-x 0 0 0 5041 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/parser.py - - -rwxr-xr-x 0 0 0 10383 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/policy.py - - -rwxr-xr-x 0 0 0 9858 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/quoprimime.py - - -rwxr-xr-x 0 0 0 13281 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/email/utils.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/ - - -rwxr-xr-x 0 0 0 5588 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/__pycache__/ - - -rwxr-xr-x 0 0 0 3916 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/__pycache__/__init__.cpython-39.pyc - - -rwxr-xr-x 0 0 0 6349 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/__pycache__/aliases.cpython-39.pyc - - -rwxr-xr-x 0 0 0 1914 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/__pycache__/latin_1.cpython-39.pyc - - -rwxr-xr-x 0 0 0 1651 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/__pycache__/utf_8.cpython-39.pyc - - -rwxr-xr-x 0 0 0 15677 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/aliases.py - - -rwxr-xr-x 0 0 0 1248 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/ascii.py - - -rwxr-xr-x 0 0 0 1533 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/base64_codec.py - - -rwxr-xr-x 0 0 0 1019 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/big5.py - - -rwxr-xr-x 0 0 0 1039 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/big5hkscs.py - - -rwxr-xr-x 0 0 0 2249 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/bz2_codec.py - - -rwxr-xr-x 0 0 0 2084 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/charmap.py - - -rwxr-xr-x 0 0 0 13121 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp037.py - - -rwxr-xr-x 0 0 0 13568 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1006.py - - -rwxr-xr-x 0 0 0 13113 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1026.py - - -rwxr-xr-x 0 0 0 34597 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1125.py - - -rwxr-xr-x 0 0 0 13105 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1140.py - - -rwxr-xr-x 0 0 0 13686 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1250.py - - -rwxr-xr-x 0 0 0 13361 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1251.py - - -rwxr-xr-x 0 0 0 13511 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1252.py - - -rwxr-xr-x 0 0 0 13094 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1253.py - - -rwxr-xr-x 0 0 0 13502 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1254.py - - -rwxr-xr-x 0 0 0 12466 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1255.py - - -rwxr-xr-x 0 0 0 12814 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1256.py - - -rwxr-xr-x 0 0 0 13374 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1257.py - - -rwxr-xr-x 0 0 0 13364 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1258.py - - -rwxr-xr-x 0 0 0 14132 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp273.py - - -rwxr-xr-x 0 0 0 12055 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp424.py - - -rwxr-xr-x 0 0 0 34564 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp437.py - - -rwxr-xr-x 0 0 0 13121 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp500.py - - -rwxr-xr-x 0 0 0 13686 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp720.py - - -rwxr-xr-x 0 0 0 34681 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp737.py - - -rwxr-xr-x 0 0 0 34476 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp775.py - - -rwxr-xr-x 0 0 0 34105 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp850.py - - -rwxr-xr-x 0 0 0 35002 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp852.py - - -rwxr-xr-x 0 0 0 33850 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp855.py - - -rwxr-xr-x 0 0 0 12423 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp856.py - - -rwxr-xr-x 0 0 0 33908 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp857.py - - -rwxr-xr-x 0 0 0 34015 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp858.py - - -rwxr-xr-x 0 0 0 34681 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp860.py - - -rwxr-xr-x 0 0 0 34633 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp861.py - - -rwxr-xr-x 0 0 0 33370 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp862.py - - -rwxr-xr-x 0 0 0 34252 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp863.py - - -rwxr-xr-x 0 0 0 33663 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp864.py - - -rwxr-xr-x 0 0 0 34618 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp865.py - - -rwxr-xr-x 0 0 0 34396 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp866.py - - -rwxr-xr-x 0 0 0 32965 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp869.py - - -rwxr-xr-x 0 0 0 12595 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp874.py - - -rwxr-xr-x 0 0 0 12854 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp875.py - - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp932.py - - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp949.py - - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp950.py - - -rwxr-xr-x 0 0 0 1051 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/euc_jis_2004.py - - -rwxr-xr-x 0 0 0 1051 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/euc_jisx0213.py - - -rwxr-xr-x 0 0 0 1027 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/euc_jp.py - - -rwxr-xr-x 0 0 0 1027 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/euc_kr.py - - -rwxr-xr-x 0 0 0 1031 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/gb18030.py - - -rwxr-xr-x 0 0 0 1027 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/gb2312.py - - -rwxr-xr-x 0 0 0 1015 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/gbk.py - - -rwxr-xr-x 0 0 0 1508 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/hex_codec.py - - -rwxr-xr-x 0 0 0 13475 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/hp_roman8.py - - -rwxr-xr-x 0 0 0 1011 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/hz.py - - -rwxr-xr-x 0 0 0 9098 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/idna.py - - -rwxr-xr-x 0 0 0 1053 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp.py - - -rwxr-xr-x 0 0 0 1061 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_1.py - - -rwxr-xr-x 0 0 0 1061 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_2.py - - -rwxr-xr-x 0 0 0 1073 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_2004.py - - -rwxr-xr-x 0 0 0 1061 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_3.py - - -rwxr-xr-x 0 0 0 1069 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_ext.py - - -rwxr-xr-x 0 0 0 1053 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_kr.py - - -rwxr-xr-x 0 0 0 13176 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_1.py - - -rwxr-xr-x 0 0 0 13589 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_10.py - - -rwxr-xr-x 0 0 0 12335 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_11.py - - -rwxr-xr-x 0 0 0 13271 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_13.py - - -rwxr-xr-x 0 0 0 13652 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_14.py - - -rwxr-xr-x 0 0 0 13212 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_15.py - - -rwxr-xr-x 0 0 0 13557 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_16.py - - -rwxr-xr-x 0 0 0 13404 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_2.py - - -rwxr-xr-x 0 0 0 13089 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_3.py - - -rwxr-xr-x 0 0 0 13376 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_4.py - - -rwxr-xr-x 0 0 0 13015 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_5.py - - -rwxr-xr-x 0 0 0 10833 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_6.py - - -rwxr-xr-x 0 0 0 12844 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_7.py - - -rwxr-xr-x 0 0 0 11036 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_8.py - - -rwxr-xr-x 0 0 0 13156 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_9.py - - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/johab.py - - -rwxr-xr-x 0 0 0 13779 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/koi8_r.py - - -rwxr-xr-x 0 0 0 13193 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/koi8_t.py - - -rwxr-xr-x 0 0 0 13762 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/koi8_u.py - - -rwxr-xr-x 0 0 0 13723 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/kz1048.py - - -rwxr-xr-x 0 0 0 1264 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/latin_1.py - - -rwxr-xr-x 0 0 0 36467 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_arabic.py - - -rwxr-xr-x 0 0 0 13633 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_croatian.py - - -rwxr-xr-x 0 0 0 13454 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_cyrillic.py - - -rwxr-xr-x 0 0 0 15170 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_farsi.py - - -rwxr-xr-x 0 0 0 13721 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_greek.py - - -rwxr-xr-x 0 0 0 13498 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_iceland.py - - -rwxr-xr-x 0 0 0 14118 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_latin2.py - - -rwxr-xr-x 0 0 0 13480 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_roman.py - - -rwxr-xr-x 0 0 0 13661 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_romanian.py - - -rwxr-xr-x 0 0 0 13513 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_turkish.py - - -rwxr-xr-x 0 0 0 1211 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mbcs.py - - -rwxr-xr-x 0 0 0 1019 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/oem.py - - -rwxr-xr-x 0 0 0 13519 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/palmos.py - - -rwxr-xr-x 0 0 0 14015 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/ptcp154.py - - -rwxr-xr-x 0 0 0 6883 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/punycode.py - - -rwxr-xr-x 0 0 0 1525 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/quopri_codec.py - - -rwxr-xr-x 0 0 0 1332 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/raw_unicode_escape.py - - -rwxr-xr-x 0 0 0 2448 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/rot_13.py - - -rwxr-xr-x 0 0 0 1039 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/shift_jis.py - - -rwxr-xr-x 0 0 0 1059 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/shift_jis_2004.py - - -rwxr-xr-x 0 0 0 1059 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/shift_jisx0213.py - - -rwxr-xr-x 0 0 0 12300 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/tis_620.py - - -rwxr-xr-x 0 0 0 1299 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/undefined.py - - -rwxr-xr-x 0 0 0 1304 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/unicode_escape.py - - -rwxr-xr-x 0 0 0 5236 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_16.py - - -rwxr-xr-x 0 0 0 1037 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_16_be.py - - -rwxr-xr-x 0 0 0 1037 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_16_le.py - - -rwxr-xr-x 0 0 0 5129 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_32.py - - -rwxr-xr-x 0 0 0 930 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_32_be.py - - -rwxr-xr-x 0 0 0 930 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_32_le.py - - -rwxr-xr-x 0 0 0 946 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_7.py - - -rwxr-xr-x 0 0 0 1005 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_8.py - - -rwxr-xr-x 0 0 0 4133 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_8_sig.py - - -rwxr-xr-x 0 0 0 2851 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/uu_codec.py - - -rwxr-xr-x 0 0 0 2204 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/encodings/zlib_codec.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ensurepip/ - - -rwxr-xr-x 0 0 0 6963 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ensurepip/__init__.py - - -rwxr-xr-x 0 0 0 88 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ensurepip/__main__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ensurepip/_bundled/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ensurepip/_bundled/__init__.py - - -rwxr-xr-x 0 0 0 808 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ensurepip/_uninstall.py - - -rwxr-xr-x 0 0 0 39440 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/enum.py - - -rwxr-xr-x 0 0 0 10024 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/filecmp.py - - -rwxr-xr-x 0 0 0 14791 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/fileinput.py - - -rwxr-xr-x 0 0 0 6004 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/fnmatch.py - - -rwxr-xr-x 0 0 0 15143 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/formatter.py - - -rwxr-xr-x 0 0 0 24323 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/fractions.py - - -rwxr-xr-x 0 0 0 35496 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ftplib.py - - -rwxr-xr-x 0 0 0 38881 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/functools.py - - -rwxr-xr-x 0 0 0 4975 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/genericpath.py - - -rwxr-xr-x 0 0 0 7489 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/getopt.py - - -rwxr-xr-x 0 0 0 5990 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/getpass.py - - -rwxr-xr-x 0 0 0 27266 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/gettext.py - - -rwxr-xr-x 0 0 0 5823 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/glob.py - - -rwxr-xr-x 0 0 0 9573 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/graphlib.py - - -rwxr-xr-x 0 0 0 21772 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/gzip.py - - -rwxr-xr-x 0 0 0 10010 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/hashlib.py - - -rwxr-xr-x 0 0 0 22877 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/heapq.py - - -rwxr-xr-x 0 0 0 7003 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/hmac.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/html/ - - -rwxr-xr-x 0 0 0 4756 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/html/__init__.py - - -rwxr-xr-x 0 0 0 75383 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/html/entities.py - - -rwxr-xr-x 0 0 0 17392 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/html/parser.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/http/ - - -rwxr-xr-x 0 0 0 6732 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/http/__init__.py - - -rwxr-xr-x 0 0 0 56549 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/http/client.py - - -rwxr-xr-x 0 0 0 76835 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/http/cookiejar.py - - -rwxr-xr-x 0 0 0 20482 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/http/cookies.py - - -rwxr-xr-x 0 0 0 48231 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/http/server.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/ - - -rwxr-xr-x 0 0 0 1866 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/CREDITS.txt - - -rwxr-xr-x 0 0 0 56360 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/ChangeLog - - -rwxr-xr-x 0 0 0 10312 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/HISTORY.txt - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/ - - -rwxr-xr-x 0 0 0 443 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/README.txt - - -rwxr-xr-x 0 0 0 120 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/folder.gif - - -rwxr-xr-x 0 0 0 57746 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle.ico - - -rwxr-xr-x 0 0 0 634 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_16.gif - - -rwxr-xr-x 0 0 0 1031 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_16.png - - -rwxr-xr-x 0 0 0 39205 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_256.png - - -rwxr-xr-x 0 0 0 1019 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_32.gif - - -rwxr-xr-x 0 0 0 2036 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_32.png - - -rwxr-xr-x 0 0 0 1388 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_48.gif - - -rwxr-xr-x 0 0 0 3977 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_48.png - - -rwxr-xr-x 0 0 0 75 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/minusnode.gif - - -rwxr-xr-x 0 0 0 125 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/openfolder.gif - - -rwxr-xr-x 0 0 0 78 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/plusnode.gif - - -rwxr-xr-x 0 0 0 380 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/python.gif - - -rwxr-xr-x 0 0 0 72 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/tk.gif - - -rwxr-xr-x 0 0 0 51948 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/NEWS.txt - - -rwxr-xr-x 0 0 0 27172 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/NEWS2x.txt - - -rwxr-xr-x 0 0 0 9680 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/README.txt - - -rwxr-xr-x 0 0 0 8478 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/TODO.txt - - -rwxr-xr-x 0 0 0 396 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/__init__.py - - -rwxr-xr-x 0 0 0 159 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/__main__.py - - -rwxr-xr-x 0 0 0 9150 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/autocomplete.py - - -rwxr-xr-x 0 0 0 20981 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/autocomplete_w.py - - -rwxr-xr-x 0 0 0 3216 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/autoexpand.py - - -rwxr-xr-x 0 0 0 8314 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/browser.py - - -rwxr-xr-x 0 0 0 7267 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/calltip.py - - -rwxr-xr-x 0 0 0 7158 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/calltip_w.py - - -rwxr-xr-x 0 0 0 11420 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/codecontext.py - - -rwxr-xr-x 0 0 0 13201 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/colorizer.py - - -rwxr-xr-x 0 0 0 2266 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/config-extensions.def - - -rwxr-xr-x 0 0 0 2864 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/config-highlight.def - - -rwxr-xr-x 0 0 0 10910 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/config-keys.def - - -rwxr-xr-x 0 0 0 3168 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/config-main.def - - -rwxr-xr-x 0 0 0 38173 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/config.py - - -rwxr-xr-x 0 0 0 14540 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/config_key.py - - -rwxr-xr-x 0 0 0 105738 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/configdialog.py - - -rwxr-xr-x 0 0 0 19104 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/debugger.py - - -rwxr-xr-x 0 0 0 12167 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/debugger_r.py - - -rwxr-xr-x 0 0 0 4055 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/debugobj.py - - -rwxr-xr-x 0 0 0 1082 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/debugobj_r.py - - -rwxr-xr-x 0 0 0 1043 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/delegator.py - - -rwxr-xr-x 0 0 0 2017 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/dynoption.py - - -rwxr-xr-x 0 0 0 65733 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/editor.py - - -rwxr-xr-x 0 0 0 3631 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/extend.txt - - -rwxr-xr-x 0 0 0 3876 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/filelist.py - - -rwxr-xr-x 0 0 0 15777 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/format.py - - -rwxr-xr-x 0 0 0 7479 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/grep.py - - -rwxr-xr-x 0 0 0 68554 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/help.html - - -rwxr-xr-x 0 0 0 11851 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/help.py - - -rwxr-xr-x 0 0 0 9084 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/help_about.py - - -rwxr-xr-x 0 0 0 4043 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/history.py - - -rwxr-xr-x 0 0 0 12883 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/hyperparser.py - - -rwxr-xr-x 0 0 0 177 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/idle.bat - - -rwxr-xr-x 0 0 0 454 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/idle.py - - -rwxr-xr-x 0 0 0 570 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/idle.pyw - - -rwxr-xr-x 0 0 0 15832 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/iomenu.py - - -rwxr-xr-x 0 0 0 9663 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/macosx.py - - -rwxr-xr-x 0 0 0 3930 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/mainmenu.py - - -rwxr-xr-x 0 0 0 18648 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/multicall.py - - -rwxr-xr-x 0 0 0 5709 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/outwin.py - - -rwxr-xr-x 0 0 0 7204 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/parenmatch.py - - -rwxr-xr-x 0 0 0 3193 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/pathbrowser.py - - -rwxr-xr-x 0 0 0 3130 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/percolator.py - - -rwxr-xr-x 0 0 0 19864 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/pyparse.py - - -rwxr-xr-x 0 0 0 57605 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/pyshell.py - - -rwxr-xr-x 0 0 0 15075 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/query.py - - -rwxr-xr-x 0 0 0 6875 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/redirector.py - - -rwxr-xr-x 0 0 0 9799 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/replace.py - - -rwxr-xr-x 0 0 0 21076 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/rpc.py - - -rwxr-xr-x 0 0 0 21046 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/run.py - - -rwxr-xr-x 0 0 0 8273 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/runscript.py - - -rwxr-xr-x 0 0 0 4465 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/scrolledlist.py - - -rwxr-xr-x 0 0 0 5566 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/search.py - - -rwxr-xr-x 0 0 0 7856 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/searchbase.py - - -rwxr-xr-x 0 0 0 7362 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/searchengine.py - - -rwxr-xr-x 0 0 0 13585 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/sidebar.py - - -rwxr-xr-x 0 0 0 12825 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/squeezer.py - - -rwxr-xr-x 0 0 0 4454 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/stackviewer.py - - -rwxr-xr-x 0 0 0 1472 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/statusbar.py - - -rwxr-xr-x 0 0 0 6813 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/textview.py - - -rwxr-xr-x 0 0 0 6557 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/tooltip.py - - -rwxr-xr-x 0 0 0 16370 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/tree.py - - -rwxr-xr-x 0 0 0 11046 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/undo.py - - -rwxr-xr-x 0 0 0 721 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/util.py - - -rwxr-xr-x 0 0 0 2616 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/window.py - - -rwxr-xr-x 0 0 0 4203 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/zoomheight.py - - -rwxr-xr-x 0 0 0 2005 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/zzdummy.py - - -rwxr-xr-x 0 0 0 54904 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/imaplib.py - - -rwxr-xr-x 0 0 0 3808 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/imghdr.py - - -rwxr-xr-x 0 0 0 10536 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/imp.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/importlib/ - - -rwxr-xr-x 0 0 0 6061 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/importlib/__init__.py - - -rwxr-xr-x 0 0 0 40322 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/importlib/_bootstrap.py - - -rwxr-xr-x 0 0 0 64947 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/importlib/_bootstrap_external.py - - -rwxr-xr-x 0 0 0 1497 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/importlib/_common.py - - -rwxr-xr-x 0 0 0 14924 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/importlib/abc.py - - -rwxr-xr-x 0 0 0 844 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/importlib/machinery.py - - -rwxr-xr-x 0 0 0 18750 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/importlib/metadata.py - - -rwxr-xr-x 0 0 0 7209 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/importlib/resources.py - - -rwxr-xr-x 0 0 0 11321 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/importlib/util.py - - -rwxr-xr-x 0 0 0 118235 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/inspect.py - - -rwxr-xr-x 0 0 0 3541 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/io.py - - -rwxr-xr-x 0 0 0 74612 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ipaddress.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/json/ - - -rwxr-xr-x 0 0 0 14019 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/json/__init__.py - - -rwxr-xr-x 0 0 0 12472 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/json/decoder.py - - -rwxr-xr-x 0 0 0 16073 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/json/encoder.py - - -rwxr-xr-x 0 0 0 2425 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/json/scanner.py - - -rwxr-xr-x 0 0 0 3339 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/json/tool.py - - -rwxr-xr-x 0 0 0 1047 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/keyword.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib-dynload/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib-dynload/.empty - - -rwxr-xr-x 0 0 0 24352 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib-dynload/_crypt.cpython-39-x86_64-linux-gnu.so - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/ - - -rwxr-xr-x 0 0 0 8696 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/Grammar.txt - - -rwxr-xr-x 0 0 0 15313 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/Grammar3.9.18.final.0.pickle - - -rwxr-xr-x 0 0 0 793 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/PatternGrammar.txt - - -rwxr-xr-x 0 0 0 1225 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/PatternGrammar3.9.18.final.0.pickle - - -rwxr-xr-x 0 0 0 163 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/__init__.py - - -rwxr-xr-x 0 0 0 67 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/__main__.py - - -rwxr-xr-x 0 0 0 6623 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/btm_matcher.py - - -rwxr-xr-x 0 0 0 9966 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/btm_utils.py - - -rwxr-xr-x 0 0 0 6690 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixer_base.py - - -rwxr-xr-x 0 0 0 15206 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixer_util.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/ - - -rwxr-xr-x 0 0 0 47 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/__init__.py - - -rwxr-xr-x 0 0 0 2346 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_apply.py - - -rwxr-xr-x 0 0 0 984 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_asserts.py - - -rwxr-xr-x 0 0 0 320 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_basestring.py - - -rwxr-xr-x 0 0 0 590 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_buffer.py - - -rwxr-xr-x 0 0 0 3760 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_dict.py - - -rwxr-xr-x 0 0 0 3344 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_except.py - - -rwxr-xr-x 0 0 0 979 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_exec.py - - -rwxr-xr-x 0 0 0 2048 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_execfile.py - - -rwxr-xr-x 0 0 0 2495 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_exitfunc.py - - -rwxr-xr-x 0 0 0 2765 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_filter.py - - -rwxr-xr-x 0 0 0 644 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_funcattrs.py - - -rwxr-xr-x 0 0 0 547 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_future.py - - -rwxr-xr-x 0 0 0 451 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_getcwdu.py - - -rwxr-xr-x 0 0 0 3196 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_has_key.py - - -rwxr-xr-x 0 0 0 4876 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_idioms.py - - -rwxr-xr-x 0 0 0 3256 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_import.py - - -rwxr-xr-x 0 0 0 5684 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_imports.py - - -rwxr-xr-x 0 0 0 289 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_imports2.py - - -rwxr-xr-x 0 0 0 708 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_input.py - - -rwxr-xr-x 0 0 0 1144 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_intern.py - - -rwxr-xr-x 0 0 0 1608 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_isinstance.py - - -rwxr-xr-x 0 0 0 1548 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_itertools.py - - -rwxr-xr-x 0 0 0 2086 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_itertools_imports.py - - -rwxr-xr-x 0 0 0 476 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_long.py - - -rwxr-xr-x 0 0 0 3640 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_map.py - - -rwxr-xr-x 0 0 0 8197 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_metaclass.py - - -rwxr-xr-x 0 0 0 606 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_methodattrs.py - - -rwxr-xr-x 0 0 0 571 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_ne.py - - -rwxr-xr-x 0 0 0 3174 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_next.py - - -rwxr-xr-x 0 0 0 591 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_nonzero.py - - -rwxr-xr-x 0 0 0 768 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_numliterals.py - - -rwxr-xr-x 0 0 0 3426 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_operator.py - - -rwxr-xr-x 0 0 0 1226 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_paren.py - - -rwxr-xr-x 0 0 0 2844 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_print.py - - -rwxr-xr-x 0 0 0 2926 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_raise.py - - -rwxr-xr-x 0 0 0 454 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_raw_input.py - - -rwxr-xr-x 0 0 0 837 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_reduce.py - - -rwxr-xr-x 0 0 0 1081 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_reload.py - - -rwxr-xr-x 0 0 0 2221 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_renames.py - - -rwxr-xr-x 0 0 0 613 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_repr.py - - -rwxr-xr-x 0 0 0 1697 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_set_literal.py - - -rwxr-xr-x 0 0 0 449 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_standarderror.py - - -rwxr-xr-x 0 0 0 1034 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_sys_exc.py - - -rwxr-xr-x 0 0 0 1582 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_throw.py - - -rwxr-xr-x 0 0 0 5565 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_tuple_params.py - - -rwxr-xr-x 0 0 0 1774 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_types.py - - -rwxr-xr-x 0 0 0 1256 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_unicode.py - - -rwxr-xr-x 0 0 0 8367 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_urllib.py - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_ws_comma.py - - -rwxr-xr-x 0 0 0 2694 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_xrange.py - - -rwxr-xr-x 0 0 0 689 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_xreadlines.py - - -rwxr-xr-x 0 0 0 1289 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_zip.py - - -rwxr-xr-x 0 0 0 11854 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/main.py - - -rwxr-xr-x 0 0 0 7054 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/patcomp.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/ - - -rwxr-xr-x 0 0 0 143 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/__init__.py - - -rwxr-xr-x 0 0 0 9642 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/conv.py - - -rwxr-xr-x 0 0 0 5969 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/driver.py - - -rwxr-xr-x 0 0 0 5533 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/grammar.py - - -rwxr-xr-x 0 0 0 1635 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/literals.py - - -rwxr-xr-x 0 0 0 8155 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/parse.py - - -rwxr-xr-x 0 0 0 13812 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/pgen.py - - -rwxr-xr-x 0 0 0 1302 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/token.py - - -rwxr-xr-x 0 0 0 21119 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/tokenize.py - - -rwxr-xr-x 0 0 0 1305 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pygram.py - - -rwxr-xr-x 0 0 0 27974 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pytree.py - - -rwxr-xr-x 0 0 0 27507 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/refactor.py - - -rwxr-xr-x 0 0 0 5461 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/linecache.py - - -rwxr-xr-x 0 0 0 78271 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/locale.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/logging/ - - -rwxr-xr-x 0 0 0 78600 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/logging/__init__.py - - -rwxr-xr-x 0 0 0 36379 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/logging/config.py - - -rwxr-xr-x 0 0 0 60423 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/logging/handlers.py - - -rwxr-xr-x 0 0 0 13231 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/lzma.py - - -rwxr-xr-x 0 0 0 78794 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/mailbox.py - - -rwxr-xr-x 0 0 0 9116 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/mailcap.py - - -rwxr-xr-x 0 0 0 21564 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/mimetypes.py - - -rwxr-xr-x 0 0 0 24401 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/modulefinder.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/ - - -rwxr-xr-x 0 0 0 916 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/__init__.py - - -rwxr-xr-x 0 0 0 31685 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/connection.py - - -rwxr-xr-x 0 0 0 11257 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/context.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/dummy/ - - -rwxr-xr-x 0 0 0 3061 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/dummy/__init__.py - - -rwxr-xr-x 0 0 0 1598 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/dummy/connection.py - - -rwxr-xr-x 0 0 0 12142 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/forkserver.py - - -rwxr-xr-x 0 0 0 11626 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/heap.py - - -rwxr-xr-x 0 0 0 47303 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/managers.py - - -rwxr-xr-x 0 0 0 32555 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/pool.py - - -rwxr-xr-x 0 0 0 2377 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/popen_fork.py - - -rwxr-xr-x 0 0 0 2230 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/popen_forkserver.py - - -rwxr-xr-x 0 0 0 2029 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/popen_spawn_posix.py - - -rwxr-xr-x 0 0 0 4011 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/popen_spawn_win32.py - - -rwxr-xr-x 0 0 0 12000 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/process.py - - -rwxr-xr-x 0 0 0 12023 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/queues.py - - -rwxr-xr-x 0 0 0 9512 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/reduction.py - - -rwxr-xr-x 0 0 0 5132 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/resource_sharer.py - - -rwxr-xr-x 0 0 0 8613 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/resource_tracker.py - - -rwxr-xr-x 0 0 0 18396 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/shared_memory.py - - -rwxr-xr-x 0 0 0 6306 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/sharedctypes.py - - -rwxr-xr-x 0 0 0 9296 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/spawn.py - - -rwxr-xr-x 0 0 0 11610 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/synchronize.py - - -rwxr-xr-x 0 0 0 14006 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/util.py - - -rwxr-xr-x 0 0 0 5566 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/netrc.py - - -rwxr-xr-x 0 0 0 41023 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/nntplib.py - - -rwxr-xr-x 0 0 0 27734 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ntpath.py - - -rwxr-xr-x 0 0 0 2887 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/nturl2path.py - - -rwxr-xr-x 0 0 0 10338 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/numbers.py - - -rwxr-xr-x 0 0 0 5660 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/opcode.py - - -rwxr-xr-x 0 0 0 10751 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/operator.py - - -rwxr-xr-x 0 0 0 60369 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/optparse.py - - -rwxr-xr-x 0 0 0 39065 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/os.py - - -rwxr-xr-x 0 0 0 54073 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pathlib.py - - -rwxr-xr-x 0 0 0 63239 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pdb.py - - -rwxr-xr-x 0 0 0 64920 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pickle.py - - -rwxr-xr-x 0 0 0 93486 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pickletools.py - - -rwxr-xr-x 0 0 0 8916 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pipes.py - - -rwxr-xr-x 0 0 0 24276 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pkgutil.py - - -rwxr-xr-x 0 0 0 40602 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/platform.py - - -rwxr-xr-x 0 0 0 28248 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/plistlib.py - - -rwxr-xr-x 0 0 0 15198 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/poplib.py - - -rwxr-xr-x 0 0 0 15721 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/posixpath.py - - -rwxr-xr-x 0 0 0 22527 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pprint.py - - -rwxr-xr-x 0 0 0 22883 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/profile.py - - -rwxr-xr-x 0 0 0 29326 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pstats.py - - -rwxr-xr-x 0 0 0 4807 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pty.py - - -rwxr-xr-x 0 0 0 8148 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/py_compile.py - - -rwxr-xr-x 0 0 0 15255 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pyclbr.py - - -rwxr-xr-x 0 0 0 109600 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pydoc.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pydoc_data/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pydoc_data/__init__.py - - -rwxr-xr-x 0 0 0 96 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pydoc_data/_pydoc.css - - -rwxr-xr-x 0 0 0 703325 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/pydoc_data/topics.py - - -rwxr-xr-x 0 0 0 11496 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/queue.py - - -rwxr-xr-x 0 0 0 7268 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/quopri.py - - -rwxr-xr-x 0 0 0 31484 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/random.py - - -rwxr-xr-x 0 0 0 15861 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/re.py - - -rwxr-xr-x 0 0 0 5267 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/reprlib.py - - -rwxr-xr-x 0 0 0 7648 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/rlcompleter.py - - -rwxr-xr-x 0 0 0 13084 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/runpy.py - - -rwxr-xr-x 0 0 0 6442 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/sched.py - - -rwxr-xr-x 0 0 0 2036 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/secrets.py - - -rwxr-xr-x 0 0 0 19536 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/selectors.py - - -rwxr-xr-x 0 0 0 8527 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/shelve.py - - -rwxr-xr-x 0 0 0 13501 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/shlex.py - - -rwxr-xr-x 0 0 0 53030 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/shutil.py - - -rwxr-xr-x 0 0 0 2438 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/signal.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/ - - -rwxr-xr-x 0 0 0 119 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/README.txt - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/ - - -rwxr-xr-x 0 0 0 6299 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/__pycache__/ - - -rwxr-xr-x 0 0 0 7643 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/__pycache__/__init__.cpython-39.pyc - - -rwxr-xr-x 0 0 0 44 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/override.py - - -rwxr-xr-x 0 0 0 151 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/distutils-precedence.pth - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/ - - -rwxr-xr-x 0 0 0 10082 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/AUTHORS.txt - - -rwxr-xr-x 0 0 0 4 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/INSTALLER - - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/LICENSE.txt - - -rwxr-xr-x 0 0 0 4239 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/METADATA - - -rwxr-xr-x 0 0 0 76897 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/RECORD - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/REQUESTED - - -rwxr-xr-x 0 0 0 92 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/WHEEL - - -rwxr-xr-x 0 0 0 243 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/direct_url.json - - -rwxr-xr-x 0 0 0 125 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/entry_points.txt - - -rwxr-xr-x 0 0 0 4 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-23.2.1.dist-info/top_level.txt - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/ - - -rwxr-xr-x 0 0 0 357 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/__init__.py - - -rwxr-xr-x 0 0 0 854 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/__main__.py - - -rwxr-xr-x 0 0 0 1444 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/__pip-runner__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/ - - -rwxr-xr-x 0 0 0 573 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/__init__.py - - -rwxr-xr-x 0 0 0 10243 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/build_env.py - - -rwxr-xr-x 0 0 0 10429 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cache.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/ - - -rwxr-xr-x 0 0 0 132 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/__init__.py - - -rwxr-xr-x 0 0 0 6676 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/autocompletion.py - - -rwxr-xr-x 0 0 0 8726 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/base_command.py - - -rwxr-xr-x 0 0 0 30030 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/cmdoptions.py - - -rwxr-xr-x 0 0 0 774 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/command_context.py - - -rwxr-xr-x 0 0 0 2816 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/main.py - - -rwxr-xr-x 0 0 0 4338 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/main_parser.py - - -rwxr-xr-x 0 0 0 10817 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/parser.py - - -rwxr-xr-x 0 0 0 1968 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/progress_bars.py - - -rwxr-xr-x 0 0 0 18440 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/req_command.py - - -rwxr-xr-x 0 0 0 5118 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/spinners.py - - -rwxr-xr-x 0 0 0 116 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/status_codes.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/ - - -rwxr-xr-x 0 0 0 3882 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/__init__.py - - -rwxr-xr-x 0 0 0 7581 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/cache.py - - -rwxr-xr-x 0 0 0 1782 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/check.py - - -rwxr-xr-x 0 0 0 3986 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/completion.py - - -rwxr-xr-x 0 0 0 9815 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/configuration.py - - -rwxr-xr-x 0 0 0 6591 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/debug.py - - -rwxr-xr-x 0 0 0 5335 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/download.py - - -rwxr-xr-x 0 0 0 3172 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/freeze.py - - -rwxr-xr-x 0 0 0 1703 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/hash.py - - -rwxr-xr-x 0 0 0 1132 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/help.py - - -rwxr-xr-x 0 0 0 4793 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/index.py - - -rwxr-xr-x 0 0 0 3188 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/inspect.py - - -rwxr-xr-x 0 0 0 28934 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/install.py - - -rwxr-xr-x 0 0 0 12457 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/list.py - - -rwxr-xr-x 0 0 0 5697 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/search.py - - -rwxr-xr-x 0 0 0 6419 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/show.py - - -rwxr-xr-x 0 0 0 3886 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/uninstall.py - - -rwxr-xr-x 0 0 0 6476 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/wheel.py - - -rwxr-xr-x 0 0 0 13839 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/configuration.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/ - - -rwxr-xr-x 0 0 0 858 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/__init__.py - - -rwxr-xr-x 0 0 0 1221 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/base.py - - -rwxr-xr-x 0 0 0 729 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/installed.py - - -rwxr-xr-x 0 0 0 6494 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/sdist.py - - -rwxr-xr-x 0 0 0 1164 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/wheel.py - - -rwxr-xr-x 0 0 0 23737 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/exceptions.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/ - - -rwxr-xr-x 0 0 0 30 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/__init__.py - - -rwxr-xr-x 0 0 0 16504 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/collector.py - - -rwxr-xr-x 0 0 0 37873 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/package_finder.py - - -rwxr-xr-x 0 0 0 6556 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/sources.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/ - - -rwxr-xr-x 0 0 0 15365 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/__init__.py - - -rwxr-xr-x 0 0 0 6100 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/_distutils.py - - -rwxr-xr-x 0 0 0 7680 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/_sysconfig.py - - -rwxr-xr-x 0 0 0 2556 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/base.py - - -rwxr-xr-x 0 0 0 340 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/main.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/ - - -rwxr-xr-x 0 0 0 4280 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/__init__.py - - -rwxr-xr-x 0 0 0 2595 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/_json.py - - -rwxr-xr-x 0 0 0 25277 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/base.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/ - - -rwxr-xr-x 0 0 0 107 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/__init__.py - - -rwxr-xr-x 0 0 0 1882 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/_compat.py - - -rwxr-xr-x 0 0 0 8181 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/_dists.py - - -rwxr-xr-x 0 0 0 7435 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/_envs.py - - -rwxr-xr-x 0 0 0 9773 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/pkg_resources.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/ - - -rwxr-xr-x 0 0 0 63 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/__init__.py - - -rwxr-xr-x 0 0 0 990 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/candidate.py - - -rwxr-xr-x 0 0 0 6931 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/direct_url.py - - -rwxr-xr-x 0 0 0 2520 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/format_control.py - - -rwxr-xr-x 0 0 0 1030 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/index.py - - -rwxr-xr-x 0 0 0 2609 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/installation_report.py - - -rwxr-xr-x 0 0 0 20819 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/link.py - - -rwxr-xr-x 0 0 0 738 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/scheme.py - - -rwxr-xr-x 0 0 0 4643 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/search_scope.py - - -rwxr-xr-x 0 0 0 1907 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/selection_prefs.py - - -rwxr-xr-x 0 0 0 3858 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/target_python.py - - -rwxr-xr-x 0 0 0 3600 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/wheel.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/ - - -rwxr-xr-x 0 0 0 50 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/__init__.py - - -rwxr-xr-x 0 0 0 20541 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/auth.py - - -rwxr-xr-x 0 0 0 2145 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/cache.py - - -rwxr-xr-x 0 0 0 6096 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/download.py - - -rwxr-xr-x 0 0 0 7638 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/lazy_wheel.py - - -rwxr-xr-x 0 0 0 18607 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/session.py - - -rwxr-xr-x 0 0 0 4073 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/utils.py - - -rwxr-xr-x 0 0 0 1791 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/xmlrpc.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/__init__.py - - -rwxr-xr-x 0 0 0 4133 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/build_tracker.py - - -rwxr-xr-x 0 0 0 1422 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/metadata.py - - -rwxr-xr-x 0 0 0 1474 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/metadata_editable.py - - -rwxr-xr-x 0 0 0 2198 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/metadata_legacy.py - - -rwxr-xr-x 0 0 0 1075 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/wheel.py - - -rwxr-xr-x 0 0 0 1417 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/wheel_editable.py - - -rwxr-xr-x 0 0 0 3064 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/wheel_legacy.py - - -rwxr-xr-x 0 0 0 6806 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/check.py - - -rwxr-xr-x 0 0 0 9816 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/freeze.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/install/ - - -rwxr-xr-x 0 0 0 51 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/install/__init__.py - - -rwxr-xr-x 0 0 0 1282 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/install/editable_legacy.py - - -rwxr-xr-x 0 0 0 27475 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/install/wheel.py - - -rwxr-xr-x 0 0 0 28868 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/prepare.py - - -rwxr-xr-x 0 0 0 7161 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/pyproject.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/ - - -rwxr-xr-x 0 0 0 2738 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/__init__.py - - -rwxr-xr-x 0 0 0 16610 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/constructors.py - - -rwxr-xr-x 0 0 0 17872 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/req_file.py - - -rwxr-xr-x 0 0 0 33084 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/req_install.py - - -rwxr-xr-x 0 0 0 4704 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/req_set.py - - -rwxr-xr-x 0 0 0 24678 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/req_uninstall.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/__init__.py - - -rwxr-xr-x 0 0 0 583 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/base.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/legacy/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/legacy/__init__.py - - -rwxr-xr-x 0 0 0 24128 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__init__.py - - -rwxr-xr-x 0 0 0 5220 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/base.py - - -rwxr-xr-x 0 0 0 18969 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/candidates.py - - -rwxr-xr-x 0 0 0 27845 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/factory.py - - -rwxr-xr-x 0 0 0 5705 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py - - -rwxr-xr-x 0 0 0 9824 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/provider.py - - -rwxr-xr-x 0 0 0 3100 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/reporter.py - - -rwxr-xr-x 0 0 0 5454 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/requirements.py - - -rwxr-xr-x 0 0 0 11642 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/resolver.py - - -rwxr-xr-x 0 0 0 8167 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/self_outdated_check.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/__init__.py - - -rwxr-xr-x 0 0 0 3351 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/_jaraco_text.py - - -rwxr-xr-x 0 0 0 1015 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/_log.py - - -rwxr-xr-x 0 0 0 1665 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/appdirs.py - - -rwxr-xr-x 0 0 0 1884 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/compat.py - - -rwxr-xr-x 0 0 0 5377 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/compatibility_tags.py - - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/datetime.py - - -rwxr-xr-x 0 0 0 3627 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/deprecation.py - - -rwxr-xr-x 0 0 0 3206 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/direct_url_helpers.py - - -rwxr-xr-x 0 0 0 2118 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/egg_link.py - - -rwxr-xr-x 0 0 0 1169 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/encoding.py - - -rwxr-xr-x 0 0 0 3064 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/entrypoints.py - - -rwxr-xr-x 0 0 0 5122 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/filesystem.py - - -rwxr-xr-x 0 0 0 716 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/filetypes.py - - -rwxr-xr-x 0 0 0 3166 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/glibc.py - - -rwxr-xr-x 0 0 0 3113 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/glibc.py.orig - - -rwxr-xr-x 0 0 0 5118 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/hashes.py - - -rwxr-xr-x 0 0 0 795 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/inject_securetransport.py - - -rwxr-xr-x 0 0 0 11632 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/logging.py - - -rwxr-xr-x 0 0 0 22343 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/misc.py - - -rwxr-xr-x 0 0 0 1193 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/models.py - - -rwxr-xr-x 0 0 0 2108 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/packaging.py - - -rwxr-xr-x 0 0 0 4435 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/setuptools_build.py - - -rwxr-xr-x 0 0 0 9200 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/subprocess.py - - -rwxr-xr-x 0 0 0 7702 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/temp_dir.py - - -rwxr-xr-x 0 0 0 8821 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/unpacking.py - - -rwxr-xr-x 0 0 0 1759 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/urls.py - - -rwxr-xr-x 0 0 0 3456 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/virtualenv.py - - -rwxr-xr-x 0 0 0 4549 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/wheel.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/ - - -rwxr-xr-x 0 0 0 596 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/__init__.py - - -rwxr-xr-x 0 0 0 3519 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/bazaar.py - - -rwxr-xr-x 0 0 0 18116 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/git.py - - -rwxr-xr-x 0 0 0 5244 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/mercurial.py - - -rwxr-xr-x 0 0 0 11729 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/subversion.py - - -rwxr-xr-x 0 0 0 22811 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/versioncontrol.py - - -rwxr-xr-x 0 0 0 11842 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/wheel_builder.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/ - - -rwxr-xr-x 0 0 0 4966 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/ - - -rwxr-xr-x 0 0 0 465 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__init__.py - - -rwxr-xr-x 0 0 0 1379 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/_cmd.py - - -rwxr-xr-x 0 0 0 5033 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/adapter.py - - -rwxr-xr-x 0 0 0 1535 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/cache.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/ - - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/__init__.py - - -rwxr-xr-x 0 0 0 5271 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py - - -rwxr-xr-x 0 0 0 1033 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py - - -rwxr-xr-x 0 0 0 778 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/compat.py - - -rwxr-xr-x 0 0 0 16416 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/controller.py - - -rwxr-xr-x 0 0 0 3946 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/filewrapper.py - - -rwxr-xr-x 0 0 0 4154 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/heuristics.py - - -rwxr-xr-x 0 0 0 7105 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/serialize.py - - -rwxr-xr-x 0 0 0 774 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/wrapper.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/ - - -rwxr-xr-x 0 0 0 94 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/__init__.py - - -rwxr-xr-x 0 0 0 255 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/__main__.py - - -rwxr-xr-x 0 0 0 278952 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/cacert.pem - - -rwxr-xr-x 0 0 0 4279 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/core.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/ - - -rwxr-xr-x 0 0 0 4797 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/__init__.py - - -rwxr-xr-x 0 0 0 31274 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/big5freq.py - - -rwxr-xr-x 0 0 0 1763 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/big5prober.py - - -rwxr-xr-x 0 0 0 10032 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/chardistribution.py - - -rwxr-xr-x 0 0 0 3915 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/charsetgroupprober.py - - -rwxr-xr-x 0 0 0 5420 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/charsetprober.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/cli/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/cli/__init__.py - - -rwxr-xr-x 0 0 0 3242 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/cli/chardetect.py - - -rwxr-xr-x 0 0 0 3732 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/codingstatemachine.py - - -rwxr-xr-x 0 0 0 542 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/codingstatemachinedict.py - - -rwxr-xr-x 0 0 0 1860 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/cp949prober.py - - -rwxr-xr-x 0 0 0 1683 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/enums.py - - -rwxr-xr-x 0 0 0 4006 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/escprober.py - - -rwxr-xr-x 0 0 0 12176 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/escsm.py - - -rwxr-xr-x 0 0 0 3934 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/eucjpprober.py - - -rwxr-xr-x 0 0 0 13566 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/euckrfreq.py - - -rwxr-xr-x 0 0 0 1753 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/euckrprober.py - - -rwxr-xr-x 0 0 0 36913 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/euctwfreq.py - - -rwxr-xr-x 0 0 0 1753 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/euctwprober.py - - -rwxr-xr-x 0 0 0 20735 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/gb2312freq.py - - -rwxr-xr-x 0 0 0 1759 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/gb2312prober.py - - -rwxr-xr-x 0 0 0 14537 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/hebrewprober.py - - -rwxr-xr-x 0 0 0 25796 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/jisfreq.py - - -rwxr-xr-x 0 0 0 42498 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/johabfreq.py - - -rwxr-xr-x 0 0 0 1752 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/johabprober.py - - -rwxr-xr-x 0 0 0 27055 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/jpcntx.py - - -rwxr-xr-x 0 0 0 104562 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/langbulgarianmodel.py - - -rwxr-xr-x 0 0 0 98484 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/langgreekmodel.py - - -rwxr-xr-x 0 0 0 98196 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/langhebrewmodel.py - - -rwxr-xr-x 0 0 0 101363 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/langhungarianmodel.py - - -rwxr-xr-x 0 0 0 128035 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/langrussianmodel.py - - -rwxr-xr-x 0 0 0 102774 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/langthaimodel.py - - -rwxr-xr-x 0 0 0 95372 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/langturkishmodel.py - - -rwxr-xr-x 0 0 0 5380 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/latin1prober.py - - -rwxr-xr-x 0 0 0 6077 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/macromanprober.py - - -rwxr-xr-x 0 0 0 3715 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/mbcharsetprober.py - - -rwxr-xr-x 0 0 0 2131 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/mbcsgroupprober.py - - -rwxr-xr-x 0 0 0 30391 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/mbcssm.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/metadata/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/metadata/__init__.py - - -rwxr-xr-x 0 0 0 13560 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/metadata/languages.py - - -rwxr-xr-x 0 0 0 402 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/resultdict.py - - -rwxr-xr-x 0 0 0 6400 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/sbcharsetprober.py - - -rwxr-xr-x 0 0 0 4137 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/sbcsgroupprober.py - - -rwxr-xr-x 0 0 0 4007 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/sjisprober.py - - -rwxr-xr-x 0 0 0 14848 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/universaldetector.py - - -rwxr-xr-x 0 0 0 8505 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/utf1632prober.py - - -rwxr-xr-x 0 0 0 2812 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/utf8prober.py - - -rwxr-xr-x 0 0 0 244 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/chardet/version.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/colorama/ - - -rwxr-xr-x 0 0 0 266 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/colorama/__init__.py - - -rwxr-xr-x 0 0 0 2522 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/colorama/ansi.py - - -rwxr-xr-x 0 0 0 11128 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/colorama/ansitowin32.py - - -rwxr-xr-x 0 0 0 3325 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/colorama/initialise.py - - -rwxr-xr-x 0 0 0 6181 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/colorama/win32.py - - -rwxr-xr-x 0 0 0 7134 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/colorama/winterm.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/ - - -rwxr-xr-x 0 0 0 581 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/__init__.py - - -rwxr-xr-x 0 0 0 41259 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/compat.py - - -rwxr-xr-x 0 0 0 51697 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/database.py - - -rwxr-xr-x 0 0 0 20834 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/index.py - - -rwxr-xr-x 0 0 0 51991 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/locators.py - - -rwxr-xr-x 0 0 0 14811 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/manifest.py - - -rwxr-xr-x 0 0 0 5058 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/markers.py - - -rwxr-xr-x 0 0 0 39801 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/metadata.py - - -rwxr-xr-x 0 0 0 10820 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/resources.py - - -rwxr-xr-x 0 0 0 18102 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/scripts.py - - -rwxr-xr-x 0 0 0 97792 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/t32.exe - - -rwxr-xr-x 0 0 0 182784 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/t64-arm.exe - - -rwxr-xr-x 0 0 0 108032 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/t64.exe - - -rwxr-xr-x 0 0 0 66262 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/util.py - - -rwxr-xr-x 0 0 0 23513 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/version.py - - -rwxr-xr-x 0 0 0 91648 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/w32.exe - - -rwxr-xr-x 0 0 0 168448 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/w64-arm.exe - - -rwxr-xr-x 0 0 0 101888 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/w64.exe - - -rwxr-xr-x 0 0 0 43898 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/wheel.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/ - - -rwxr-xr-x 0 0 0 981 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/__init__.py - - -rwxr-xr-x 0 0 0 64 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/__main__.py - - -rwxr-xr-x 0 0 0 49330 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/distro.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/ - - -rwxr-xr-x 0 0 0 849 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/__init__.py - - -rwxr-xr-x 0 0 0 3374 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/codec.py - - -rwxr-xr-x 0 0 0 321 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/compat.py - - -rwxr-xr-x 0 0 0 12950 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/core.py - - -rwxr-xr-x 0 0 0 44375 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/idnadata.py - - -rwxr-xr-x 0 0 0 1881 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/intranges.py - - -rwxr-xr-x 0 0 0 21 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/package_data.py - - -rwxr-xr-x 0 0 0 206539 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/uts46data.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/ - - -rwxr-xr-x 0 0 0 1132 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/__init__.py - - -rwxr-xr-x 0 0 0 1081 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/exceptions.py - - -rwxr-xr-x 0 0 0 6079 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/ext.py - - -rwxr-xr-x 0 0 0 34544 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/fallback.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/ - - -rwxr-xr-x 0 0 0 661 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/__about__.py - - -rwxr-xr-x 0 0 0 497 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/__init__.py - - -rwxr-xr-x 0 0 0 11488 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_manylinux.py - - -rwxr-xr-x 0 0 0 4378 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_musllinux.py - - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_structures.py - - -rwxr-xr-x 0 0 0 8487 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/markers.py - - -rwxr-xr-x 0 0 0 4676 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/requirements.py - - -rwxr-xr-x 0 0 0 30110 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/specifiers.py - - -rwxr-xr-x 0 0 0 15699 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/tags.py - - -rwxr-xr-x 0 0 0 4200 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/utils.py - - -rwxr-xr-x 0 0 0 14665 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/version.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pkg_resources/ - - -rwxr-xr-x 0 0 0 109364 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pkg_resources/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/ - - -rwxr-xr-x 0 0 0 20155 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/__init__.py - - -rwxr-xr-x 0 0 0 1476 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/__main__.py - - -rwxr-xr-x 0 0 0 7211 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/android.py - - -rwxr-xr-x 0 0 0 7132 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/api.py - - -rwxr-xr-x 0 0 0 3678 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/macos.py - - -rwxr-xr-x 0 0 0 8809 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/unix.py - - -rwxr-xr-x 0 0 0 160 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/version.py - - -rwxr-xr-x 0 0 0 9573 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/windows.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/ - - -rwxr-xr-x 0 0 0 2983 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/__init__.py - - -rwxr-xr-x 0 0 0 353 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/__main__.py - - -rwxr-xr-x 0 0 0 23685 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/cmdline.py - - -rwxr-xr-x 0 0 0 1697 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/console.py - - -rwxr-xr-x 0 0 0 1938 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/filter.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/filters/ - - -rwxr-xr-x 0 0 0 40386 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/filters/__init__.py - - -rwxr-xr-x 0 0 0 4178 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatter.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/ - - -rwxr-xr-x 0 0 0 5424 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/__init__.py - - -rwxr-xr-x 0 0 0 4176 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/_mapping.py - - -rwxr-xr-x 0 0 0 3314 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/bbcode.py - - -rwxr-xr-x 0 0 0 5094 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/groff.py - - -rwxr-xr-x 0 0 0 35610 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/html.py - - -rwxr-xr-x 0 0 0 21938 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/img.py - - -rwxr-xr-x 0 0 0 4981 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/irc.py - - -rwxr-xr-x 0 0 0 19351 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/latex.py - - -rwxr-xr-x 0 0 0 5073 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/other.py - - -rwxr-xr-x 0 0 0 2212 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py - - -rwxr-xr-x 0 0 0 5014 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/rtf.py - - -rwxr-xr-x 0 0 0 7335 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/svg.py - - -rwxr-xr-x 0 0 0 4674 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/terminal.py - - -rwxr-xr-x 0 0 0 11753 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/terminal256.py - - -rwxr-xr-x 0 0 0 34618 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexer.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexers/ - - -rwxr-xr-x 0 0 0 12130 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexers/__init__.py - - -rwxr-xr-x 0 0 0 72281 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexers/_mapping.py - - -rwxr-xr-x 0 0 0 53424 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexers/python.py - - -rwxr-xr-x 0 0 0 986 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/modeline.py - - -rwxr-xr-x 0 0 0 2591 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/plugin.py - - -rwxr-xr-x 0 0 0 3072 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/regexopt.py - - -rwxr-xr-x 0 0 0 3092 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/scanner.py - - -rwxr-xr-x 0 0 0 6882 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/sphinxext.py - - -rwxr-xr-x 0 0 0 6257 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/style.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/styles/ - - -rwxr-xr-x 0 0 0 3700 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/styles/__init__.py - - -rwxr-xr-x 0 0 0 6184 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/token.py - - -rwxr-xr-x 0 0 0 63223 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/unistring.py - - -rwxr-xr-x 0 0 0 10230 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/util.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/ - - -rwxr-xr-x 0 0 0 9116 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/__init__.py - - -rwxr-xr-x 0 0 0 6567 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/actions.py - - -rwxr-xr-x 0 0 0 13387 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/common.py - - -rwxr-xr-x 0 0 0 224445 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/core.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/diagram/ - - -rwxr-xr-x 0 0 0 24215 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/diagram/__init__.py - - -rwxr-xr-x 0 0 0 9523 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/exceptions.py - - -rwxr-xr-x 0 0 0 38646 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/helpers.py - - -rwxr-xr-x 0 0 0 26692 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/results.py - - -rwxr-xr-x 0 0 0 13488 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/testing.py - - -rwxr-xr-x 0 0 0 10646 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/unicode.py - - -rwxr-xr-x 0 0 0 8670 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyparsing/util.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/ - - -rwxr-xr-x 0 0 0 491 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/__init__.py - - -rwxr-xr-x 0 0 0 138 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_compat.py - - -rwxr-xr-x 0 0 0 11920 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_impl.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_in_process/ - - -rwxr-xr-x 0 0 0 546 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py - - -rwxr-xr-x 0 0 0 10927 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/ - - -rwxr-xr-x 0 0 0 5169 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/__init__.py - - -rwxr-xr-x 0 0 0 435 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/__version__.py - - -rwxr-xr-x 0 0 0 1495 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/_internal_utils.py - - -rwxr-xr-x 0 0 0 19697 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py - - -rwxr-xr-x 0 0 0 6449 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/api.py - - -rwxr-xr-x 0 0 0 10187 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/auth.py - - -rwxr-xr-x 0 0 0 575 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/certs.py - - -rwxr-xr-x 0 0 0 1286 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/compat.py - - -rwxr-xr-x 0 0 0 18560 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/cookies.py - - -rwxr-xr-x 0 0 0 3823 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/exceptions.py - - -rwxr-xr-x 0 0 0 3879 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/help.py - - -rwxr-xr-x 0 0 0 733 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/hooks.py - - -rwxr-xr-x 0 0 0 35288 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/models.py - - -rwxr-xr-x 0 0 0 695 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/packages.py - - -rwxr-xr-x 0 0 0 30373 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py - - -rwxr-xr-x 0 0 0 4235 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/status_codes.py - - -rwxr-xr-x 0 0 0 2912 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/structures.py - - -rwxr-xr-x 0 0 0 33460 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/utils.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/ - - -rwxr-xr-x 0 0 0 537 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/__init__.py - - -rwxr-xr-x 0 0 0 156 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py - - -rwxr-xr-x 0 0 0 5871 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/providers.py - - -rwxr-xr-x 0 0 0 1601 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/reporters.py - - -rwxr-xr-x 0 0 0 20511 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/resolvers.py - - -rwxr-xr-x 0 0 0 4963 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/structs.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/ - - -rwxr-xr-x 0 0 0 6090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/__init__.py - - -rwxr-xr-x 0 0 0 8478 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/__main__.py - - -rwxr-xr-x 0 0 0 10096 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_cell_widths.py - - -rwxr-xr-x 0 0 0 140235 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_emoji_codes.py - - -rwxr-xr-x 0 0 0 1064 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_emoji_replace.py - - -rwxr-xr-x 0 0 0 2100 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_export_format.py - - -rwxr-xr-x 0 0 0 265 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_extension.py - - -rwxr-xr-x 0 0 0 799 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_fileno.py - - -rwxr-xr-x 0 0 0 9695 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_inspect.py - - -rwxr-xr-x 0 0 0 3225 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_log_render.py - - -rwxr-xr-x 0 0 0 1236 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_loop.py - - -rwxr-xr-x 0 0 0 1387 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_null_file.py - - -rwxr-xr-x 0 0 0 7063 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_palettes.py - - -rwxr-xr-x 0 0 0 423 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_pick.py - - -rwxr-xr-x 0 0 0 5472 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_ratio.py - - -rwxr-xr-x 0 0 0 19919 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_spinners.py - - -rwxr-xr-x 0 0 0 351 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_stack.py - - -rwxr-xr-x 0 0 0 417 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_timer.py - - -rwxr-xr-x 0 0 0 22820 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_win32_console.py - - -rwxr-xr-x 0 0 0 1926 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_windows.py - - -rwxr-xr-x 0 0 0 2783 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_windows_renderer.py - - -rwxr-xr-x 0 0 0 1840 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_wrap.py - - -rwxr-xr-x 0 0 0 890 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/abc.py - - -rwxr-xr-x 0 0 0 10368 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/align.py - - -rwxr-xr-x 0 0 0 6906 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/ansi.py - - -rwxr-xr-x 0 0 0 3264 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/bar.py - - -rwxr-xr-x 0 0 0 9842 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/box.py - - -rwxr-xr-x 0 0 0 4509 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/cells.py - - -rwxr-xr-x 0 0 0 18224 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/color.py - - -rwxr-xr-x 0 0 0 1054 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/color_triplet.py - - -rwxr-xr-x 0 0 0 7131 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/columns.py - - -rwxr-xr-x 0 0 0 99218 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/console.py - - -rwxr-xr-x 0 0 0 1288 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/constrain.py - - -rwxr-xr-x 0 0 0 5497 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/containers.py - - -rwxr-xr-x 0 0 0 6630 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/control.py - - -rwxr-xr-x 0 0 0 8082 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/default_styles.py - - -rwxr-xr-x 0 0 0 972 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/diagnose.py - - -rwxr-xr-x 0 0 0 2501 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/emoji.py - - -rwxr-xr-x 0 0 0 642 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/errors.py - - -rwxr-xr-x 0 0 0 1683 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/file_proxy.py - - -rwxr-xr-x 0 0 0 2508 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/filesize.py - - -rwxr-xr-x 0 0 0 9584 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/highlighter.py - - -rwxr-xr-x 0 0 0 5032 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/json.py - - -rwxr-xr-x 0 0 0 3252 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/jupyter.py - - -rwxr-xr-x 0 0 0 14007 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/layout.py - - -rwxr-xr-x 0 0 0 14273 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/live.py - - -rwxr-xr-x 0 0 0 3667 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/live_render.py - - -rwxr-xr-x 0 0 0 11903 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/logging.py - - -rwxr-xr-x 0 0 0 8198 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/markup.py - - -rwxr-xr-x 0 0 0 5305 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/measure.py - - -rwxr-xr-x 0 0 0 4970 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/padding.py - - -rwxr-xr-x 0 0 0 828 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/pager.py - - -rwxr-xr-x 0 0 0 3396 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/palette.py - - -rwxr-xr-x 0 0 0 10574 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/panel.py - - -rwxr-xr-x 0 0 0 35852 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/pretty.py - - -rwxr-xr-x 0 0 0 59706 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/progress.py - - -rwxr-xr-x 0 0 0 8165 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/progress_bar.py - - -rwxr-xr-x 0 0 0 11303 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/prompt.py - - -rwxr-xr-x 0 0 0 1391 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/protocol.py - - -rwxr-xr-x 0 0 0 166 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/region.py - - -rwxr-xr-x 0 0 0 4431 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/repr.py - - -rwxr-xr-x 0 0 0 4602 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/rule.py - - -rwxr-xr-x 0 0 0 2843 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/scope.py - - -rwxr-xr-x 0 0 0 1591 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/screen.py - - -rwxr-xr-x 0 0 0 24247 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/segment.py - - -rwxr-xr-x 0 0 0 4339 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/spinner.py - - -rwxr-xr-x 0 0 0 4425 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/status.py - - -rwxr-xr-x 0 0 0 27073 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/style.py - - -rwxr-xr-x 0 0 0 1258 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/styled.py - - -rwxr-xr-x 0 0 0 35173 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/syntax.py - - -rwxr-xr-x 0 0 0 39684 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/table.py - - -rwxr-xr-x 0 0 0 3370 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/terminal_theme.py - - -rwxr-xr-x 0 0 0 45525 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/text.py - - -rwxr-xr-x 0 0 0 3777 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/theme.py - - -rwxr-xr-x 0 0 0 102 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/themes.py - - -rwxr-xr-x 0 0 0 29604 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/traceback.py - - -rwxr-xr-x 0 0 0 9169 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/tree.py - - -rwxr-xr-x 0 0 0 34549 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/six.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/ - - -rwxr-xr-x 0 0 0 20493 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/__init__.py - - -rwxr-xr-x 0 0 0 3551 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/_asyncio.py - - -rwxr-xr-x 0 0 0 2179 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/_utils.py - - -rwxr-xr-x 0 0 0 1682 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/after.py - - -rwxr-xr-x 0 0 0 1562 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/before.py - - -rwxr-xr-x 0 0 0 2372 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/before_sleep.py - - -rwxr-xr-x 0 0 0 1383 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/nap.py - - -rwxr-xr-x 0 0 0 8746 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/retry.py - - -rwxr-xr-x 0 0 0 3086 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/stop.py - - -rwxr-xr-x 0 0 0 2142 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/tornadoweb.py - - -rwxr-xr-x 0 0 0 8024 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/wait.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/ - - -rwxr-xr-x 0 0 0 396 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/__init__.py - - -rwxr-xr-x 0 0 0 22633 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/_parser.py - - -rwxr-xr-x 0 0 0 2943 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/_re.py - - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/_types.py - - -rwxr-xr-x 0 0 0 111130 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/typing_extensions.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/ - - -rwxr-xr-x 0 0 0 3333 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/__init__.py - - -rwxr-xr-x 0 0 0 10811 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/_collections.py - - -rwxr-xr-x 0 0 0 64 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/_version.py - - -rwxr-xr-x 0 0 0 20300 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/connection.py - - -rwxr-xr-x 0 0 0 39990 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/__init__.py - - -rwxr-xr-x 0 0 0 957 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py - - -rwxr-xr-x 0 0 0 17632 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py - - -rwxr-xr-x 0 0 0 13922 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py - - -rwxr-xr-x 0 0 0 11036 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/appengine.py - - -rwxr-xr-x 0 0 0 4528 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py - - -rwxr-xr-x 0 0 0 17081 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py - - -rwxr-xr-x 0 0 0 34448 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/securetransport.py - - -rwxr-xr-x 0 0 0 7097 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/socks.py - - -rwxr-xr-x 0 0 0 8217 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/exceptions.py - - -rwxr-xr-x 0 0 0 8579 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/fields.py - - -rwxr-xr-x 0 0 0 2440 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/filepost.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py - - -rwxr-xr-x 0 0 0 1417 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py - - -rwxr-xr-x 0 0 0 5343 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py - - -rwxr-xr-x 0 0 0 34665 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/six.py - - -rwxr-xr-x 0 0 0 19752 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/poolmanager.py - - -rwxr-xr-x 0 0 0 5985 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/request.py - - -rwxr-xr-x 0 0 0 30641 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/response.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ - - -rwxr-xr-x 0 0 0 1155 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/__init__.py - - -rwxr-xr-x 0 0 0 4901 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/connection.py - - -rwxr-xr-x 0 0 0 1605 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/proxy.py - - -rwxr-xr-x 0 0 0 498 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/queue.py - - -rwxr-xr-x 0 0 0 3997 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/request.py - - -rwxr-xr-x 0 0 0 3510 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/response.py - - -rwxr-xr-x 0 0 0 22003 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/retry.py - - -rwxr-xr-x 0 0 0 17177 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_.py - - -rwxr-xr-x 0 0 0 5758 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py - - -rwxr-xr-x 0 0 0 6895 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssltransport.py - - -rwxr-xr-x 0 0 0 10168 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/timeout.py - - -rwxr-xr-x 0 0 0 14296 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/url.py - - -rwxr-xr-x 0 0 0 5403 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/wait.py - - -rwxr-xr-x 0 0 0 475 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/vendor.txt - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/webencodings/ - - -rwxr-xr-x 0 0 0 10579 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/webencodings/__init__.py - - -rwxr-xr-x 0 0 0 8979 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/webencodings/labels.py - - -rwxr-xr-x 0 0 0 1305 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/webencodings/mklabels.py - - -rwxr-xr-x 0 0 0 6563 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/webencodings/tests.py - - -rwxr-xr-x 0 0 0 4307 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/webencodings/x_user_defined.py - - -rwxr-xr-x 0 0 0 286 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/py.typed - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/ - - -rwxr-xr-x 0 0 0 109429 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/ - - -rwxr-xr-x 0 0 0 506 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py - - -rwxr-xr-x 0 0 0 4504 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_adapters.py - - -rwxr-xr-x 0 0 0 5457 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_common.py - - -rwxr-xr-x 0 0 0 2925 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_compat.py - - -rwxr-xr-x 0 0 0 884 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py - - -rwxr-xr-x 0 0 0 3481 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_legacy.py - - -rwxr-xr-x 0 0 0 5140 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/abc.py - - -rwxr-xr-x 0 0 0 3581 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/readers.py - - -rwxr-xr-x 0 0 0 2576 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/simple.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/__init__.py - - -rwxr-xr-x 0 0 0 7460 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/context.py - - -rwxr-xr-x 0 0 0 15056 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/functools.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/text/ - - -rwxr-xr-x 0 0 0 15526 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/text/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/ - - -rwxr-xr-x 0 0 0 148 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/__init__.py - - -rwxr-xr-x 0 0 0 134976 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/more.py - - -rwxr-xr-x 0 0 0 25416 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/recipes.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/ - - -rwxr-xr-x 0 0 0 501 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/__init__.py - - -rwxr-xr-x 0 0 0 3266 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_elffile.py - - -rwxr-xr-x 0 0 0 8926 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_manylinux.py - - -rwxr-xr-x 0 0 0 2524 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_musllinux.py - - -rwxr-xr-x 0 0 0 10194 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_parser.py - - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_structures.py - - -rwxr-xr-x 0 0 0 5292 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_tokenizer.py - - -rwxr-xr-x 0 0 0 8208 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/markers.py - - -rwxr-xr-x 0 0 0 16397 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/metadata.py - - -rwxr-xr-x 0 0 0 3287 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/requirements.py - - -rwxr-xr-x 0 0 0 39206 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/specifiers.py - - -rwxr-xr-x 0 0 0 18106 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/tags.py - - -rwxr-xr-x 0 0 0 4355 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/utils.py - - -rwxr-xr-x 0 0 0 16326 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/version.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/ - - -rwxr-xr-x 0 0 0 12806 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/__init__.py - - -rwxr-xr-x 0 0 0 1164 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/__main__.py - - -rwxr-xr-x 0 0 0 4068 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/android.py - - -rwxr-xr-x 0 0 0 4910 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/api.py - - -rwxr-xr-x 0 0 0 2655 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/macos.py - - -rwxr-xr-x 0 0 0 6911 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/unix.py - - -rwxr-xr-x 0 0 0 160 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/version.py - - -rwxr-xr-x 0 0 0 6596 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/windows.py - - -rwxr-xr-x 0 0 0 80078 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/typing_extensions.py - - -rwxr-xr-x 0 0 0 8425 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/zipp.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/extern/ - - -rwxr-xr-x 0 0 0 2442 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/extern/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/ - - -rwxr-xr-x 0 0 0 4 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/INSTALLER - - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/LICENSE - - -rwxr-xr-x 0 0 0 6278 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/METADATA - - -rwxr-xr-x 0 0 0 36889 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/RECORD - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/REQUESTED - - -rwxr-xr-x 0 0 0 92 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/WHEEL - - -rwxr-xr-x 0 0 0 250 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/direct_url.json - - -rwxr-xr-x 0 0 0 2676 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/entry_points.txt - - -rwxr-xr-x 0 0 0 41 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-68.2.2.dist-info/top_level.txt - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/ - - -rwxr-xr-x 0 0 0 9214 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/__init__.py - - -rwxr-xr-x 0 0 0 8921 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_core_metadata.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/ - - -rwxr-xr-x 0 0 0 359 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/__init__.py - - -rwxr-xr-x 0 0 0 5300 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_collections.py - - -rwxr-xr-x 0 0 0 411 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_functools.py - - -rwxr-xr-x 0 0 0 43 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_log.py - - -rwxr-xr-x 0 0 0 239 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_macos_compat.py - - -rwxr-xr-x 0 0 0 19616 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_msvccompiler.py - - -rwxr-xr-x 0 0 0 8572 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/archive_util.py - - -rwxr-xr-x 0 0 0 14721 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/bcppcompiler.py - - -rwxr-xr-x 0 0 0 48643 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/ccompiler.py - - -rwxr-xr-x 0 0 0 17861 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/cmd.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/ - - -rwxr-xr-x 0 0 0 430 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/__init__.py - - -rwxr-xr-x 0 0 0 1614 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/_framework_compat.py - - -rwxr-xr-x 0 0 0 5408 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/bdist.py - - -rwxr-xr-x 0 0 0 4665 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/bdist_dumb.py - - -rwxr-xr-x 0 0 0 22013 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/bdist_rpm.py - - -rwxr-xr-x 0 0 0 5584 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build.py - - -rwxr-xr-x 0 0 0 7684 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build_clib.py - - -rwxr-xr-x 0 0 0 31503 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build_ext.py - - -rwxr-xr-x 0 0 0 16537 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build_py.py - - -rwxr-xr-x 0 0 0 5604 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build_scripts.py - - -rwxr-xr-x 0 0 0 4872 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/check.py - - -rwxr-xr-x 0 0 0 2594 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/clean.py - - -rwxr-xr-x 0 0 0 13077 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/config.py - - -rwxr-xr-x 0 0 0 30153 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install.py - - -rwxr-xr-x 0 0 0 2762 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_data.py - - -rwxr-xr-x 0 0 0 2788 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_egg_info.py - - -rwxr-xr-x 0 0 0 1180 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_headers.py - - -rwxr-xr-x 0 0 0 8409 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_lib.py - - -rwxr-xr-x 0 0 0 1932 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_scripts.py - - -rwxr-xr-x 0 0 0 672 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/py37compat.py - - -rwxr-xr-x 0 0 0 11817 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/register.py - - -rwxr-xr-x 0 0 0 19232 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/sdist.py - - -rwxr-xr-x 0 0 0 7491 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/upload.py - - -rwxr-xr-x 0 0 0 4911 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/config.py - - -rwxr-xr-x 0 0 0 9397 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/core.py - - -rwxr-xr-x 0 0 0 11924 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/cygwinccompiler.py - - -rwxr-xr-x 0 0 0 139 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/debug.py - - -rwxr-xr-x 0 0 0 3414 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/dep_util.py - - -rwxr-xr-x 0 0 0 8072 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/dir_util.py - - -rwxr-xr-x 0 0 0 50174 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/dist.py - - -rwxr-xr-x 0 0 0 3589 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/errors.py - - -rwxr-xr-x 0 0 0 10270 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/extension.py - - -rwxr-xr-x 0 0 0 17899 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/fancy_getopt.py - - -rwxr-xr-x 0 0 0 8212 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/file_util.py - - -rwxr-xr-x 0 0 0 13715 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/filelist.py - - -rwxr-xr-x 0 0 0 1201 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/log.py - - -rwxr-xr-x 0 0 0 30188 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/msvc9compiler.py - - -rwxr-xr-x 0 0 0 23577 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/msvccompiler.py - - -rwxr-xr-x 0 0 0 217 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/py38compat.py - - -rwxr-xr-x 0 0 0 639 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/py39compat.py - - -rwxr-xr-x 0 0 0 3495 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/spawn.py - - -rwxr-xr-x 0 0 0 18928 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py - - -rwxr-xr-x 0 0 0 12085 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/text_file.py - - -rwxr-xr-x 0 0 0 15601 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/unixccompiler.py - - -rwxr-xr-x 0 0 0 18099 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/util.py - - -rwxr-xr-x 0 0 0 12951 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/version.py - - -rwxr-xr-x 0 0 0 5205 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/versionpredicate.py - - -rwxr-xr-x 0 0 0 2235 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_entry_points.py - - -rwxr-xr-x 0 0 0 2433 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_imp.py - - -rwxr-xr-x 0 0 0 1468 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_importlib.py - - -rwxr-xr-x 0 0 0 675 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_itertools.py - - -rwxr-xr-x 0 0 0 4042 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_normalization.py - - -rwxr-xr-x 0 0 0 1056 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_path.py - - -rwxr-xr-x 0 0 0 1120 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_reqs.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/ - - -rwxr-xr-x 0 0 0 26498 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/__init__.py - - -rwxr-xr-x 0 0 0 2454 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py - - -rwxr-xr-x 0 0 0 743 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_collections.py - - -rwxr-xr-x 0 0 0 1859 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_compat.py - - -rwxr-xr-x 0 0 0 2895 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_functools.py - - -rwxr-xr-x 0 0 0 2068 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py - - -rwxr-xr-x 0 0 0 1165 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_meta.py - - -rwxr-xr-x 0 0 0 1098 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_py39compat.py - - -rwxr-xr-x 0 0 0 2166 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_text.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/ - - -rwxr-xr-x 0 0 0 506 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/__init__.py - - -rwxr-xr-x 0 0 0 4504 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_adapters.py - - -rwxr-xr-x 0 0 0 5457 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_common.py - - -rwxr-xr-x 0 0 0 2925 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_compat.py - - -rwxr-xr-x 0 0 0 884 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_itertools.py - - -rwxr-xr-x 0 0 0 3481 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_legacy.py - - -rwxr-xr-x 0 0 0 5140 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/abc.py - - -rwxr-xr-x 0 0 0 3581 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/readers.py - - -rwxr-xr-x 0 0 0 2576 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/simple.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/__init__.py - - -rwxr-xr-x 0 0 0 7460 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/context.py - - -rwxr-xr-x 0 0 0 15053 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/functools.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/text/ - - -rwxr-xr-x 0 0 0 15517 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/text/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/ - - -rwxr-xr-x 0 0 0 82 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/__init__.py - - -rwxr-xr-x 0 0 0 117959 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/more.py - - -rwxr-xr-x 0 0 0 16256 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/recipes.py - - -rwxr-xr-x 0 0 0 15130 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/ordered_set.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/ - - -rwxr-xr-x 0 0 0 501 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/__init__.py - - -rwxr-xr-x 0 0 0 3266 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_elffile.py - - -rwxr-xr-x 0 0 0 8926 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_manylinux.py - - -rwxr-xr-x 0 0 0 2524 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_musllinux.py - - -rwxr-xr-x 0 0 0 10194 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_parser.py - - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_structures.py - - -rwxr-xr-x 0 0 0 5292 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_tokenizer.py - - -rwxr-xr-x 0 0 0 8208 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/markers.py - - -rwxr-xr-x 0 0 0 16397 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/metadata.py - - -rwxr-xr-x 0 0 0 3287 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/requirements.py - - -rwxr-xr-x 0 0 0 39206 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/specifiers.py - - -rwxr-xr-x 0 0 0 18106 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/tags.py - - -rwxr-xr-x 0 0 0 4355 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/utils.py - - -rwxr-xr-x 0 0 0 16326 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/version.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/ - - -rwxr-xr-x 0 0 0 396 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/__init__.py - - -rwxr-xr-x 0 0 0 22633 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/_parser.py - - -rwxr-xr-x 0 0 0 2943 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/_re.py - - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/_types.py - - -rwxr-xr-x 0 0 0 87149 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/typing_extensions.py - - -rwxr-xr-x 0 0 0 8425 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/zipp.py - - -rwxr-xr-x 0 0 0 7331 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/archive_util.py - - -rwxr-xr-x 0 0 0 20091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/build_meta.py - - -rwxr-xr-x 0 0 0 11776 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/cli-32.exe - - -rwxr-xr-x 0 0 0 14336 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/cli-64.exe - - -rwxr-xr-x 0 0 0 13824 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/cli-arm64.exe - - -rwxr-xr-x 0 0 0 11776 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/cli.exe - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/ - - -rwxr-xr-x 0 0 0 396 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/__init__.py - - -rwxr-xr-x 0 0 0 4207 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/_requirestxt.py - - -rwxr-xr-x 0 0 0 2383 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/alias.py - - -rwxr-xr-x 0 0 0 16559 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/bdist_egg.py - - -rwxr-xr-x 0 0 0 1309 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/bdist_rpm.py - - -rwxr-xr-x 0 0 0 6784 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/build.py - - -rwxr-xr-x 0 0 0 4398 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/build_clib.py - - -rwxr-xr-x 0 0 0 17504 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/build_ext.py - - -rwxr-xr-x 0 0 0 14997 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/build_py.py - - -rwxr-xr-x 0 0 0 6722 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/develop.py - - -rwxr-xr-x 0 0 0 4242 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/dist_info.py - - -rwxr-xr-x 0 0 0 86493 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/easy_install.py - - -rwxr-xr-x 0 0 0 33758 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/editable_wheel.py - - -rwxr-xr-x 0 0 0 26399 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/egg_info.py - - -rwxr-xr-x 0 0 0 5627 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/install.py - - -rwxr-xr-x 0 0 0 2066 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/install_egg_info.py - - -rwxr-xr-x 0 0 0 3870 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/install_lib.py - - -rwxr-xr-x 0 0 0 2359 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/install_scripts.py - - -rwxr-xr-x 0 0 0 468 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/register.py - - -rwxr-xr-x 0 0 0 2097 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/rotate.py - - -rwxr-xr-x 0 0 0 657 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/saveopts.py - - -rwxr-xr-x 0 0 0 7098 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/sdist.py - - -rwxr-xr-x 0 0 0 4927 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/setopt.py - - -rwxr-xr-x 0 0 0 8101 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/test.py - - -rwxr-xr-x 0 0 0 462 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/upload.py - - -rwxr-xr-x 0 0 0 7773 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/upload_docs.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/ - - -rwxr-xr-x 0 0 0 1498 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/__init__.py - - -rwxr-xr-x 0 0 0 14113 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_apply_pyprojecttoml.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/ - - -rwxr-xr-x 0 0 0 1038 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/__init__.py - - -rwxr-xr-x 0 0 0 11266 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/error_reporting.py - - -rwxr-xr-x 0 0 0 1153 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/extra_validations.py - - -rwxr-xr-x 0 0 0 1612 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py - - -rwxr-xr-x 0 0 0 274908 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py - - -rwxr-xr-x 0 0 0 9160 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/formats.py - - -rwxr-xr-x 0 0 0 16401 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/expand.py - - -rwxr-xr-x 0 0 0 17490 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/pyprojecttoml.py - - -rwxr-xr-x 0 0 0 26184 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/setupcfg.py - - -rwxr-xr-x 0 0 0 936 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/dep_util.py - - -rwxr-xr-x 0 0 0 5518 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/depends.py - - -rwxr-xr-x 0 0 0 21147 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/discovery.py - - -rwxr-xr-x 0 0 0 38173 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/dist.py - - -rwxr-xr-x 0 0 0 2464 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/errors.py - - -rwxr-xr-x 0 0 0 5591 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/extension.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/extern/ - - -rwxr-xr-x 0 0 0 2539 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/extern/__init__.py - - -rwxr-xr-x 0 0 0 4868 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/glob.py - - -rwxr-xr-x 0 0 0 11776 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/gui-32.exe - - -rwxr-xr-x 0 0 0 14336 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/gui-64.exe - - -rwxr-xr-x 0 0 0 13824 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/gui-arm64.exe - - -rwxr-xr-x 0 0 0 11776 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/gui.exe - - -rwxr-xr-x 0 0 0 4989 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/installer.py - - -rwxr-xr-x 0 0 0 812 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/launch.py - - -rwxr-xr-x 0 0 0 1239 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/logging.py - - -rwxr-xr-x 0 0 0 4782 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/monkey.py - - -rwxr-xr-x 0 0 0 47495 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/msvc.py - - -rwxr-xr-x 0 0 0 3073 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/namespaces.py - - -rwxr-xr-x 0 0 0 38350 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/package_index.py - - -rwxr-xr-x 0 0 0 330 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/py312compat.py - - -rwxr-xr-x 0 0 0 14349 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/sandbox.py - - -rwxr-xr-x 0 0 0 138 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/script.tmpl - - -rwxr-xr-x 0 0 0 941 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/unicode_utils.py - - -rwxr-xr-x 0 0 0 161 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/version.py - - -rwxr-xr-x 0 0 0 3697 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/warnings.py - - -rwxr-xr-x 0 0 0 8628 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/wheel.py - - -rwxr-xr-x 0 0 0 719 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/windows_support.py - - -rwxr-xr-x 0 0 0 21564 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/site.py - - -rwxr-xr-x 0 0 0 34823 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/smtpd.py - - -rwxr-xr-x 0 0 0 45407 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/smtplib.py - - -rwxr-xr-x 0 0 0 7099 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/sndhdr.py - - -rwxr-xr-x 0 0 0 36694 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/socket.py - - -rwxr-xr-x 0 0 0 27296 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/socketserver.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/sqlite3/ - - -rwxr-xr-x 0 0 0 2014 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/sqlite3/__init__.py - - -rwxr-xr-x 0 0 0 2687 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/sqlite3/dbapi2.py - - -rwxr-xr-x 0 0 0 2825 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/sqlite3/dump.py - - -rwxr-xr-x 0 0 0 27973 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/sre_compile.py - - -rwxr-xr-x 0 0 0 7177 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/sre_constants.py - - -rwxr-xr-x 0 0 0 40779 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/sre_parse.py - - -rwxr-xr-x 0 0 0 52530 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/ssl.py - - -rwxr-xr-x 0 0 0 5485 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/stat.py - - -rwxr-xr-x 0 0 0 38067 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/statistics.py - - -rwxr-xr-x 0 0 0 10566 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/string.py - - -rwxr-xr-x 0 0 0 12917 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/stringprep.py - - -rwxr-xr-x 0 0 0 257 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/struct.py - - -rwxr-xr-x 0 0 0 83564 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/subprocess.py - - -rwxr-xr-x 0 0 0 18158 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/sunau.py - - -rwxr-xr-x 0 0 0 2281 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/symbol.py - - -rwxr-xr-x 0 0 0 7905 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/symtable.py - - -rwxr-xr-x 0 0 0 24914 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/sysconfig.py - - -rwxr-xr-x 0 0 0 11408 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tabnanny.py - - -rwxr-xr-x 0 0 0 105355 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tarfile.py - - -rwxr-xr-x 0 0 0 23254 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/telnetlib.py - - -rwxr-xr-x 0 0 0 27678 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tempfile.py - - -rwxr-xr-x 0 0 0 19407 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/textwrap.py - - -rwxr-xr-x 0 0 0 1003 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/this.py - - -rwxr-xr-x 0 0 0 54176 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/threading.py - - -rwxr-xr-x 0 0 0 13482 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/timeit.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/ - - -rwxr-xr-x 0 0 0 169626 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/__init__.py - - -rwxr-xr-x 0 0 0 148 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/__main__.py - - -rwxr-xr-x 0 0 0 2660 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/colorchooser.py - - -rwxr-xr-x 0 0 0 1245 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/commondialog.py - - -rwxr-xr-x 0 0 0 1493 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/constants.py - - -rwxr-xr-x 0 0 0 1543 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/dialog.py - - -rwxr-xr-x 0 0 0 11528 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/dnd.py - - -rwxr-xr-x 0 0 0 14947 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/filedialog.py - - -rwxr-xr-x 0 0 0 6821 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/font.py - - -rwxr-xr-x 0 0 0 3861 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/messagebox.py - - -rwxr-xr-x 0 0 0 1816 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/scrolledtext.py - - -rwxr-xr-x 0 0 0 11757 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/simpledialog.py - - -rwxr-xr-x 0 0 0 76845 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/tix.py - - -rwxr-xr-x 0 0 0 57139 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/ttk.py - - -rwxr-xr-x 0 0 0 2368 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/token.py - - -rwxr-xr-x 0 0 0 25883 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tokenize.py - - -rwxr-xr-x 0 0 0 29208 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/trace.py - - -rwxr-xr-x 0 0 0 24660 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/traceback.py - - -rwxr-xr-x 0 0 0 18047 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tracemalloc.py - - -rwxr-xr-x 0 0 0 879 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/tty.py - - -rwxr-xr-x 0 0 0 143796 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtle.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/ - - -rwxr-xr-x 0 0 0 314 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/__init__.py - - -rwxr-xr-x 0 0 0 15050 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/__main__.py - - -rwxr-xr-x 0 0 0 4248 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/bytedesign.py - - -rwxr-xr-x 0 0 0 951 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/chaos.py - - -rwxr-xr-x 0 0 0 3201 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/clock.py - - -rwxr-xr-x 0 0 0 1339 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/colormixer.py - - -rwxr-xr-x 0 0 0 2966 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/forest.py - - -rwxr-xr-x 0 0 0 3473 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/fractalcurves.py - - -rwxr-xr-x 0 0 0 2434 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/lindenmayer.py - - -rwxr-xr-x 0 0 0 2051 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/minimal_hanoi.py - - -rwxr-xr-x 0 0 0 6513 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/nim.py - - -rwxr-xr-x 0 0 0 1291 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/paint.py - - -rwxr-xr-x 0 0 0 1066 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/peace.py - - -rwxr-xr-x 0 0 0 3380 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/penrose.py - - -rwxr-xr-x 0 0 0 2825 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/planet_and_moon.py - - -rwxr-xr-x 0 0 0 1361 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/rosette.py - - -rwxr-xr-x 0 0 0 1804 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/round_dance.py - - -rwxr-xr-x 0 0 0 5052 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/sorting_animate.py - - -rwxr-xr-x 0 0 0 1401 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/tree.py - - -rwxr-xr-x 0 0 0 160 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/turtle.cfg - - -rwxr-xr-x 0 0 0 1119 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/two_canvases.py - - -rwxr-xr-x 0 0 0 821 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/yinyang.py - - -rwxr-xr-x 0 0 0 9785 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/types.py - - -rwxr-xr-x 0 0 0 77044 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/typing.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/ - - -rwxr-xr-x 0 0 0 3761 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/__init__.py - - -rwxr-xr-x 0 0 0 472 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/__main__.py - - -rwxr-xr-x 0 0 0 2295 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/_log.py - - -rwxr-xr-x 0 0 0 6368 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/async_case.py - - -rwxr-xr-x 0 0 0 57155 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/case.py - - -rwxr-xr-x 0 0 0 22702 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/loader.py - - -rwxr-xr-x 0 0 0 11256 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/main.py - - -rwxr-xr-x 0 0 0 99217 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/mock.py - - -rwxr-xr-x 0 0 0 8364 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/result.py - - -rwxr-xr-x 0 0 0 8051 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/runner.py - - -rwxr-xr-x 0 0 0 2403 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/signals.py - - -rwxr-xr-x 0 0 0 13512 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/suite.py - - -rwxr-xr-x 0 0 0 5215 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/unittest/util.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/urllib/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/urllib/__init__.py - - -rwxr-xr-x 0 0 0 2632 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/urllib/error.py - - -rwxr-xr-x 0 0 0 43065 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/urllib/parse.py - - -rwxr-xr-x 0 0 0 101659 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/urllib/request.py - - -rwxr-xr-x 0 0 0 2361 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/urllib/response.py - - -rwxr-xr-x 0 0 0 9424 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/urllib/robotparser.py - - -rwxr-xr-x 0 0 0 7301 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/uu.py - - -rwxr-xr-x 0 0 0 27324 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/uuid.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/venv/ - - -rwxr-xr-x 0 0 0 23213 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/venv/__init__.py - - -rwxr-xr-x 0 0 0 145 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/venv/__main__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/common/ - - -rwxr-xr-x 0 0 0 8834 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/common/Activate.ps1 - - -rwxr-xr-x 0 0 0 1909 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/common/activate - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/posix/ - - -rwxr-xr-x 0 0 0 858 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/posix/activate.csh - - -rwxr-xr-x 0 0 0 1998 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/posix/activate.fish - - -rwxr-xr-x 0 0 0 19688 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/warnings.py - - -rwxr-xr-x 0 0 0 18004 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/wave.py - - -rwxr-xr-x 0 0 0 21560 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/weakref.py - - -rwxr-xr-x 0 0 0 24085 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/webbrowser.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/ - - -rwxr-xr-x 0 0 0 587 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/__init__.py - - -rwxr-xr-x 0 0 0 21669 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/handlers.py - - -rwxr-xr-x 0 0 0 6766 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/headers.py - - -rwxr-xr-x 0 0 0 5171 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/simple_server.py - - -rwxr-xr-x 0 0 0 5851 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/util.py - - -rwxr-xr-x 0 0 0 15099 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/validate.py - - -rwxr-xr-x 0 0 0 5913 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xdrlib.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/ - - -rwxr-xr-x 0 0 0 557 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/ - - -rwxr-xr-x 0 0 0 936 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/NodeFilter.py - - -rwxr-xr-x 0 0 0 4019 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/__init__.py - - -rwxr-xr-x 0 0 0 3451 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/domreg.py - - -rwxr-xr-x 0 0 0 35767 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/expatbuilder.py - - -rwxr-xr-x 0 0 0 3367 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/minicompat.py - - -rwxr-xr-x 0 0 0 68066 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/minidom.py - - -rwxr-xr-x 0 0 0 11997 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/pulldom.py - - -rwxr-xr-x 0 0 0 12387 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/xmlbuilder.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/etree/ - - -rwxr-xr-x 0 0 0 6882 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/etree/ElementInclude.py - - -rwxr-xr-x 0 0 0 13063 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/etree/ElementPath.py - - -rwxr-xr-x 0 0 0 73913 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/etree/ElementTree.py - - -rwxr-xr-x 0 0 0 1605 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/etree/__init__.py - - -rwxr-xr-x 0 0 0 82 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/etree/cElementTree.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/parsers/ - - -rwxr-xr-x 0 0 0 167 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/parsers/__init__.py - - -rwxr-xr-x 0 0 0 248 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/parsers/expat.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/ - - -rwxr-xr-x 0 0 0 3642 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/__init__.py - - -rwxr-xr-x 0 0 0 4785 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/_exceptions.py - - -rwxr-xr-x 0 0 0 15727 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/expatreader.py - - -rwxr-xr-x 0 0 0 13922 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/handler.py - - -rwxr-xr-x 0 0 0 12255 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/saxutils.py - - -rwxr-xr-x 0 0 0 12684 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/xmlreader.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xmlrpc/ - - -rwxr-xr-x 0 0 0 38 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xmlrpc/__init__.py - - -rwxr-xr-x 0 0 0 49391 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xmlrpc/client.py - - -rwxr-xr-x 0 0 0 36672 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/xmlrpc/server.py - - -rwxr-xr-x 0 0 0 7535 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/zipapp.py - - -rwxr-xr-x 0 0 0 87492 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/zipfile.py - - -rwxr-xr-x 0 0 0 30765 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/zipimport.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/zoneinfo/ - - -rwxr-xr-x 0 0 0 703 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/zoneinfo/__init__.py - - -rwxr-xr-x 0 0 0 5320 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/zoneinfo/_common.py - - -rwxr-xr-x 0 0 0 5081 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/zoneinfo/_tzpath.py - - -rwxr-xr-x 0 0 0 24318 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/python3.9/zoneinfo/_zoneinfo.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/ - - -rwxr-xr-x 0 0 0 20875 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/auto.tcl - - -rwxr-xr-x 0 0 0 128893 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/clock.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/ - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/ascii.enc - - -rwxr-xr-x 0 0 0 92873 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/big5.enc - - -rwxr-xr-x 0 0 0 97050 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cns11643.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1250.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1251.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1252.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1253.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1254.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1255.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1256.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1257.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1258.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp437.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp737.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp775.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp850.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp852.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp855.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp857.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp860.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp861.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp862.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp863.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp864.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp865.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp866.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp869.enc - - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp874.enc - - -rwxr-xr-x 0 0 0 48207 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp932.enc - - -rwxr-xr-x 0 0 0 132509 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp936.enc - - -rwxr-xr-x 0 0 0 130423 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp949.enc - - -rwxr-xr-x 0 0 0 91831 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp950.enc - - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/dingbats.enc - - -rwxr-xr-x 0 0 0 1054 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/ebcdic.enc - - -rwxr-xr-x 0 0 0 85574 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/euc-cn.enc - - -rwxr-xr-x 0 0 0 82537 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/euc-jp.enc - - -rwxr-xr-x 0 0 0 93918 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/euc-kr.enc - - -rwxr-xr-x 0 0 0 86619 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/gb12345.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/gb1988.enc - - -rwxr-xr-x 0 0 0 84532 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/gb2312-raw.enc - - -rwxr-xr-x 0 0 0 85574 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/gb2312.enc - - -rwxr-xr-x 0 0 0 192 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso2022-jp.enc - - -rwxr-xr-x 0 0 0 115 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso2022-kr.enc - - -rwxr-xr-x 0 0 0 226 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso2022.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-1.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-10.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-11.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-13.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-14.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-15.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-16.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-2.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-3.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-4.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-5.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-6.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-7.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-8.enc - - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-9.enc - - -rwxr-xr-x 0 0 0 1092 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/jis0201.enc - - -rwxr-xr-x 0 0 0 80453 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/jis0208.enc - - -rwxr-xr-x 0 0 0 70974 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/jis0212.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/koi8-r.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/koi8-u.enc - - -rwxr-xr-x 0 0 0 92877 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/ksc5601.enc - - -rwxr-xr-x 0 0 0 1096 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macCentEuro.enc - - -rwxr-xr-x 0 0 0 1096 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macCroatian.enc - - -rwxr-xr-x 0 0 0 1096 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macCyrillic.enc - - -rwxr-xr-x 0 0 0 1096 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macDingbats.enc - - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macGreek.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macIceland.enc - - -rwxr-xr-x 0 0 0 48028 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macJapan.enc - - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macRoman.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macRomania.enc - - -rwxr-xr-x 0 0 0 1092 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macThai.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macTurkish.enc - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macUkraine.enc - - -rwxr-xr-x 0 0 0 41862 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/shiftjis.enc - - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/symbol.enc - - -rwxr-xr-x 0 0 0 1092 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/tis-620.enc - - -rwxr-xr-x 0 0 0 7900 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/history.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/http1.0/ - - -rwxr-xr-x 0 0 0 9689 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/http1.0/http.tcl - - -rwxr-xr-x 0 0 0 735 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/http1.0/pkgIndex.tcl - - -rwxr-xr-x 0 0 0 24806 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/init.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ - - -rwxr-xr-x 0 0 0 989 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/af.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/af_za.msg - - -rwxr-xr-x 0 0 0 1964 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ar.msg - - -rwxr-xr-x 0 0 0 259 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ar_in.msg - - -rwxr-xr-x 0 0 0 1812 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ar_jo.msg - - -rwxr-xr-x 0 0 0 1812 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ar_lb.msg - - -rwxr-xr-x 0 0 0 1812 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ar_sy.msg - - -rwxr-xr-x 0 0 0 2105 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/be.msg - - -rwxr-xr-x 0 0 0 1819 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/bg.msg - - -rwxr-xr-x 0 0 0 2286 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/bn.msg - - -rwxr-xr-x 0 0 0 259 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/bn_in.msg - - -rwxr-xr-x 0 0 0 1102 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ca.msg - - -rwxr-xr-x 0 0 0 1300 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/cs.msg - - -rwxr-xr-x 0 0 0 1156 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/da.msg - - -rwxr-xr-x 0 0 0 1222 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/de.msg - - -rwxr-xr-x 0 0 0 812 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/de_at.msg - - -rwxr-xr-x 0 0 0 1223 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/de_be.msg - - -rwxr-xr-x 0 0 0 2252 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/el.msg - - -rwxr-xr-x 0 0 0 300 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_au.msg - - -rwxr-xr-x 0 0 0 305 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_be.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_bw.msg - - -rwxr-xr-x 0 0 0 288 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_ca.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_gb.msg - - -rwxr-xr-x 0 0 0 321 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_hk.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_ie.msg - - -rwxr-xr-x 0 0 0 310 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_in.msg - - -rwxr-xr-x 0 0 0 300 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_nz.msg - - -rwxr-xr-x 0 0 0 321 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_ph.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_sg.msg - - -rwxr-xr-x 0 0 0 245 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_za.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_zw.msg - - -rwxr-xr-x 0 0 0 1231 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/eo.msg - - -rwxr-xr-x 0 0 0 1180 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es.msg - - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_ar.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_bo.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_cl.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_co.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_cr.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_do.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_ec.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_gt.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_hn.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_mx.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_ni.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_pa.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_pe.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_pr.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_py.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_sv.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_uy.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_ve.msg - - -rwxr-xr-x 0 0 0 1206 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/et.msg - - -rwxr-xr-x 0 0 0 985 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/eu.msg - - -rwxr-xr-x 0 0 0 287 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/eu_es.msg - - -rwxr-xr-x 0 0 0 1664 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fa.msg - - -rwxr-xr-x 0 0 0 1957 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fa_in.msg - - -rwxr-xr-x 0 0 0 417 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fa_ir.msg - - -rwxr-xr-x 0 0 0 1145 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fi.msg - - -rwxr-xr-x 0 0 0 986 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fo.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fo_fo.msg - - -rwxr-xr-x 0 0 0 1205 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fr.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fr_be.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fr_ca.msg - - -rwxr-xr-x 0 0 0 281 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fr_ch.msg - - -rwxr-xr-x 0 0 0 1141 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ga.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ga_ie.msg - - -rwxr-xr-x 0 0 0 950 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/gl.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/gl_es.msg - - -rwxr-xr-x 0 0 0 1037 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/gv.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/gv_gb.msg - - -rwxr-xr-x 0 0 0 1938 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/he.msg - - -rwxr-xr-x 0 0 0 1738 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/hi.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/hi_in.msg - - -rwxr-xr-x 0 0 0 1121 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/hr.msg - - -rwxr-xr-x 0 0 0 1327 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/hu.msg - - -rwxr-xr-x 0 0 0 914 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/id.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/id_id.msg - - -rwxr-xr-x 0 0 0 1255 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/is.msg - - -rwxr-xr-x 0 0 0 1240 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/it.msg - - -rwxr-xr-x 0 0 0 244 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/it_ch.msg - - -rwxr-xr-x 0 0 0 1645 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ja.msg - - -rwxr-xr-x 0 0 0 978 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/kl.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/kl_gl.msg - - -rwxr-xr-x 0 0 0 1566 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ko.msg - - -rwxr-xr-x 0 0 0 346 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ko_kr.msg - - -rwxr-xr-x 0 0 0 1958 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/kok.msg - - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/kok_in.msg - - -rwxr-xr-x 0 0 0 966 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/kw.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/kw_gb.msg - - -rwxr-xr-x 0 0 0 1255 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/lt.msg - - -rwxr-xr-x 0 0 0 1219 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/lv.msg - - -rwxr-xr-x 0 0 0 2105 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/mk.msg - - -rwxr-xr-x 0 0 0 1807 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/mr.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/mr_in.msg - - -rwxr-xr-x 0 0 0 910 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ms.msg - - -rwxr-xr-x 0 0 0 259 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ms_my.msg - - -rwxr-xr-x 0 0 0 690 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/mt.msg - - -rwxr-xr-x 0 0 0 1157 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/nb.msg - - -rwxr-xr-x 0 0 0 1079 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/nl.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/nl_be.msg - - -rwxr-xr-x 0 0 0 1148 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/nn.msg - - -rwxr-xr-x 0 0 0 1211 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/pl.msg - - -rwxr-xr-x 0 0 0 1127 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/pt.msg - - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/pt_br.msg - - -rwxr-xr-x 0 0 0 1172 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ro.msg - - -rwxr-xr-x 0 0 0 2039 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ru.msg - - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ru_ua.msg - - -rwxr-xr-x 0 0 0 1160 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sh.msg - - -rwxr-xr-x 0 0 0 1203 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sk.msg - - -rwxr-xr-x 0 0 0 1164 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sl.msg - - -rwxr-xr-x 0 0 0 1267 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sq.msg - - -rwxr-xr-x 0 0 0 2035 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sr.msg - - -rwxr-xr-x 0 0 0 1167 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sv.msg - - -rwxr-xr-x 0 0 0 991 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sw.msg - - -rwxr-xr-x 0 0 0 1835 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ta.msg - - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ta_in.msg - - -rwxr-xr-x 0 0 0 2102 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/te.msg - - -rwxr-xr-x 0 0 0 411 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/te_in.msg - - -rwxr-xr-x 0 0 0 2305 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/th.msg - - -rwxr-xr-x 0 0 0 1133 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/tr.msg - - -rwxr-xr-x 0 0 0 2113 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/uk.msg - - -rwxr-xr-x 0 0 0 1421 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/vi.msg - - -rwxr-xr-x 0 0 0 3330 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/zh.msg - - -rwxr-xr-x 0 0 0 312 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/zh_cn.msg - - -rwxr-xr-x 0 0 0 752 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/zh_hk.msg - - -rwxr-xr-x 0 0 0 339 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/zh_sg.msg - - -rwxr-xr-x 0 0 0 346 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/zh_tw.msg - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/opt0.4/ - - -rwxr-xr-x 0 0 0 32705 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/opt0.4/optparse.tcl - - -rwxr-xr-x 0 0 0 608 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/opt0.4/pkgIndex.tcl - - -rwxr-xr-x 0 0 0 23244 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/package.tcl - - -rwxr-xr-x 0 0 0 816 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/parray.tcl - - -rwxr-xr-x 0 0 0 40934 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/safe.tcl - - -rwxr-xr-x 0 0 0 4511 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/tclAppInit.c - - -rwxr-xr-x 0 0 0 5539 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/tclIndex - - -rwxr-xr-x 0 0 0 11824 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/tm.tcl - - -rwxr-xr-x 0 0 0 4876 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8.6/word.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8/8.4/ - - -rwxr-xr-x 0 0 0 10984 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8/8.4/platform-1.0.18.tm - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8/8.4/platform/ - - -rwxr-xr-x 0 0 0 5977 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8/8.4/platform/shell-1.1.4.tm - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8/8.5/ - - -rwxr-xr-x 0 0 0 33926 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8/8.5/msgcat-1.6.1.tm - - -rwxr-xr-x 0 0 0 103526 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8/8.5/tcltest-2.5.3.tm - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8/8.6/ - - -rwxr-xr-x 0 0 0 111709 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tcl8/8.6/http-2.9.5.tm - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/thread2.8.7/ - - -rwxr-xr-x 0 0 0 29530 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/thread2.8.7/ttrace.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ - - -rwxr-xr-x 0 0 0 8534 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/bgerror.tcl - - -rwxr-xr-x 0 0 0 20830 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/button.tcl - - -rwxr-xr-x 0 0 0 9652 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/choosedir.tcl - - -rwxr-xr-x 0 0 0 21417 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/clrpick.tcl - - -rwxr-xr-x 0 0 0 8368 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/comdlg.tcl - - -rwxr-xr-x 0 0 0 32792 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/console.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ - - -rwxr-xr-x 0 0 0 2082 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/README - - -rwxr-xr-x 0 0 0 6670 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/anilabel.tcl - - -rwxr-xr-x 0 0 0 3494 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/aniwave.tcl - - -rwxr-xr-x 0 0 0 8110 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/arrow.tcl - - -rwxr-xr-x 0 0 0 3078 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/bind.tcl - - -rwxr-xr-x 0 0 0 1411 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/bitmap.tcl - - -rwxr-xr-x 0 0 0 1758 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/browse - - -rwxr-xr-x 0 0 0 1504 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/button.tcl - - -rwxr-xr-x 0 0 0 2278 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/check.tcl - - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/clrpick.tcl - - -rwxr-xr-x 0 0 0 5002 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/colors.tcl - - -rwxr-xr-x 0 0 0 1963 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/combo.tcl - - -rwxr-xr-x 0 0 0 5036 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/cscroll.tcl - - -rwxr-xr-x 0 0 0 6205 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ctext.tcl - - -rwxr-xr-x 0 0 0 974 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/dialog1.tcl - - -rwxr-xr-x 0 0 0 828 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/dialog2.tcl - - -rwxr-xr-x 0 0 0 3867 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/en.msg - - -rwxr-xr-x 0 0 0 1401 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/entry1.tcl - - -rwxr-xr-x 0 0 0 2091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/entry2.tcl - - -rwxr-xr-x 0 0 0 6102 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/entry3.tcl - - -rwxr-xr-x 0 0 0 2351 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/filebox.tcl - - -rwxr-xr-x 0 0 0 79803 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/floor.tcl - - -rwxr-xr-x 0 0 0 1710 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/fontchoose.tcl - - -rwxr-xr-x 0 0 0 1046 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/form.tcl - - -rwxr-xr-x 0 0 0 56598 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/goldberg.tcl - - -rwxr-xr-x 0 0 0 512 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/hello - - -rwxr-xr-x 0 0 0 1497 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/hscale.tcl - - -rwxr-xr-x 0 0 0 2063 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/icon.tcl - - -rwxr-xr-x 0 0 0 1002 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/image1.tcl - - -rwxr-xr-x 0 0 0 3359 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/image2.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/ - - -rwxr-xr-x 0 0 0 51712 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/earth.gif - - -rwxr-xr-x 0 0 0 8157 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/earthmenu.png - - -rwxr-xr-x 0 0 0 6343 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/earthris.gif - - -rwxr-xr-x 0 0 0 1886 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/flagdown.xbm - - -rwxr-xr-x 0 0 0 1880 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/flagup.xbm - - -rwxr-xr-x 0 0 0 275 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/gray25.xbm - - -rwxr-xr-x 0 0 0 1883 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/letters.xbm - - -rwxr-xr-x 0 0 0 1889 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/noletter.xbm - - -rwxr-xr-x 0 0 0 54257 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/ouster.png - - -rwxr-xr-x 0 0 0 272 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/pattern.xbm - - -rwxr-xr-x 0 0 0 2341 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/tcllogo.gif - - -rwxr-xr-x 0 0 0 196623 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/teapot.ppm - - -rwxr-xr-x 0 0 0 10490 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/items.tcl - - -rwxr-xr-x 0 0 0 8075 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ixset - - -rwxr-xr-x 0 0 0 9123 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/knightstour.tcl - - -rwxr-xr-x 0 0 0 1379 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/label.tcl - - -rwxr-xr-x 0 0 0 1847 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/labelframe.tcl - - -rwxr-xr-x 0 0 0 2267 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/license.terms - - -rwxr-xr-x 0 0 0 4357 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/mclist.tcl - - -rwxr-xr-x 0 0 0 7479 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/menu.tcl - - -rwxr-xr-x 0 0 0 4476 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/menubu.tcl - - -rwxr-xr-x 0 0 0 1998 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/msgbox.tcl - - -rwxr-xr-x 0 0 0 6750 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/nl.msg - - -rwxr-xr-x 0 0 0 1130 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/paned1.tcl - - -rwxr-xr-x 0 0 0 2244 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/paned2.tcl - - -rwxr-xr-x 0 0 0 7623 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/pendulum.tcl - - -rwxr-xr-x 0 0 0 2757 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/plot.tcl - - -rwxr-xr-x 0 0 0 2602 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/puzzle.tcl - - -rwxr-xr-x 0 0 0 2752 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/radio.tcl - - -rwxr-xr-x 0 0 0 5319 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/rmt - - -rwxr-xr-x 0 0 0 8300 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/rolodex - - -rwxr-xr-x 0 0 0 5333 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ruler.tcl - - -rwxr-xr-x 0 0 0 2273 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/sayings.tcl - - -rwxr-xr-x 0 0 0 4403 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/search.tcl - - -rwxr-xr-x 0 0 0 1820 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/spin.tcl - - -rwxr-xr-x 0 0 0 2048 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/states.tcl - - -rwxr-xr-x 0 0 0 6943 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/style.tcl - - -rwxr-xr-x 0 0 0 5298 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/tclIndex - - -rwxr-xr-x 0 0 0 11253 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/tcolor - - -rwxr-xr-x 0 0 0 4291 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/text.tcl - - -rwxr-xr-x 0 0 0 2188 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/textpeer.tcl - - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/timer - - -rwxr-xr-x 0 0 0 3272 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/toolbar.tcl - - -rwxr-xr-x 0 0 0 3178 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/tree.tcl - - -rwxr-xr-x 0 0 0 3405 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ttkbut.tcl - - -rwxr-xr-x 0 0 0 2391 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ttkmenu.tcl - - -rwxr-xr-x 0 0 0 2317 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ttknote.tcl - - -rwxr-xr-x 0 0 0 4177 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ttkpane.tcl - - -rwxr-xr-x 0 0 0 1536 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ttkprogress.tcl - - -rwxr-xr-x 0 0 0 1420 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ttkscale.tcl - - -rwxr-xr-x 0 0 0 11654 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/twind.tcl - - -rwxr-xr-x 0 0 0 4706 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/unicodeout.tcl - - -rwxr-xr-x 0 0 0 1477 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/vscale.tcl - - -rwxr-xr-x 0 0 0 24063 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/demos/widget - - -rwxr-xr-x 0 0 0 5813 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/dialog.tcl - - -rwxr-xr-x 0 0 0 17715 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/entry.tcl - - -rwxr-xr-x 0 0 0 4857 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/focus.tcl - - -rwxr-xr-x 0 0 0 16011 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/fontchooser.tcl - - -rwxr-xr-x 0 0 0 16704 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/iconlist.tcl - - -rwxr-xr-x 0 0 0 10884 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/icons.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/ - - -rwxr-xr-x 0 0 0 322 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/README - - -rwxr-xr-x 0 0 0 32900 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/logo.eps - - -rwxr-xr-x 0 0 0 2341 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/logo100.gif - - -rwxr-xr-x 0 0 0 1670 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/logo64.gif - - -rwxr-xr-x 0 0 0 11000 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/logoLarge.gif - - -rwxr-xr-x 0 0 0 3889 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/logoMed.gif - - -rwxr-xr-x 0 0 0 27809 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo.eps - - -rwxr-xr-x 0 0 0 1615 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo100.gif - - -rwxr-xr-x 0 0 0 2489 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo150.gif - - -rwxr-xr-x 0 0 0 2981 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo175.gif - - -rwxr-xr-x 0 0 0 3491 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo200.gif - - -rwxr-xr-x 0 0 0 1171 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo75.gif - - -rwxr-xr-x 0 0 0 5473 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/images/tai-ku.gif - - -rwxr-xr-x 0 0 0 14695 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/listbox.tcl - - -rwxr-xr-x 0 0 0 9565 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/megawidget.tcl - - -rwxr-xr-x 0 0 0 38122 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/menu.tcl - - -rwxr-xr-x 0 0 0 29352 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/mkpsenc.tcl - - -rwxr-xr-x 0 0 0 16359 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgbox.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/ - - -rwxr-xr-x 0 0 0 4158 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/cs.msg - - -rwxr-xr-x 0 0 0 3909 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/da.msg - - -rwxr-xr-x 0 0 0 4823 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/de.msg - - -rwxr-xr-x 0 0 0 8698 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/el.msg - - -rwxr-xr-x 0 0 0 3286 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/en.msg - - -rwxr-xr-x 0 0 0 63 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/en_gb.msg - - -rwxr-xr-x 0 0 0 3916 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/eo.msg - - -rwxr-xr-x 0 0 0 3948 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/es.msg - - -rwxr-xr-x 0 0 0 3805 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/fr.msg - - -rwxr-xr-x 0 0 0 4600 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/hu.msg - - -rwxr-xr-x 0 0 0 3692 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/it.msg - - -rwxr-xr-x 0 0 0 4466 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/nl.msg - - -rwxr-xr-x 0 0 0 4841 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/pl.msg - - -rwxr-xr-x 0 0 0 3913 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/pt.msg - - -rwxr-xr-x 0 0 0 7214 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/ru.msg - - -rwxr-xr-x 0 0 0 3832 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/sv.msg - - -rwxr-xr-x 0 0 0 5594 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/obsolete.tcl - - -rwxr-xr-x 0 0 0 1586 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/optMenu.tcl - - -rwxr-xr-x 0 0 0 8174 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/palette.tcl - - -rwxr-xr-x 0 0 0 5176 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/panedwindow.tcl - - -rwxr-xr-x 0 0 0 7370 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/safetk.tcl - - -rwxr-xr-x 0 0 0 7766 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/scale.tcl - - -rwxr-xr-x 0 0 0 12732 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/scrlbar.tcl - - -rwxr-xr-x 0 0 0 15933 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/spinbox.tcl - - -rwxr-xr-x 0 0 0 20270 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/tclIndex - - -rwxr-xr-x 0 0 0 5125 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/tearoff.tcl - - -rwxr-xr-x 0 0 0 33724 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/text.tcl - - -rwxr-xr-x 0 0 0 23554 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/tk.tcl - - -rwxr-xr-x 0 0 0 4615 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/tkAppInit.c - - -rwxr-xr-x 0 0 0 38373 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/tkfbox.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/ - - -rwxr-xr-x 0 0 0 3604 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/altTheme.tcl - - -rwxr-xr-x 0 0 0 3719 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/aquaTheme.tcl - - -rwxr-xr-x 0 0 0 2931 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/button.tcl - - -rwxr-xr-x 0 0 0 4662 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/clamTheme.tcl - - -rwxr-xr-x 0 0 0 3749 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/classicTheme.tcl - - -rwxr-xr-x 0 0 0 12270 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/combobox.tcl - - -rwxr-xr-x 0 0 0 4619 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/cursors.tcl - - -rwxr-xr-x 0 0 0 4410 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/defaults.tcl - - -rwxr-xr-x 0 0 0 16985 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/entry.tcl - - -rwxr-xr-x 0 0 0 5575 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/fonts.tcl - - -rwxr-xr-x 0 0 0 6400 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/menubutton.tcl - - -rwxr-xr-x 0 0 0 5626 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/notebook.tcl - - -rwxr-xr-x 0 0 0 2199 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/panedwindow.tcl - - -rwxr-xr-x 0 0 0 1089 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/progress.tcl - - -rwxr-xr-x 0 0 0 2693 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/scale.tcl - - -rwxr-xr-x 0 0 0 3159 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/scrollbar.tcl - - -rwxr-xr-x 0 0 0 2401 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/sizegrip.tcl - - -rwxr-xr-x 0 0 0 4811 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/spinbox.tcl - - -rwxr-xr-x 0 0 0 9797 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/treeview.tcl - - -rwxr-xr-x 0 0 0 4817 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/ttk.tcl - - -rwxr-xr-x 0 0 0 8287 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/utils.tcl - - -rwxr-xr-x 0 0 0 9481 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/vistaTheme.tcl - - -rwxr-xr-x 0 0 0 2781 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/winTheme.tcl - - -rwxr-xr-x 0 0 0 2036 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/xpTheme.tcl - - -rwxr-xr-x 0 0 0 10252 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/unsupported.tcl - - -rwxr-xr-x 0 0 0 26075 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/lib/tk8.6/xmfbox.tcl - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/share/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/share/man/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/share/man/man1/ - - -rwxr-xr-x 0 0 0 18711 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/share/man/man1/python3.1 - - -rwxr-xr-x 0 0 0 18711 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/share/man/man1/python3.9.1 + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/ + - -rwxr-xr-x 0 0 0 127 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/2to3 + - -rwxr-xr-x 0 0 0 127 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/2to3-3.9 + - -rwxr-xr-x 0 0 0 125 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/idle3 + - -rwxr-xr-x 0 0 0 125 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/idle3.9 + - -rwxr-xr-x 0 0 0 255 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/pip + - -rwxr-xr-x 0 0 0 255 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/pip3 + - -rwxr-xr-x 0 0 0 255 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/pip3.9 + - -rwxr-xr-x 0 0 0 110 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/pydoc3 + - -rwxr-xr-x 0 0 0 110 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/pydoc3.9 + - -rwxr-xr-x 0 0 0 20944 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python + - -rwxr-xr-x 0 0 0 20944 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3 + - -rwxr-xr-x 0 0 0 3089 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3-config + - -rwxr-xr-x 0 0 0 20944 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3.9 + - -rwxr-xr-x 0 0 0 3089 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3.9-config + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/ + - -rwxr-xr-x 0 0 0 26193 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/Python-ast.h + - -rwxr-xr-x 0 0 0 3532 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/Python.h + - -rwxr-xr-x 0 0 0 30476 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/abstract.h + - -rwxr-xr-x 0 0 0 1224 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/asdl.h + - -rwxr-xr-x 0 0 0 947 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/ast.h + - -rwxr-xr-x 0 0 0 468 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/bitset.h + - -rwxr-xr-x 0 0 0 264 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/bltinmodule.h + - -rwxr-xr-x 0 0 0 885 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/boolobject.h + - -rwxr-xr-x 0 0 0 1484 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/bytearrayobject.h + - -rwxr-xr-x 0 0 0 3048 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/bytesobject.h + - -rwxr-xr-x 0 0 0 712 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cellobject.h + - -rwxr-xr-x 0 0 0 5954 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/ceval.h + - -rwxr-xr-x 0 0 0 1657 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/classobject.h + - -rwxr-xr-x 0 0 0 318 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/code.h + - -rwxr-xr-x 0 0 0 6793 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/codecs.h + - -rwxr-xr-x 0 0 0 3778 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/compile.h + - -rwxr-xr-x 0 0 0 1806 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/complexobject.h + - -rwxr-xr-x 0 0 0 1962 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/context.h + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/ + - -rwxr-xr-x 0 0 0 14200 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/abstract.h + - -rwxr-xr-x 0 0 0 769 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/bytearrayobject.h + - -rwxr-xr-x 0 0 0 4114 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/bytesobject.h + - -rwxr-xr-x 0 0 0 1537 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/ceval.h + - -rwxr-xr-x 0 0 0 6989 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/code.h + - -rwxr-xr-x 0 0 0 3797 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/dictobject.h + - -rwxr-xr-x 0 0 0 721 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/fileobject.h + - -rwxr-xr-x 0 0 0 4004 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/fileutils.h + - -rwxr-xr-x 0 0 0 3059 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/frameobject.h + - -rwxr-xr-x 0 0 0 1473 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/import.h + - -rwxr-xr-x 0 0 0 16979 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/initconfig.h + - -rwxr-xr-x 0 0 0 456 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/interpreteridobject.h + - -rwxr-xr-x 0 0 0 1364 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/listobject.h + - -rwxr-xr-x 0 0 0 1399 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/methodobject.h + - -rwxr-xr-x 0 0 0 19358 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/object.h + - -rwxr-xr-x 0 0 0 4456 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/objimpl.h + - -rwxr-xr-x 0 0 0 5101 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/pyerrors.h + - -rwxr-xr-x 0 0 0 2096 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/pylifecycle.h + - -rwxr-xr-x 0 0 0 3511 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/pymem.h + - -rwxr-xr-x 0 0 0 10134 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/pystate.h + - -rwxr-xr-x 0 0 0 575 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/sysmodule.h + - -rwxr-xr-x 0 0 0 473 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/traceback.h + - -rwxr-xr-x 0 0 0 1036 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/tupleobject.h + - -rwxr-xr-x 0 0 0 46154 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/cpython/unicodeobject.h + - -rwxr-xr-x 0 0 0 9255 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/datetime.h + - -rwxr-xr-x 0 0 0 3019 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/descrobject.h + - -rwxr-xr-x 0 0 0 3715 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/dictobject.h + - -rwxr-xr-x 0 0 0 22469 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/dynamic_annotations.h + - -rwxr-xr-x 0 0 0 253 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/enumobject.h + - -rwxr-xr-x 0 0 0 1624 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/errcode.h + - -rwxr-xr-x 0 0 0 1209 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/eval.h + - -rwxr-xr-x 0 0 0 1098 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/exports.h + - -rwxr-xr-x 0 0 0 1571 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/fileobject.h + - -rwxr-xr-x 0 0 0 597 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/fileutils.h + - -rwxr-xr-x 0 0 0 4360 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/floatobject.h + - -rwxr-xr-x 0 0 0 337 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/frameobject.h + - -rwxr-xr-x 0 0 0 4057 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/funcobject.h + - -rwxr-xr-x 0 0 0 334 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/genericaliasobject.h + - -rwxr-xr-x 0 0 0 3525 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/genobject.h + - -rwxr-xr-x 0 0 0 2118 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/graminit.h + - -rwxr-xr-x 0 0 0 1821 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/grammar.h + - -rwxr-xr-x 0 0 0 3026 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/import.h + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/ + - -rwxr-xr-x 0 0 0 953 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pegen_interface.h + - -rwxr-xr-x 0 0 0 479 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_abstract.h + - -rwxr-xr-x 0 0 0 1126 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_accu.h + - -rwxr-xr-x 0 0 0 16977 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_atomic.h + - -rwxr-xr-x 0 0 0 3384 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_bytes_methods.h + - -rwxr-xr-x 0 0 0 2620 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_byteswap.h + - -rwxr-xr-x 0 0 0 870 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_call.h + - -rwxr-xr-x 0 0 0 3403 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_ceval.h + - -rwxr-xr-x 0 0 0 541 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_code.h + - -rwxr-xr-x 0 0 0 2809 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_condvar.h + - -rwxr-xr-x 0 0 0 800 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_context.h + - -rwxr-xr-x 0 0 0 646 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_dtoa.h + - -rwxr-xr-x 0 0 0 1541 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_fileutils.h + - -rwxr-xr-x 0 0 0 6647 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_gc.h + - -rwxr-xr-x 0 0 0 490 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_getopt.h + - -rwxr-xr-x 0 0 0 1565 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_gil.h + - -rwxr-xr-x 0 0 0 3697 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_hamt.h + - -rwxr-xr-x 0 0 0 4197 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_hashtable.h + - -rwxr-xr-x 0 0 0 473 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_import.h + - -rwxr-xr-x 0 0 0 5233 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_initconfig.h + - -rwxr-xr-x 0 0 0 5299 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_interp.h + - -rwxr-xr-x 0 0 0 1548 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_long.h + - -rwxr-xr-x 0 0 0 4157 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_object.h + - -rwxr-xr-x 0 0 0 1936 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_pathconfig.h + - -rwxr-xr-x 0 0 0 2032 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_pyerrors.h + - -rwxr-xr-x 0 0 0 206 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_pyhash.h + - -rwxr-xr-x 0 0 0 3741 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_pylifecycle.h + - -rwxr-xr-x 0 0 0 3363 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_pymem.h + - -rwxr-xr-x 0 0 0 3583 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_pystate.h + - -rwxr-xr-x 0 0 0 4452 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_runtime.h + - -rwxr-xr-x 0 0 0 548 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_sysmodule.h + - -rwxr-xr-x 0 0 0 3056 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_traceback.h + - -rwxr-xr-x 0 0 0 442 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_tupleobject.h + - -rwxr-xr-x 0 0 0 633 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/internal/pycore_warnings.h + - -rwxr-xr-x 0 0 0 334 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/interpreteridobject.h + - -rwxr-xr-x 0 0 0 861 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/intrcheck.h + - -rwxr-xr-x 0 0 0 521 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/iterobject.h + - -rwxr-xr-x 0 0 0 1781 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/listobject.h + - -rwxr-xr-x 0 0 0 3799 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/longintrepr.h + - -rwxr-xr-x 0 0 0 9513 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/longobject.h + - -rwxr-xr-x 0 0 0 803 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/marshal.h + - -rwxr-xr-x 0 0 0 2764 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/memoryobject.h + - -rwxr-xr-x 0 0 0 3775 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/methodobject.h + - -rwxr-xr-x 0 0 0 9959 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/modsupport.h + - -rwxr-xr-x 0 0 0 2361 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/moduleobject.h + - -rwxr-xr-x 0 0 0 349 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/namespaceobject.h + - -rwxr-xr-x 0 0 0 1281 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/node.h + - -rwxr-xr-x 0 0 0 24628 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/object.h + - -rwxr-xr-x 0 0 0 8423 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/objimpl.h + - -rwxr-xr-x 0 0 0 1299 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/odictobject.h + - -rwxr-xr-x 0 0 0 4900 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/opcode.h + - -rwxr-xr-x 0 0 0 737 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/osdefs.h + - -rwxr-xr-x 0 0 0 291 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/osmodule.h + - -rwxr-xr-x 0 0 0 2958 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/parsetok.h + - -rwxr-xr-x 0 0 0 1299 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/patchlevel.h + - -rwxr-xr-x 0 0 0 846 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/picklebufobject.h + - -rwxr-xr-x 0 0 0 2474 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/py_curses.h + - -rwxr-xr-x 0 0 0 2744 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pyarena.h + - -rwxr-xr-x 0 0 0 1725 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pycapsule.h + - -rwxr-xr-x 0 0 0 48085 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pyconfig.h + - -rwxr-xr-x 0 0 0 1387 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pyctype.h + - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pydebug.h + - -rwxr-xr-x 0 0 0 2413 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pydtrace.h + - -rwxr-xr-x 0 0 0 12427 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pyerrors.h + - -rwxr-xr-x 0 0 0 2572 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pyexpat.h + - -rwxr-xr-x 0 0 0 444 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pyfpe.h + - -rwxr-xr-x 0 0 0 466 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pyframe.h + - -rwxr-xr-x 0 0 0 4263 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pyhash.h + - -rwxr-xr-x 0 0 0 2136 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pylifecycle.h + - -rwxr-xr-x 0 0 0 2989 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pymacconfig.h + - -rwxr-xr-x 0 0 0 4920 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pymacro.h + - -rwxr-xr-x 0 0 0 8580 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pymath.h + - -rwxr-xr-x 0 0 0 4406 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pymem.h + - -rwxr-xr-x 0 0 0 31273 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pyport.h + - -rwxr-xr-x 0 0 0 5250 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pystate.h + - -rwxr-xr-x 0 0 0 436 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pystrcmp.h + - -rwxr-xr-x 0 0 0 849 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pystrhex.h + - -rwxr-xr-x 0 0 0 1483 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pystrtod.h + - -rwxr-xr-x 0 0 0 7673 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pythonrun.h + - -rwxr-xr-x 0 0 0 5938 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pythread.h + - -rwxr-xr-x 0 0 0 8928 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/pytime.h + - -rwxr-xr-x 0 0 0 628 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/rangeobject.h + - -rwxr-xr-x 0 0 0 3324 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/setobject.h + - -rwxr-xr-x 0 0 0 2516 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/sliceobject.h + - -rwxr-xr-x 0 0 0 2030 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/structmember.h + - -rwxr-xr-x 0 0 0 1390 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/structseq.h + - -rwxr-xr-x 0 0 0 5307 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/symtable.h + - -rwxr-xr-x 0 0 0 1242 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/sysmodule.h + - -rwxr-xr-x 0 0 0 2642 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/token.h + - -rwxr-xr-x 0 0 0 584 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/traceback.h + - -rwxr-xr-x 0 0 0 1114 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/tracemalloc.h + - -rwxr-xr-x 0 0 0 1614 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/tupleobject.h + - -rwxr-xr-x 0 0 0 2350 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/typeslots.h + - -rwxr-xr-x 0 0 0 1056 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/ucnhash.h + - -rwxr-xr-x 0 0 0 35426 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/unicodeobject.h + - -rwxr-xr-x 0 0 0 1776 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/warnings.h + - -rwxr-xr-x 0 0 0 2863 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/include/python3.9/weakrefobject.h + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/ + - -rwxr-xr-x 0 0 0 13870 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Balloon.tcl + - -rwxr-xr-x 0 0 0 2791 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/BtnBox.tcl + - -rwxr-xr-x 0 0 0 8098 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/CObjView.tcl + - -rwxr-xr-x 0 0 0 5326 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/ChkList.tcl + - -rwxr-xr-x 0 0 0 37829 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/ComboBox.tcl + - -rwxr-xr-x 0 0 0 903 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Compat.tcl + - -rwxr-xr-x 0 0 0 15923 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Console.tcl + - -rwxr-xr-x 0 0 0 12884 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Control.tcl + - -rwxr-xr-x 0 0 0 3116 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DefSchm.tcl + - -rwxr-xr-x 0 0 0 4471 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DialogS.tcl + - -rwxr-xr-x 0 0 0 5632 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DirBox.tcl + - -rwxr-xr-x 0 0 0 2301 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DirDlg.tcl + - -rwxr-xr-x 0 0 0 7336 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DirList.tcl + - -rwxr-xr-x 0 0 0 9322 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DirTree.tcl + - -rwxr-xr-x 0 0 0 4191 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DragDrop.tcl + - -rwxr-xr-x 0 0 0 1051 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/DtlList.tcl + - -rwxr-xr-x 0 0 0 11826 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/EFileBox.tcl + - -rwxr-xr-x 0 0 0 1783 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/EFileDlg.tcl + - -rwxr-xr-x 0 0 0 5448 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Event.tcl + - -rwxr-xr-x 0 0 0 14904 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/FileBox.tcl + - -rwxr-xr-x 0 0 0 2591 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/FileCbx.tcl + - -rwxr-xr-x 0 0 0 2260 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/FileDlg.tcl + - -rwxr-xr-x 0 0 0 7589 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/FileEnt.tcl + - -rwxr-xr-x 0 0 0 3308 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/FloatEnt.tcl + - -rwxr-xr-x 0 0 0 22787 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Grid.tcl + - -rwxr-xr-x 0 0 0 19065 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/HList.tcl + - -rwxr-xr-x 0 0 0 4704 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/HListDD.tcl + - -rwxr-xr-x 0 0 0 6382 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/IconView.tcl + - -rwxr-xr-x 0 0 0 6431 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Init.tcl + - -rwxr-xr-x 0 0 0 2229 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/LabEntry.tcl + - -rwxr-xr-x 0 0 0 1230 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/LabFrame.tcl + - -rwxr-xr-x 0 0 0 4108 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/LabWidg.tcl + - -rwxr-xr-x 0 0 0 3734 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/ListNBk.tcl + - -rwxr-xr-x 0 0 0 3251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Meter.tcl + - -rwxr-xr-x 0 0 0 3861 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/MultView.tcl + - -rwxr-xr-x 0 0 0 6407 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/NoteBook.tcl + - -rwxr-xr-x 0 0 0 3164 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/OldUtil.tcl + - -rwxr-xr-x 0 0 0 9786 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/OptMenu.tcl + - -rwxr-xr-x 0 0 0 29562 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/PanedWin.tcl + - -rwxr-xr-x 0 0 0 5739 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/PopMenu.tcl + - -rwxr-xr-x 0 0 0 10955 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Primitiv.tcl + - -rwxr-xr-x 0 0 0 1013 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/README.txt + - -rwxr-xr-x 0 0 0 13752 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/ResizeH.tcl + - -rwxr-xr-x 0 0 0 6178 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SGrid.tcl + - -rwxr-xr-x 0 0 0 3933 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SHList.tcl + - -rwxr-xr-x 0 0 0 7433 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SListBox.tcl + - -rwxr-xr-x 0 0 0 2521 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/STList.tcl + - -rwxr-xr-x 0 0 0 3297 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SText.tcl + - -rwxr-xr-x 0 0 0 10213 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SWidget.tcl + - -rwxr-xr-x 0 0 0 7182 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SWindow.tcl + - -rwxr-xr-x 0 0 0 7504 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Select.tcl + - -rwxr-xr-x 0 0 0 1129 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Shell.tcl + - -rwxr-xr-x 0 0 0 1204 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/SimpDlg.tcl + - -rwxr-xr-x 0 0 0 2076 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/StackWin.tcl + - -rwxr-xr-x 0 0 0 1395 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/StatBar.tcl + - -rwxr-xr-x 0 0 0 1727 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/StdBBox.tcl + - -rwxr-xr-x 0 0 0 1222 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/StdShell.tcl + - -rwxr-xr-x 0 0 0 18962 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/TList.tcl + - -rwxr-xr-x 0 0 0 10135 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Tix.tcl + - -rwxr-xr-x 0 0 0 4890 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Tree.tcl + - -rwxr-xr-x 0 0 0 11230 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Utils.tcl + - -rwxr-xr-x 0 0 0 5280 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/VResize.tcl + - -rwxr-xr-x 0 0 0 10081 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/VStack.tcl + - -rwxr-xr-x 0 0 0 4605 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/VTree.tcl + - -rwxr-xr-x 0 0 0 2664 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/Variable.tcl + - -rwxr-xr-x 0 0 0 1005 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/WInfo.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/ + - -rwxr-xr-x 0 0 0 90 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/act_fold.gif + - -rwxr-xr-x 0 0 0 221 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/act_fold.xbm + - -rwxr-xr-x 0 0 0 436 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/act_fold.xpm + - -rwxr-xr-x 0 0 0 123 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/balarrow.xbm + - -rwxr-xr-x 0 0 0 263 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/cbxarrow.xbm + - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/ck_def.xbm + - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/ck_off.xbm + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/ck_on.xbm + - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/cross.xbm + - -rwxr-xr-x 0 0 0 99 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/decr.xbm + - -rwxr-xr-x 0 0 0 326 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/drop.xbm + - -rwxr-xr-x 0 0 0 76 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/file.gif + - -rwxr-xr-x 0 0 0 233 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/file.xbm + - -rwxr-xr-x 0 0 0 298 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/file.xpm + - -rwxr-xr-x 0 0 0 79 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/folder.gif + - -rwxr-xr-x 0 0 0 215 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/folder.xbm + - -rwxr-xr-x 0 0 0 418 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/folder.xpm + - -rwxr-xr-x 0 0 0 896 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/harddisk.xbm + - -rwxr-xr-x 0 0 0 969 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/hourglas.mask + - -rwxr-xr-x 0 0 0 940 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/hourglas.xbm + - -rwxr-xr-x 0 0 0 99 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/incr.xbm + - -rwxr-xr-x 0 0 0 159 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/info.gif + - -rwxr-xr-x 0 0 0 1258 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/info.xpm + - -rwxr-xr-x 0 0 0 284 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/maximize.xbm + - -rwxr-xr-x 0 0 0 284 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minimize.xbm + - -rwxr-xr-x 0 0 0 57 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minus.gif + - -rwxr-xr-x 0 0 0 198 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minus.xbm + - -rwxr-xr-x 0 0 0 201 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minus.xpm + - -rwxr-xr-x 0 0 0 59 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minusarm.gif + - -rwxr-xr-x 0 0 0 207 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minusarm.xbm + - -rwxr-xr-x 0 0 0 220 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/minusarm.xpm + - -rwxr-xr-x 0 0 0 263 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/mktransgif.tcl + - -rwxr-xr-x 0 0 0 893 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/network.xbm + - -rwxr-xr-x 0 0 0 176 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/no_entry.gif + - -rwxr-xr-x 0 0 0 1274 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/no_entry.xpm + - -rwxr-xr-x 0 0 0 221 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/openfile.xbm + - -rwxr-xr-x 0 0 0 84 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/openfold.gif + - -rwxr-xr-x 0 0 0 221 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/openfold.xbm + - -rwxr-xr-x 0 0 0 418 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/openfold.xpm + - -rwxr-xr-x 0 0 0 58 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plus.gif + - -rwxr-xr-x 0 0 0 195 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plus.xbm + - -rwxr-xr-x 0 0 0 200 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plus.xpm + - -rwxr-xr-x 0 0 0 60 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plusarm.gif + - -rwxr-xr-x 0 0 0 204 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plusarm.xbm + - -rwxr-xr-x 0 0 0 212 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/plusarm.xpm + - -rwxr-xr-x 0 0 0 305 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/resize1.xbm + - -rwxr-xr-x 0 0 0 305 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/resize2.xbm + - -rwxr-xr-x 0 0 0 281 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/restore.xbm + - -rwxr-xr-x 0 0 0 79 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/srcfile.gif + - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/srcfile.xbm + - -rwxr-xr-x 0 0 0 294 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/srcfile.xpm + - -rwxr-xr-x 0 0 0 278 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/system.xbm + - -rwxr-xr-x 0 0 0 79 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/textfile.gif + - -rwxr-xr-x 0 0 0 245 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/textfile.xbm + - -rwxr-xr-x 0 0 0 302 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/textfile.xpm + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/tick.xbm + - -rwxr-xr-x 0 0 0 180 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/warning.gif + - -rwxr-xr-x 0 0 0 1262 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/bitmaps/warning.xpm + - -rwxr-xr-x 0 0 0 4165 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/fs.tcl + - -rwxr-xr-x 0 0 0 2828 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/license.terms + - -rwxr-xr-x 0 0 0 126 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pkgIndex.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/ + - -rwxr-xr-x 0 0 0 641 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/10Point.fs + - -rwxr-xr-x 0 0 0 2046 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/10Point.fsc + - -rwxr-xr-x 0 0 0 640 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/12Point.fs + - -rwxr-xr-x 0 0 0 2045 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/12Point.fsc + - -rwxr-xr-x 0 0 0 639 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/14Point.fs + - -rwxr-xr-x 0 0 0 2105 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/14Point.fsc + - -rwxr-xr-x 0 0 0 1028 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Bisque.cs + - -rwxr-xr-x 0 0 0 22539 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Bisque.csc + - -rwxr-xr-x 0 0 0 1045 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Blue.cs + - -rwxr-xr-x 0 0 0 22552 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Blue.csc + - -rwxr-xr-x 0 0 0 1045 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Gray.cs + - -rwxr-xr-x 0 0 0 22552 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Gray.csc + - -rwxr-xr-x 0 0 0 541 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Old12Pt.fs + - -rwxr-xr-x 0 0 0 499 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/Old14Pt.fs + - -rwxr-xr-x 0 0 0 1026 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/SGIGray.cs + - -rwxr-xr-x 0 0 0 22537 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/SGIGray.csc + - -rwxr-xr-x 0 0 0 1024 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TK.cs + - -rwxr-xr-x 0 0 0 2023 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TK.csc + - -rwxr-xr-x 0 0 0 506 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TK.fs + - -rwxr-xr-x 0 0 0 569 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TK.fsc + - -rwxr-xr-x 0 0 0 1026 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TixGray.cs + - -rwxr-xr-x 0 0 0 22539 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TixGray.csc + - -rwxr-xr-x 0 0 0 2246 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TkWin.cs + - -rwxr-xr-x 0 0 0 22302 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TkWin.csc + - -rwxr-xr-x 0 0 0 390 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TkWin.fs + - -rwxr-xr-x 0 0 0 1674 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/TkWin.fsc + - -rwxr-xr-x 0 0 0 1452 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.cs + - -rwxr-xr-x 0 0 0 14566 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.csc + - -rwxr-xr-x 0 0 0 755 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.fs + - -rwxr-xr-x 0 0 0 2184 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.fsc + - -rwxr-xr-x 0 0 0 3597 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.py + - -rwxr-xr-x 0 0 0 34898 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.tcl + - -rwxr-xr-x 0 0 0 4466 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/WmDefault.txt + - -rwxr-xr-x 0 0 0 271 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/Tix8.4.3/pref/pkgIndex.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/itcl4.2.2/ + - -rwxr-xr-x 0 0 0 5153 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/itcl4.2.2/itcl.tcl + - -rwxr-xr-x 0 0 0 2932 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/itcl4.2.2/itclConfig.sh + - -rwxr-xr-x 0 0 0 21056 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/itcl4.2.2/itclHullCmds.tcl + - -rwxr-xr-x 0 0 0 12651 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/itcl4.2.2/itclWidget.tcl + - -rwxr-xr-x 0 0 0 47556352 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/libpython3.9.so.1.0 + - -rwxr-xr-x 0 0 0 16800 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/libpython3.so + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/pkgconfig/ + - -rwxr-xr-x 0 0 0 303 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/pkgconfig/python-3.9-embed.pc + - -rwxr-xr-x 0 0 0 277 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/pkgconfig/python-3.9.pc + - -rwxr-xr-x 0 0 0 303 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/pkgconfig/python3-embed.pc + - -rwxr-xr-x 0 0 0 277 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/pkgconfig/python3.pc + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ + - -rwxr-xr-x 0 0 0 13937 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/LICENSE.txt + - -rwxr-xr-x 0 0 0 5147 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__future__.py + - -rwxr-xr-x 0 0 0 64 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__phello__.foo.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/ + - -rwxr-xr-x 0 0 0 1246 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/_bootlocale.cpython-39.pyc + - -rwxr-xr-x 0 0 0 31750 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/_collections_abc.cpython-39.pyc + - -rwxr-xr-x 0 0 0 3520 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/_sitebuiltins.cpython-39.pyc + - -rwxr-xr-x 0 0 0 5794 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/abc.cpython-39.pyc + - -rwxr-xr-x 0 0 0 33907 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/codecs.cpython-39.pyc + - -rwxr-xr-x 0 0 0 4043 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/genericpath.cpython-39.pyc + - -rwxr-xr-x 0 0 0 3427 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/io.cpython-39.pyc + - -rwxr-xr-x 0 0 0 31665 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/os.cpython-39.pyc + - -rwxr-xr-x 0 0 0 10348 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/posixpath.cpython-39.pyc + - -rwxr-xr-x 0 0 0 17029 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/site.cpython-39.pyc + - -rwxr-xr-x 0 0 0 4391 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/__pycache__/stat.cpython-39.pyc + - -rwxr-xr-x 0 0 0 3389 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_aix_support.py + - -rwxr-xr-x 0 0 0 1801 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_bootlocale.py + - -rwxr-xr-x 0 0 0 2675 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_bootsubprocess.py + - -rwxr-xr-x 0 0 0 29374 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_collections_abc.py + - -rwxr-xr-x 0 0 0 8749 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_compat_pickle.py + - -rwxr-xr-x 0 0 0 5340 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_compression.py + - -rwxr-xr-x 0 0 0 14623 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_markupbase.py + - -rwxr-xr-x 0 0 0 21773 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_osx_support.py + - -rwxr-xr-x 0 0 0 6189 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_py_abc.py + - -rwxr-xr-x 0 0 0 228666 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_pydecimal.py + - -rwxr-xr-x 0 0 0 93316 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_pyio.py + - -rwxr-xr-x 0 0 0 3115 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_sitebuiltins.py + - -rwxr-xr-x 0 0 0 25277 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_strptime.py + - -rwxr-xr-x 0 0 0 28013 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_sysconfigdata__linux_x86_64-linux-gnu.py + - -rwxr-xr-x 0 0 0 7220 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_threading_local.py + - -rwxr-xr-x 0 0 0 5923 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/_weakrefset.py + - -rwxr-xr-x 0 0 0 4920 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/abc.py + - -rwxr-xr-x 0 0 0 32605 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/aifc.py + - -rwxr-xr-x 0 0 0 500 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/antigravity.py + - -rwxr-xr-x 0 0 0 98119 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/argparse.py + - -rwxr-xr-x 0 0 0 56179 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ast.py + - -rwxr-xr-x 0 0 0 11321 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asynchat.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/ + - -rwxr-xr-x 0 0 0 1279 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/__init__.py + - -rwxr-xr-x 0 0 0 3379 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/__main__.py + - -rwxr-xr-x 0 0 0 74192 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/base_events.py + - -rwxr-xr-x 0 0 0 2574 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/base_futures.py + - -rwxr-xr-x 0 0 0 8843 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/base_subprocess.py + - -rwxr-xr-x 0 0 0 2467 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/base_tasks.py + - -rwxr-xr-x 0 0 0 888 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/constants.py + - -rwxr-xr-x 0 0 0 8797 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/coroutines.py + - -rwxr-xr-x 0 0 0 26451 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/events.py + - -rwxr-xr-x 0 0 0 1633 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/exceptions.py + - -rwxr-xr-x 0 0 0 2404 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/format_helpers.py + - -rwxr-xr-x 0 0 0 14042 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/futures.py + - -rwxr-xr-x 0 0 0 15181 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/locks.py + - -rwxr-xr-x 0 0 0 124 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/log.py + - -rwxr-xr-x 0 0 0 32146 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/proactor_events.py + - -rwxr-xr-x 0 0 0 6957 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/protocols.py + - -rwxr-xr-x 0 0 0 8305 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/queues.py + - -rwxr-xr-x 0 0 0 2125 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/runners.py + - -rwxr-xr-x 0 0 0 39500 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/selector_events.py + - -rwxr-xr-x 0 0 0 27459 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/sslproto.py + - -rwxr-xr-x 0 0 0 5992 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/staggered.py + - -rwxr-xr-x 0 0 0 26656 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/streams.py + - -rwxr-xr-x 0 0 0 8070 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/subprocess.py + - -rwxr-xr-x 0 0 0 34419 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/tasks.py + - -rwxr-xr-x 0 0 0 790 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/threads.py + - -rwxr-xr-x 0 0 0 10724 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/transports.py + - -rwxr-xr-x 0 0 0 5876 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/trsock.py + - -rwxr-xr-x 0 0 0 51754 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/unix_events.py + - -rwxr-xr-x 0 0 0 33054 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/windows_events.py + - -rwxr-xr-x 0 0 0 5060 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncio/windows_utils.py + - -rwxr-xr-x 0 0 0 20102 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/asyncore.py + - -rwxr-xr-x 0 0 0 19861 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/base64.py + - -rwxr-xr-x 0 0 0 31389 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/bdb.py + - -rwxr-xr-x 0 0 0 14784 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/binhex.py + - -rwxr-xr-x 0 0 0 2350 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/bisect.py + - -rwxr-xr-x 0 0 0 12447 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/bz2.py + - -rwxr-xr-x 0 0 0 6347 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/cProfile.py + - -rwxr-xr-x 0 0 0 24832 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/calendar.py + - -rwxr-xr-x 0 0 0 33963 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/cgi.py + - -rwxr-xr-x 0 0 0 12096 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/cgitb.py + - -rwxr-xr-x 0 0 0 5435 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/chunk.py + - -rwxr-xr-x 0 0 0 14860 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/cmd.py + - -rwxr-xr-x 0 0 0 10622 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/code.py + - -rwxr-xr-x 0 0 0 36673 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/codecs.py + - -rwxr-xr-x 0 0 0 6326 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/codeop.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/collections/ + - -rwxr-xr-x 0 0 0 49819 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/collections/__init__.py + - -rwxr-xr-x 0 0 0 119 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/collections/abc.py + - -rwxr-xr-x 0 0 0 4064 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/colorsys.py + - -rwxr-xr-x 0 0 0 20105 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/compileall.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/ + - -rwxr-xr-x 0 0 0 38 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/futures/ + - -rwxr-xr-x 0 0 0 1554 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/futures/__init__.py + - -rwxr-xr-x 0 0 0 22577 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/futures/_base.py + - -rwxr-xr-x 0 0 0 31395 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/futures/process.py + - -rwxr-xr-x 0 0 0 8771 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/concurrent/futures/thread.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/ + - -rwxr-xr-x 0 0 0 112671 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/Makefile + - -rwxr-xr-x 0 0 0 15019 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/Setup + - -rwxr-xr-x 0 0 0 3123 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/Setup.local + - -rwxr-xr-x 0 0 0 8848 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/config.c + - -rwxr-xr-x 0 0 0 1623 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/config.c.in + - -rwxr-xr-x 0 0 0 15368 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/install-sh + - -rwxr-xr-x 0 0 0 7929 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/makesetup + - -rwxr-xr-x 0 0 0 2069 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/python-config.py + - -rwxr-xr-x 0 0 0 4060 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/config-3.9-x86_64-linux-gnu/python.o + - -rwxr-xr-x 0 0 0 54584 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/configparser.py + - -rwxr-xr-x 0 0 0 24624 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/contextlib.py + - -rwxr-xr-x 0 0 0 129 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/contextvars.py + - -rwxr-xr-x 0 0 0 8650 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/copy.py + - -rwxr-xr-x 0 0 0 7274 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/copyreg.py + - -rwxr-xr-x 0 0 0 3819 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/crypt.py + - -rwxr-xr-x 0 0 0 16144 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/csv.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/ + - -rwxr-xr-x 0 0 0 18046 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/__init__.py + - -rwxr-xr-x 0 0 0 12575 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/_aix.py + - -rwxr-xr-x 0 0 0 2000 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/_endian.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/ + - -rwxr-xr-x 0 0 0 296 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/README.ctypes + - -rwxr-xr-x 0 0 0 154 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/__init__.py + - -rwxr-xr-x 0 0 0 5283 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/dyld.py + - -rwxr-xr-x 0 0 0 1828 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/dylib.py + - -rwxr-xr-x 0 0 0 84 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/fetch_macholib + - -rwxr-xr-x 0 0 0 75 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/fetch_macholib.bat + - -rwxr-xr-x 0 0 0 2201 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/macholib/framework.py + - -rwxr-xr-x 0 0 0 13879 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/util.py + - -rwxr-xr-x 0 0 0 5628 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ctypes/wintypes.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/curses/ + - -rwxr-xr-x 0 0 0 3369 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/curses/__init__.py + - -rwxr-xr-x 0 0 0 2547 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/curses/ascii.py + - -rwxr-xr-x 0 0 0 5634 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/curses/has_key.py + - -rwxr-xr-x 0 0 0 87 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/curses/panel.py + - -rwxr-xr-x 0 0 0 7657 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/curses/textpad.py + - -rwxr-xr-x 0 0 0 49586 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/dataclasses.py + - -rwxr-xr-x 0 0 0 89177 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/datetime.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/dbm/ + - -rwxr-xr-x 0 0 0 5839 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/dbm/__init__.py + - -rwxr-xr-x 0 0 0 11536 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/dbm/dumb.py + - -rwxr-xr-x 0 0 0 72 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/dbm/gnu.py + - -rwxr-xr-x 0 0 0 70 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/dbm/ndbm.py + - -rwxr-xr-x 0 0 0 320 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/decimal.py + - -rwxr-xr-x 0 0 0 83307 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/difflib.py + - -rwxr-xr-x 0 0 0 20570 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/dis.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/ + - -rwxr-xr-x 0 0 0 244 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/README + - -rwxr-xr-x 0 0 0 236 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/__init__.py + - -rwxr-xr-x 0 0 0 20007 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/_msvccompiler.py + - -rwxr-xr-x 0 0 0 8572 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/archive_util.py + - -rwxr-xr-x 0 0 0 14894 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/bcppcompiler.py + - -rwxr-xr-x 0 0 0 47418 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/ccompiler.py + - -rwxr-xr-x 0 0 0 18079 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/cmd.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/ + - -rwxr-xr-x 0 0 0 799 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/__init__.py + - -rwxr-xr-x 0 0 0 5562 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist.py + - -rwxr-xr-x 0 0 0 4913 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist_dumb.py + - -rwxr-xr-x 0 0 0 35579 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist_msi.py + - -rwxr-xr-x 0 0 0 21537 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist_rpm.py + - -rwxr-xr-x 0 0 0 16030 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/bdist_wininst.py + - -rwxr-xr-x 0 0 0 5767 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/build.py + - -rwxr-xr-x 0 0 0 8022 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/build_clib.py + - -rwxr-xr-x 0 0 0 31635 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/build_ext.py + - -rwxr-xr-x 0 0 0 17190 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/build_py.py + - -rwxr-xr-x 0 0 0 6232 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/build_scripts.py + - -rwxr-xr-x 0 0 0 5636 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/check.py + - -rwxr-xr-x 0 0 0 2776 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/clean.py + - -rwxr-xr-x 0 0 0 633 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/command_template + - -rwxr-xr-x 0 0 0 13117 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/config.py + - -rwxr-xr-x 0 0 0 26805 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/install.py + - -rwxr-xr-x 0 0 0 2822 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/install_data.py + - -rwxr-xr-x 0 0 0 2603 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/install_egg_info.py + - -rwxr-xr-x 0 0 0 1298 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/install_headers.py + - -rwxr-xr-x 0 0 0 8397 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/install_lib.py + - -rwxr-xr-x 0 0 0 2017 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/install_scripts.py + - -rwxr-xr-x 0 0 0 11712 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/register.py + - -rwxr-xr-x 0 0 0 19005 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/sdist.py + - -rwxr-xr-x 0 0 0 7621 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/command/upload.py + - -rwxr-xr-x 0 0 0 4827 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/config.py + - -rwxr-xr-x 0 0 0 8876 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/core.py + - -rwxr-xr-x 0 0 0 16380 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/cygwinccompiler.py + - -rwxr-xr-x 0 0 0 139 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/debug.py + - -rwxr-xr-x 0 0 0 3491 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/dep_util.py + - -rwxr-xr-x 0 0 0 7778 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/dir_util.py + - -rwxr-xr-x 0 0 0 50385 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/dist.py + - -rwxr-xr-x 0 0 0 3577 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/errors.py + - -rwxr-xr-x 0 0 0 10515 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/extension.py + - -rwxr-xr-x 0 0 0 17784 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/fancy_getopt.py + - -rwxr-xr-x 0 0 0 8148 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/file_util.py + - -rwxr-xr-x 0 0 0 12832 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/filelist.py + - -rwxr-xr-x 0 0 0 1969 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/log.py + - -rwxr-xr-x 0 0 0 30453 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/msvc9compiler.py + - -rwxr-xr-x 0 0 0 23540 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/msvccompiler.py + - -rwxr-xr-x 0 0 0 4660 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/spawn.py + - -rwxr-xr-x 0 0 0 20632 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/sysconfig.py + - -rwxr-xr-x 0 0 0 12483 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/text_file.py + - -rwxr-xr-x 0 0 0 14818 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/unixccompiler.py + - -rwxr-xr-x 0 0 0 20913 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/util.py + - -rwxr-xr-x 0 0 0 12514 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/version.py + - -rwxr-xr-x 0 0 0 5133 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/distutils/versionpredicate.py + - -rwxr-xr-x 0 0 0 104568 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/doctest.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/ + - -rwxr-xr-x 0 0 0 1766 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/__init__.py + - -rwxr-xr-x 0 0 0 8541 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/_encoded_words.py + - -rwxr-xr-x 0 0 0 107205 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/_header_value_parser.py + - -rwxr-xr-x 0 0 0 17722 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/_parseaddr.py + - -rwxr-xr-x 0 0 0 15534 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/_policybase.py + - -rwxr-xr-x 0 0 0 9561 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/architecture.rst + - -rwxr-xr-x 0 0 0 3558 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/base64mime.py + - -rwxr-xr-x 0 0 0 17128 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/charset.py + - -rwxr-xr-x 0 0 0 10555 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/contentmanager.py + - -rwxr-xr-x 0 0 0 1786 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/encoders.py + - -rwxr-xr-x 0 0 0 3726 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/errors.py + - -rwxr-xr-x 0 0 0 22780 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/feedparser.py + - -rwxr-xr-x 0 0 0 20816 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/generator.py + - -rwxr-xr-x 0 0 0 24102 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/header.py + - -rwxr-xr-x 0 0 0 20628 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/headerregistry.py + - -rwxr-xr-x 0 0 0 2135 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/iterators.py + - -rwxr-xr-x 0 0 0 47060 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/message.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/__init__.py + - -rwxr-xr-x 0 0 0 1321 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/application.py + - -rwxr-xr-x 0 0 0 2739 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/audio.py + - -rwxr-xr-x 0 0 0 916 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/base.py + - -rwxr-xr-x 0 0 0 1829 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/image.py + - -rwxr-xr-x 0 0 0 1317 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/message.py + - -rwxr-xr-x 0 0 0 1621 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/multipart.py + - -rwxr-xr-x 0 0 0 691 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/nonmultipart.py + - -rwxr-xr-x 0 0 0 1437 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/mime/text.py + - -rwxr-xr-x 0 0 0 5041 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/parser.py + - -rwxr-xr-x 0 0 0 10383 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/policy.py + - -rwxr-xr-x 0 0 0 9858 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/quoprimime.py + - -rwxr-xr-x 0 0 0 17060 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/email/utils.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/ + - -rwxr-xr-x 0 0 0 5588 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/__pycache__/ + - -rwxr-xr-x 0 0 0 3916 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/__pycache__/__init__.cpython-39.pyc + - -rwxr-xr-x 0 0 0 6349 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/__pycache__/aliases.cpython-39.pyc + - -rwxr-xr-x 0 0 0 1914 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/__pycache__/latin_1.cpython-39.pyc + - -rwxr-xr-x 0 0 0 1651 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/__pycache__/utf_8.cpython-39.pyc + - -rwxr-xr-x 0 0 0 15677 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/aliases.py + - -rwxr-xr-x 0 0 0 1248 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/ascii.py + - -rwxr-xr-x 0 0 0 1533 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/base64_codec.py + - -rwxr-xr-x 0 0 0 1019 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/big5.py + - -rwxr-xr-x 0 0 0 1039 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/big5hkscs.py + - -rwxr-xr-x 0 0 0 2249 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/bz2_codec.py + - -rwxr-xr-x 0 0 0 2084 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/charmap.py + - -rwxr-xr-x 0 0 0 13121 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp037.py + - -rwxr-xr-x 0 0 0 13568 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1006.py + - -rwxr-xr-x 0 0 0 13113 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1026.py + - -rwxr-xr-x 0 0 0 34597 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1125.py + - -rwxr-xr-x 0 0 0 13105 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1140.py + - -rwxr-xr-x 0 0 0 13686 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1250.py + - -rwxr-xr-x 0 0 0 13361 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1251.py + - -rwxr-xr-x 0 0 0 13511 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1252.py + - -rwxr-xr-x 0 0 0 13094 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1253.py + - -rwxr-xr-x 0 0 0 13502 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1254.py + - -rwxr-xr-x 0 0 0 12466 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1255.py + - -rwxr-xr-x 0 0 0 12814 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1256.py + - -rwxr-xr-x 0 0 0 13374 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1257.py + - -rwxr-xr-x 0 0 0 13364 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp1258.py + - -rwxr-xr-x 0 0 0 14132 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp273.py + - -rwxr-xr-x 0 0 0 12055 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp424.py + - -rwxr-xr-x 0 0 0 34564 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp437.py + - -rwxr-xr-x 0 0 0 13121 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp500.py + - -rwxr-xr-x 0 0 0 13686 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp720.py + - -rwxr-xr-x 0 0 0 34681 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp737.py + - -rwxr-xr-x 0 0 0 34476 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp775.py + - -rwxr-xr-x 0 0 0 34105 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp850.py + - -rwxr-xr-x 0 0 0 35002 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp852.py + - -rwxr-xr-x 0 0 0 33850 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp855.py + - -rwxr-xr-x 0 0 0 12423 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp856.py + - -rwxr-xr-x 0 0 0 33908 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp857.py + - -rwxr-xr-x 0 0 0 34015 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp858.py + - -rwxr-xr-x 0 0 0 34681 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp860.py + - -rwxr-xr-x 0 0 0 34633 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp861.py + - -rwxr-xr-x 0 0 0 33370 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp862.py + - -rwxr-xr-x 0 0 0 34252 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp863.py + - -rwxr-xr-x 0 0 0 33663 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp864.py + - -rwxr-xr-x 0 0 0 34618 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp865.py + - -rwxr-xr-x 0 0 0 34396 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp866.py + - -rwxr-xr-x 0 0 0 32965 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp869.py + - -rwxr-xr-x 0 0 0 12595 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp874.py + - -rwxr-xr-x 0 0 0 12854 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp875.py + - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp932.py + - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp949.py + - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/cp950.py + - -rwxr-xr-x 0 0 0 1051 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/euc_jis_2004.py + - -rwxr-xr-x 0 0 0 1051 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/euc_jisx0213.py + - -rwxr-xr-x 0 0 0 1027 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/euc_jp.py + - -rwxr-xr-x 0 0 0 1027 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/euc_kr.py + - -rwxr-xr-x 0 0 0 1031 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/gb18030.py + - -rwxr-xr-x 0 0 0 1027 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/gb2312.py + - -rwxr-xr-x 0 0 0 1015 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/gbk.py + - -rwxr-xr-x 0 0 0 1508 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/hex_codec.py + - -rwxr-xr-x 0 0 0 13475 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/hp_roman8.py + - -rwxr-xr-x 0 0 0 1011 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/hz.py + - -rwxr-xr-x 0 0 0 9098 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/idna.py + - -rwxr-xr-x 0 0 0 1053 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp.py + - -rwxr-xr-x 0 0 0 1061 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_1.py + - -rwxr-xr-x 0 0 0 1061 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_2.py + - -rwxr-xr-x 0 0 0 1073 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_2004.py + - -rwxr-xr-x 0 0 0 1061 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_3.py + - -rwxr-xr-x 0 0 0 1069 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_jp_ext.py + - -rwxr-xr-x 0 0 0 1053 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso2022_kr.py + - -rwxr-xr-x 0 0 0 13176 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_1.py + - -rwxr-xr-x 0 0 0 13589 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_10.py + - -rwxr-xr-x 0 0 0 12335 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_11.py + - -rwxr-xr-x 0 0 0 13271 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_13.py + - -rwxr-xr-x 0 0 0 13652 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_14.py + - -rwxr-xr-x 0 0 0 13212 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_15.py + - -rwxr-xr-x 0 0 0 13557 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_16.py + - -rwxr-xr-x 0 0 0 13404 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_2.py + - -rwxr-xr-x 0 0 0 13089 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_3.py + - -rwxr-xr-x 0 0 0 13376 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_4.py + - -rwxr-xr-x 0 0 0 13015 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_5.py + - -rwxr-xr-x 0 0 0 10833 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_6.py + - -rwxr-xr-x 0 0 0 12844 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_7.py + - -rwxr-xr-x 0 0 0 11036 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_8.py + - -rwxr-xr-x 0 0 0 13156 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/iso8859_9.py + - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/johab.py + - -rwxr-xr-x 0 0 0 13779 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/koi8_r.py + - -rwxr-xr-x 0 0 0 13193 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/koi8_t.py + - -rwxr-xr-x 0 0 0 13762 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/koi8_u.py + - -rwxr-xr-x 0 0 0 13723 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/kz1048.py + - -rwxr-xr-x 0 0 0 1264 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/latin_1.py + - -rwxr-xr-x 0 0 0 36467 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_arabic.py + - -rwxr-xr-x 0 0 0 13633 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_croatian.py + - -rwxr-xr-x 0 0 0 13454 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_cyrillic.py + - -rwxr-xr-x 0 0 0 15170 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_farsi.py + - -rwxr-xr-x 0 0 0 13721 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_greek.py + - -rwxr-xr-x 0 0 0 13498 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_iceland.py + - -rwxr-xr-x 0 0 0 14118 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_latin2.py + - -rwxr-xr-x 0 0 0 13480 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_roman.py + - -rwxr-xr-x 0 0 0 13661 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_romanian.py + - -rwxr-xr-x 0 0 0 13513 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mac_turkish.py + - -rwxr-xr-x 0 0 0 1211 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/mbcs.py + - -rwxr-xr-x 0 0 0 1019 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/oem.py + - -rwxr-xr-x 0 0 0 13519 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/palmos.py + - -rwxr-xr-x 0 0 0 14015 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/ptcp154.py + - -rwxr-xr-x 0 0 0 6883 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/punycode.py + - -rwxr-xr-x 0 0 0 1525 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/quopri_codec.py + - -rwxr-xr-x 0 0 0 1332 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/raw_unicode_escape.py + - -rwxr-xr-x 0 0 0 2448 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/rot_13.py + - -rwxr-xr-x 0 0 0 1039 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/shift_jis.py + - -rwxr-xr-x 0 0 0 1059 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/shift_jis_2004.py + - -rwxr-xr-x 0 0 0 1059 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/shift_jisx0213.py + - -rwxr-xr-x 0 0 0 12300 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/tis_620.py + - -rwxr-xr-x 0 0 0 1299 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/undefined.py + - -rwxr-xr-x 0 0 0 1304 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/unicode_escape.py + - -rwxr-xr-x 0 0 0 5236 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_16.py + - -rwxr-xr-x 0 0 0 1037 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_16_be.py + - -rwxr-xr-x 0 0 0 1037 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_16_le.py + - -rwxr-xr-x 0 0 0 5129 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_32.py + - -rwxr-xr-x 0 0 0 930 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_32_be.py + - -rwxr-xr-x 0 0 0 930 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_32_le.py + - -rwxr-xr-x 0 0 0 946 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_7.py + - -rwxr-xr-x 0 0 0 1005 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_8.py + - -rwxr-xr-x 0 0 0 4133 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/utf_8_sig.py + - -rwxr-xr-x 0 0 0 2851 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/uu_codec.py + - -rwxr-xr-x 0 0 0 2204 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/encodings/zlib_codec.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ensurepip/ + - -rwxr-xr-x 0 0 0 6963 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ensurepip/__init__.py + - -rwxr-xr-x 0 0 0 88 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ensurepip/__main__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ensurepip/_bundled/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ensurepip/_bundled/__init__.py + - -rwxr-xr-x 0 0 0 808 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ensurepip/_uninstall.py + - -rwxr-xr-x 0 0 0 39440 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/enum.py + - -rwxr-xr-x 0 0 0 10024 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/filecmp.py + - -rwxr-xr-x 0 0 0 14791 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/fileinput.py + - -rwxr-xr-x 0 0 0 6004 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/fnmatch.py + - -rwxr-xr-x 0 0 0 15143 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/formatter.py + - -rwxr-xr-x 0 0 0 24323 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/fractions.py + - -rwxr-xr-x 0 0 0 35496 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ftplib.py + - -rwxr-xr-x 0 0 0 38881 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/functools.py + - -rwxr-xr-x 0 0 0 4975 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/genericpath.py + - -rwxr-xr-x 0 0 0 7489 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/getopt.py + - -rwxr-xr-x 0 0 0 5990 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/getpass.py + - -rwxr-xr-x 0 0 0 27266 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/gettext.py + - -rwxr-xr-x 0 0 0 5823 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/glob.py + - -rwxr-xr-x 0 0 0 9573 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/graphlib.py + - -rwxr-xr-x 0 0 0 21772 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/gzip.py + - -rwxr-xr-x 0 0 0 10010 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/hashlib.py + - -rwxr-xr-x 0 0 0 22877 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/heapq.py + - -rwxr-xr-x 0 0 0 7003 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/hmac.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/html/ + - -rwxr-xr-x 0 0 0 4756 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/html/__init__.py + - -rwxr-xr-x 0 0 0 75383 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/html/entities.py + - -rwxr-xr-x 0 0 0 17392 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/html/parser.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/http/ + - -rwxr-xr-x 0 0 0 6732 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/http/__init__.py + - -rwxr-xr-x 0 0 0 56549 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/http/client.py + - -rwxr-xr-x 0 0 0 76835 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/http/cookiejar.py + - -rwxr-xr-x 0 0 0 19840 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/http/cookies.py + - -rwxr-xr-x 0 0 0 48231 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/http/server.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/ + - -rwxr-xr-x 0 0 0 1866 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/CREDITS.txt + - -rwxr-xr-x 0 0 0 56360 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/ChangeLog + - -rwxr-xr-x 0 0 0 10312 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/HISTORY.txt + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/ + - -rwxr-xr-x 0 0 0 443 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/README.txt + - -rwxr-xr-x 0 0 0 120 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/folder.gif + - -rwxr-xr-x 0 0 0 57746 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle.ico + - -rwxr-xr-x 0 0 0 634 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_16.gif + - -rwxr-xr-x 0 0 0 1031 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_16.png + - -rwxr-xr-x 0 0 0 39205 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_256.png + - -rwxr-xr-x 0 0 0 1019 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_32.gif + - -rwxr-xr-x 0 0 0 2036 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_32.png + - -rwxr-xr-x 0 0 0 1388 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_48.gif + - -rwxr-xr-x 0 0 0 3977 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/idle_48.png + - -rwxr-xr-x 0 0 0 75 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/minusnode.gif + - -rwxr-xr-x 0 0 0 125 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/openfolder.gif + - -rwxr-xr-x 0 0 0 78 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/plusnode.gif + - -rwxr-xr-x 0 0 0 380 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/python.gif + - -rwxr-xr-x 0 0 0 72 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/Icons/tk.gif + - -rwxr-xr-x 0 0 0 51948 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/NEWS.txt + - -rwxr-xr-x 0 0 0 27172 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/NEWS2x.txt + - -rwxr-xr-x 0 0 0 9680 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/README.txt + - -rwxr-xr-x 0 0 0 8478 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/TODO.txt + - -rwxr-xr-x 0 0 0 396 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/__init__.py + - -rwxr-xr-x 0 0 0 159 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/__main__.py + - -rwxr-xr-x 0 0 0 9150 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/autocomplete.py + - -rwxr-xr-x 0 0 0 20981 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/autocomplete_w.py + - -rwxr-xr-x 0 0 0 3216 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/autoexpand.py + - -rwxr-xr-x 0 0 0 8314 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/browser.py + - -rwxr-xr-x 0 0 0 7267 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/calltip.py + - -rwxr-xr-x 0 0 0 7158 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/calltip_w.py + - -rwxr-xr-x 0 0 0 11420 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/codecontext.py + - -rwxr-xr-x 0 0 0 13201 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/colorizer.py + - -rwxr-xr-x 0 0 0 2266 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/config-extensions.def + - -rwxr-xr-x 0 0 0 2864 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/config-highlight.def + - -rwxr-xr-x 0 0 0 10910 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/config-keys.def + - -rwxr-xr-x 0 0 0 3168 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/config-main.def + - -rwxr-xr-x 0 0 0 38173 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/config.py + - -rwxr-xr-x 0 0 0 14540 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/config_key.py + - -rwxr-xr-x 0 0 0 105738 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/configdialog.py + - -rwxr-xr-x 0 0 0 19104 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/debugger.py + - -rwxr-xr-x 0 0 0 12167 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/debugger_r.py + - -rwxr-xr-x 0 0 0 4055 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/debugobj.py + - -rwxr-xr-x 0 0 0 1082 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/debugobj_r.py + - -rwxr-xr-x 0 0 0 1043 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/delegator.py + - -rwxr-xr-x 0 0 0 2017 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/dynoption.py + - -rwxr-xr-x 0 0 0 65733 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/editor.py + - -rwxr-xr-x 0 0 0 3631 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/extend.txt + - -rwxr-xr-x 0 0 0 3876 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/filelist.py + - -rwxr-xr-x 0 0 0 15777 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/format.py + - -rwxr-xr-x 0 0 0 7479 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/grep.py + - -rwxr-xr-x 0 0 0 68554 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/help.html + - -rwxr-xr-x 0 0 0 11851 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/help.py + - -rwxr-xr-x 0 0 0 9084 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/help_about.py + - -rwxr-xr-x 0 0 0 4043 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/history.py + - -rwxr-xr-x 0 0 0 12883 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/hyperparser.py + - -rwxr-xr-x 0 0 0 177 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/idle.bat + - -rwxr-xr-x 0 0 0 454 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/idle.py + - -rwxr-xr-x 0 0 0 570 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/idle.pyw + - -rwxr-xr-x 0 0 0 15832 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/iomenu.py + - -rwxr-xr-x 0 0 0 9663 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/macosx.py + - -rwxr-xr-x 0 0 0 3930 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/mainmenu.py + - -rwxr-xr-x 0 0 0 18648 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/multicall.py + - -rwxr-xr-x 0 0 0 5709 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/outwin.py + - -rwxr-xr-x 0 0 0 7204 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/parenmatch.py + - -rwxr-xr-x 0 0 0 3193 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/pathbrowser.py + - -rwxr-xr-x 0 0 0 3130 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/percolator.py + - -rwxr-xr-x 0 0 0 19864 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/pyparse.py + - -rwxr-xr-x 0 0 0 57605 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/pyshell.py + - -rwxr-xr-x 0 0 0 15075 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/query.py + - -rwxr-xr-x 0 0 0 6875 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/redirector.py + - -rwxr-xr-x 0 0 0 9799 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/replace.py + - -rwxr-xr-x 0 0 0 21076 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/rpc.py + - -rwxr-xr-x 0 0 0 21046 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/run.py + - -rwxr-xr-x 0 0 0 8273 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/runscript.py + - -rwxr-xr-x 0 0 0 4465 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/scrolledlist.py + - -rwxr-xr-x 0 0 0 5566 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/search.py + - -rwxr-xr-x 0 0 0 7856 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/searchbase.py + - -rwxr-xr-x 0 0 0 7362 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/searchengine.py + - -rwxr-xr-x 0 0 0 13585 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/sidebar.py + - -rwxr-xr-x 0 0 0 12825 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/squeezer.py + - -rwxr-xr-x 0 0 0 4454 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/stackviewer.py + - -rwxr-xr-x 0 0 0 1472 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/statusbar.py + - -rwxr-xr-x 0 0 0 6813 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/textview.py + - -rwxr-xr-x 0 0 0 6557 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/tooltip.py + - -rwxr-xr-x 0 0 0 16370 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/tree.py + - -rwxr-xr-x 0 0 0 11046 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/undo.py + - -rwxr-xr-x 0 0 0 721 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/util.py + - -rwxr-xr-x 0 0 0 2616 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/window.py + - -rwxr-xr-x 0 0 0 4203 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/zoomheight.py + - -rwxr-xr-x 0 0 0 2005 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/idlelib/zzdummy.py + - -rwxr-xr-x 0 0 0 54904 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/imaplib.py + - -rwxr-xr-x 0 0 0 3808 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/imghdr.py + - -rwxr-xr-x 0 0 0 10536 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/imp.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/importlib/ + - -rwxr-xr-x 0 0 0 6061 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/importlib/__init__.py + - -rwxr-xr-x 0 0 0 40322 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/importlib/_bootstrap.py + - -rwxr-xr-x 0 0 0 64947 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/importlib/_bootstrap_external.py + - -rwxr-xr-x 0 0 0 1497 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/importlib/_common.py + - -rwxr-xr-x 0 0 0 14924 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/importlib/abc.py + - -rwxr-xr-x 0 0 0 844 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/importlib/machinery.py + - -rwxr-xr-x 0 0 0 18750 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/importlib/metadata.py + - -rwxr-xr-x 0 0 0 7209 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/importlib/resources.py + - -rwxr-xr-x 0 0 0 11321 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/importlib/util.py + - -rwxr-xr-x 0 0 0 118235 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/inspect.py + - -rwxr-xr-x 0 0 0 3541 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/io.py + - -rwxr-xr-x 0 0 0 77867 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ipaddress.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/json/ + - -rwxr-xr-x 0 0 0 14019 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/json/__init__.py + - -rwxr-xr-x 0 0 0 12472 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/json/decoder.py + - -rwxr-xr-x 0 0 0 16073 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/json/encoder.py + - -rwxr-xr-x 0 0 0 2425 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/json/scanner.py + - -rwxr-xr-x 0 0 0 3339 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/json/tool.py + - -rwxr-xr-x 0 0 0 1047 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/keyword.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib-dynload/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib-dynload/.empty + - -rwxr-xr-x 0 0 0 24360 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib-dynload/_crypt.cpython-39-x86_64-linux-gnu.so + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/ + - -rwxr-xr-x 0 0 0 8696 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/Grammar.txt + - -rwxr-xr-x 0 0 0 15313 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/Grammar3.9.20.final.0.pickle + - -rwxr-xr-x 0 0 0 793 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/PatternGrammar.txt + - -rwxr-xr-x 0 0 0 1225 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/PatternGrammar3.9.20.final.0.pickle + - -rwxr-xr-x 0 0 0 163 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/__init__.py + - -rwxr-xr-x 0 0 0 67 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/__main__.py + - -rwxr-xr-x 0 0 0 6623 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/btm_matcher.py + - -rwxr-xr-x 0 0 0 9966 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/btm_utils.py + - -rwxr-xr-x 0 0 0 6690 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixer_base.py + - -rwxr-xr-x 0 0 0 15206 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixer_util.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/ + - -rwxr-xr-x 0 0 0 47 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/__init__.py + - -rwxr-xr-x 0 0 0 2346 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_apply.py + - -rwxr-xr-x 0 0 0 984 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_asserts.py + - -rwxr-xr-x 0 0 0 320 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_basestring.py + - -rwxr-xr-x 0 0 0 590 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_buffer.py + - -rwxr-xr-x 0 0 0 3760 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_dict.py + - -rwxr-xr-x 0 0 0 3344 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_except.py + - -rwxr-xr-x 0 0 0 979 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_exec.py + - -rwxr-xr-x 0 0 0 2048 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_execfile.py + - -rwxr-xr-x 0 0 0 2495 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_exitfunc.py + - -rwxr-xr-x 0 0 0 2765 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_filter.py + - -rwxr-xr-x 0 0 0 644 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_funcattrs.py + - -rwxr-xr-x 0 0 0 547 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_future.py + - -rwxr-xr-x 0 0 0 451 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_getcwdu.py + - -rwxr-xr-x 0 0 0 3196 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_has_key.py + - -rwxr-xr-x 0 0 0 4876 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_idioms.py + - -rwxr-xr-x 0 0 0 3256 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_import.py + - -rwxr-xr-x 0 0 0 5684 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_imports.py + - -rwxr-xr-x 0 0 0 289 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_imports2.py + - -rwxr-xr-x 0 0 0 708 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_input.py + - -rwxr-xr-x 0 0 0 1144 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_intern.py + - -rwxr-xr-x 0 0 0 1608 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_isinstance.py + - -rwxr-xr-x 0 0 0 1548 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_itertools.py + - -rwxr-xr-x 0 0 0 2086 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_itertools_imports.py + - -rwxr-xr-x 0 0 0 476 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_long.py + - -rwxr-xr-x 0 0 0 3640 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_map.py + - -rwxr-xr-x 0 0 0 8197 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_metaclass.py + - -rwxr-xr-x 0 0 0 606 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_methodattrs.py + - -rwxr-xr-x 0 0 0 571 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_ne.py + - -rwxr-xr-x 0 0 0 3174 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_next.py + - -rwxr-xr-x 0 0 0 591 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_nonzero.py + - -rwxr-xr-x 0 0 0 768 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_numliterals.py + - -rwxr-xr-x 0 0 0 3426 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_operator.py + - -rwxr-xr-x 0 0 0 1226 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_paren.py + - -rwxr-xr-x 0 0 0 2844 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_print.py + - -rwxr-xr-x 0 0 0 2926 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_raise.py + - -rwxr-xr-x 0 0 0 454 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_raw_input.py + - -rwxr-xr-x 0 0 0 837 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_reduce.py + - -rwxr-xr-x 0 0 0 1081 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_reload.py + - -rwxr-xr-x 0 0 0 2221 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_renames.py + - -rwxr-xr-x 0 0 0 613 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_repr.py + - -rwxr-xr-x 0 0 0 1697 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_set_literal.py + - -rwxr-xr-x 0 0 0 449 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_standarderror.py + - -rwxr-xr-x 0 0 0 1034 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_sys_exc.py + - -rwxr-xr-x 0 0 0 1582 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_throw.py + - -rwxr-xr-x 0 0 0 5565 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_tuple_params.py + - -rwxr-xr-x 0 0 0 1774 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_types.py + - -rwxr-xr-x 0 0 0 1256 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_unicode.py + - -rwxr-xr-x 0 0 0 8367 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_urllib.py + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_ws_comma.py + - -rwxr-xr-x 0 0 0 2694 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_xrange.py + - -rwxr-xr-x 0 0 0 689 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_xreadlines.py + - -rwxr-xr-x 0 0 0 1289 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/fixes/fix_zip.py + - -rwxr-xr-x 0 0 0 11854 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/main.py + - -rwxr-xr-x 0 0 0 7054 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/patcomp.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/ + - -rwxr-xr-x 0 0 0 143 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/__init__.py + - -rwxr-xr-x 0 0 0 9642 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/conv.py + - -rwxr-xr-x 0 0 0 5969 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/driver.py + - -rwxr-xr-x 0 0 0 5533 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/grammar.py + - -rwxr-xr-x 0 0 0 1635 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/literals.py + - -rwxr-xr-x 0 0 0 8155 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/parse.py + - -rwxr-xr-x 0 0 0 13812 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/pgen.py + - -rwxr-xr-x 0 0 0 1302 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/token.py + - -rwxr-xr-x 0 0 0 21119 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pgen2/tokenize.py + - -rwxr-xr-x 0 0 0 1305 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pygram.py + - -rwxr-xr-x 0 0 0 27974 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/pytree.py + - -rwxr-xr-x 0 0 0 27507 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lib2to3/refactor.py + - -rwxr-xr-x 0 0 0 5461 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/linecache.py + - -rwxr-xr-x 0 0 0 78271 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/locale.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/logging/ + - -rwxr-xr-x 0 0 0 78600 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/logging/__init__.py + - -rwxr-xr-x 0 0 0 36379 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/logging/config.py + - -rwxr-xr-x 0 0 0 60423 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/logging/handlers.py + - -rwxr-xr-x 0 0 0 13231 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/lzma.py + - -rwxr-xr-x 0 0 0 78794 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/mailbox.py + - -rwxr-xr-x 0 0 0 9116 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/mailcap.py + - -rwxr-xr-x 0 0 0 21564 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/mimetypes.py + - -rwxr-xr-x 0 0 0 24401 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/modulefinder.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/ + - -rwxr-xr-x 0 0 0 916 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/__init__.py + - -rwxr-xr-x 0 0 0 31685 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/connection.py + - -rwxr-xr-x 0 0 0 11257 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/context.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/dummy/ + - -rwxr-xr-x 0 0 0 3061 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/dummy/__init__.py + - -rwxr-xr-x 0 0 0 1598 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/dummy/connection.py + - -rwxr-xr-x 0 0 0 12142 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/forkserver.py + - -rwxr-xr-x 0 0 0 11626 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/heap.py + - -rwxr-xr-x 0 0 0 47303 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/managers.py + - -rwxr-xr-x 0 0 0 32555 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/pool.py + - -rwxr-xr-x 0 0 0 2377 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/popen_fork.py + - -rwxr-xr-x 0 0 0 2230 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/popen_forkserver.py + - -rwxr-xr-x 0 0 0 2029 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/popen_spawn_posix.py + - -rwxr-xr-x 0 0 0 4011 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/popen_spawn_win32.py + - -rwxr-xr-x 0 0 0 12000 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/process.py + - -rwxr-xr-x 0 0 0 12023 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/queues.py + - -rwxr-xr-x 0 0 0 9512 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/reduction.py + - -rwxr-xr-x 0 0 0 5132 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/resource_sharer.py + - -rwxr-xr-x 0 0 0 8613 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/resource_tracker.py + - -rwxr-xr-x 0 0 0 18396 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/shared_memory.py + - -rwxr-xr-x 0 0 0 6306 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/sharedctypes.py + - -rwxr-xr-x 0 0 0 9296 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/spawn.py + - -rwxr-xr-x 0 0 0 11610 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/synchronize.py + - -rwxr-xr-x 0 0 0 14006 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/multiprocessing/util.py + - -rwxr-xr-x 0 0 0 5566 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/netrc.py + - -rwxr-xr-x 0 0 0 41023 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/nntplib.py + - -rwxr-xr-x 0 0 0 27734 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ntpath.py + - -rwxr-xr-x 0 0 0 2887 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/nturl2path.py + - -rwxr-xr-x 0 0 0 10338 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/numbers.py + - -rwxr-xr-x 0 0 0 5660 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/opcode.py + - -rwxr-xr-x 0 0 0 10751 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/operator.py + - -rwxr-xr-x 0 0 0 60369 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/optparse.py + - -rwxr-xr-x 0 0 0 39065 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/os.py + - -rwxr-xr-x 0 0 0 54073 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pathlib.py + - -rwxr-xr-x 0 0 0 63239 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pdb.py + - -rwxr-xr-x 0 0 0 64920 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pickle.py + - -rwxr-xr-x 0 0 0 93486 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pickletools.py + - -rwxr-xr-x 0 0 0 8916 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pipes.py + - -rwxr-xr-x 0 0 0 24276 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pkgutil.py + - -rwxr-xr-x 0 0 0 40602 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/platform.py + - -rwxr-xr-x 0 0 0 28248 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/plistlib.py + - -rwxr-xr-x 0 0 0 15198 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/poplib.py + - -rwxr-xr-x 0 0 0 15721 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/posixpath.py + - -rwxr-xr-x 0 0 0 22527 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pprint.py + - -rwxr-xr-x 0 0 0 22883 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/profile.py + - -rwxr-xr-x 0 0 0 29326 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pstats.py + - -rwxr-xr-x 0 0 0 4807 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pty.py + - -rwxr-xr-x 0 0 0 8148 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/py_compile.py + - -rwxr-xr-x 0 0 0 15255 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pyclbr.py + - -rwxr-xr-x 0 0 0 109600 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pydoc.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pydoc_data/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pydoc_data/__init__.py + - -rwxr-xr-x 0 0 0 96 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pydoc_data/_pydoc.css + - -rwxr-xr-x 0 0 0 703325 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/pydoc_data/topics.py + - -rwxr-xr-x 0 0 0 11496 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/queue.py + - -rwxr-xr-x 0 0 0 7268 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/quopri.py + - -rwxr-xr-x 0 0 0 31484 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/random.py + - -rwxr-xr-x 0 0 0 15861 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/re.py + - -rwxr-xr-x 0 0 0 5267 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/reprlib.py + - -rwxr-xr-x 0 0 0 7648 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/rlcompleter.py + - -rwxr-xr-x 0 0 0 13084 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/runpy.py + - -rwxr-xr-x 0 0 0 6442 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/sched.py + - -rwxr-xr-x 0 0 0 2036 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/secrets.py + - -rwxr-xr-x 0 0 0 19536 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/selectors.py + - -rwxr-xr-x 0 0 0 8527 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/shelve.py + - -rwxr-xr-x 0 0 0 13501 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/shlex.py + - -rwxr-xr-x 0 0 0 53030 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/shutil.py + - -rwxr-xr-x 0 0 0 2438 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/signal.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/ + - -rwxr-xr-x 0 0 0 119 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/README.txt + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/ + - -rwxr-xr-x 0 0 0 6715 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/__pycache__/ + - -rwxr-xr-x 0 0 0 8117 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/__pycache__/__init__.cpython-39.pyc + - -rwxr-xr-x 0 0 0 44 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/_distutils_hack/override.py + - -rwxr-xr-x 0 0 0 151 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/distutils-precedence.pth + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/ + - -rwxr-xr-x 0 0 0 10669 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/AUTHORS.txt + - -rwxr-xr-x 0 0 0 4 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/INSTALLER + - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/LICENSE.txt + - -rwxr-xr-x 0 0 0 3626 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/METADATA + - -rwxr-xr-x 0 0 0 66872 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/RECORD + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/REQUESTED + - -rwxr-xr-x 0 0 0 91 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/WHEEL + - -rwxr-xr-x 0 0 0 243 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/direct_url.json + - -rwxr-xr-x 0 0 0 87 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/entry_points.txt + - -rwxr-xr-x 0 0 0 4 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip-24.1.2.dist-info/top_level.txt + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/ + - -rwxr-xr-x 0 0 0 357 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/__init__.py + - -rwxr-xr-x 0 0 0 854 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/__main__.py + - -rwxr-xr-x 0 0 0 1450 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/__pip-runner__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/ + - -rwxr-xr-x 0 0 0 513 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/__init__.py + - -rwxr-xr-x 0 0 0 10374 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/build_env.py + - -rwxr-xr-x 0 0 0 10369 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cache.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/ + - -rwxr-xr-x 0 0 0 132 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/__init__.py + - -rwxr-xr-x 0 0 0 6865 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/autocompletion.py + - -rwxr-xr-x 0 0 0 8667 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/base_command.py + - -rwxr-xr-x 0 0 0 30066 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/cmdoptions.py + - -rwxr-xr-x 0 0 0 774 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/command_context.py + - -rwxr-xr-x 0 0 0 5857 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/index_command.py + - -rwxr-xr-x 0 0 0 2817 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/main.py + - -rwxr-xr-x 0 0 0 4338 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/main_parser.py + - -rwxr-xr-x 0 0 0 10811 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/parser.py + - -rwxr-xr-x 0 0 0 2714 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/progress_bars.py + - -rwxr-xr-x 0 0 0 12250 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/req_command.py + - -rwxr-xr-x 0 0 0 5118 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/spinners.py + - -rwxr-xr-x 0 0 0 116 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/cli/status_codes.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/ + - -rwxr-xr-x 0 0 0 3882 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/__init__.py + - -rwxr-xr-x 0 0 0 7944 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/cache.py + - -rwxr-xr-x 0 0 0 1684 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/check.py + - -rwxr-xr-x 0 0 0 4287 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/completion.py + - -rwxr-xr-x 0 0 0 9766 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/configuration.py + - -rwxr-xr-x 0 0 0 6797 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/debug.py + - -rwxr-xr-x 0 0 0 5273 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/download.py + - -rwxr-xr-x 0 0 0 3172 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/freeze.py + - -rwxr-xr-x 0 0 0 1703 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/hash.py + - -rwxr-xr-x 0 0 0 1132 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/help.py + - -rwxr-xr-x 0 0 0 4731 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/index.py + - -rwxr-xr-x 0 0 0 3189 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/inspect.py + - -rwxr-xr-x 0 0 0 28997 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/install.py + - -rwxr-xr-x 0 0 0 12771 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/list.py + - -rwxr-xr-x 0 0 0 5628 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/search.py + - -rwxr-xr-x 0 0 0 7507 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/show.py + - -rwxr-xr-x 0 0 0 3892 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/uninstall.py + - -rwxr-xr-x 0 0 0 6414 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/commands/wheel.py + - -rwxr-xr-x 0 0 0 14006 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/configuration.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/ + - -rwxr-xr-x 0 0 0 858 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/__init__.py + - -rwxr-xr-x 0 0 0 1783 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/base.py + - -rwxr-xr-x 0 0 0 842 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/installed.py + - -rwxr-xr-x 0 0 0 6751 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/sdist.py + - -rwxr-xr-x 0 0 0 1317 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/distributions/wheel.py + - -rwxr-xr-x 0 0 0 25371 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/exceptions.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/ + - -rwxr-xr-x 0 0 0 30 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/__init__.py + - -rwxr-xr-x 0 0 0 16265 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/collector.py + - -rwxr-xr-x 0 0 0 37733 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/package_finder.py + - -rwxr-xr-x 0 0 0 8688 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/index/sources.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/ + - -rwxr-xr-x 0 0 0 14925 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/__init__.py + - -rwxr-xr-x 0 0 0 6009 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/_distutils.py + - -rwxr-xr-x 0 0 0 7724 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/_sysconfig.py + - -rwxr-xr-x 0 0 0 2556 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/locations/base.py + - -rwxr-xr-x 0 0 0 340 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/main.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/ + - -rwxr-xr-x 0 0 0 4339 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/__init__.py + - -rwxr-xr-x 0 0 0 2644 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/_json.py + - -rwxr-xr-x 0 0 0 25298 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/base.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/ + - -rwxr-xr-x 0 0 0 135 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/__init__.py + - -rwxr-xr-x 0 0 0 1882 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/_compat.py + - -rwxr-xr-x 0 0 0 8275 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/_dists.py + - -rwxr-xr-x 0 0 0 7455 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/importlib/_envs.py + - -rwxr-xr-x 0 0 0 10542 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/metadata/pkg_resources.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/ + - -rwxr-xr-x 0 0 0 63 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/__init__.py + - -rwxr-xr-x 0 0 0 753 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/candidate.py + - -rwxr-xr-x 0 0 0 6578 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/direct_url.py + - -rwxr-xr-x 0 0 0 2486 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/format_control.py + - -rwxr-xr-x 0 0 0 1030 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/index.py + - -rwxr-xr-x 0 0 0 2818 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/installation_report.py + - -rwxr-xr-x 0 0 0 21034 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/link.py + - -rwxr-xr-x 0 0 0 575 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/scheme.py + - -rwxr-xr-x 0 0 0 4531 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/search_scope.py + - -rwxr-xr-x 0 0 0 2015 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/selection_prefs.py + - -rwxr-xr-x 0 0 0 4271 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/target_python.py + - -rwxr-xr-x 0 0 0 3601 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/models/wheel.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/ + - -rwxr-xr-x 0 0 0 50 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/__init__.py + - -rwxr-xr-x 0 0 0 20533 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/auth.py + - -rwxr-xr-x 0 0 0 3935 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/cache.py + - -rwxr-xr-x 0 0 0 6087 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/download.py + - -rwxr-xr-x 0 0 0 7638 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/lazy_wheel.py + - -rwxr-xr-x 0 0 0 18741 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/session.py + - -rwxr-xr-x 0 0 0 4073 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/utils.py + - -rwxr-xr-x 0 0 0 1838 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/network/xmlrpc.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/__init__.py + - -rwxr-xr-x 0 0 0 4774 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/build_tracker.py + - -rwxr-xr-x 0 0 0 1422 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/metadata.py + - -rwxr-xr-x 0 0 0 1474 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/metadata_editable.py + - -rwxr-xr-x 0 0 0 2190 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/metadata_legacy.py + - -rwxr-xr-x 0 0 0 1075 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/wheel.py + - -rwxr-xr-x 0 0 0 1417 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/wheel_editable.py + - -rwxr-xr-x 0 0 0 3045 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/build/wheel_legacy.py + - -rwxr-xr-x 0 0 0 5087 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/check.py + - -rwxr-xr-x 0 0 0 9864 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/freeze.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/install/ + - -rwxr-xr-x 0 0 0 51 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/install/__init__.py + - -rwxr-xr-x 0 0 0 1283 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/install/editable_legacy.py + - -rwxr-xr-x 0 0 0 27197 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/install/wheel.py + - -rwxr-xr-x 0 0 0 28118 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/operations/prepare.py + - -rwxr-xr-x 0 0 0 7152 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/pyproject.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/ + - -rwxr-xr-x 0 0 0 2653 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/__init__.py + - -rwxr-xr-x 0 0 0 18412 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/constructors.py + - -rwxr-xr-x 0 0 0 17687 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/req_file.py + - -rwxr-xr-x 0 0 0 35054 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/req_install.py + - -rwxr-xr-x 0 0 0 2858 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/req_set.py + - -rwxr-xr-x 0 0 0 23853 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/req/req_uninstall.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/__init__.py + - -rwxr-xr-x 0 0 0 583 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/base.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/legacy/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/legacy/__init__.py + - -rwxr-xr-x 0 0 0 24068 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__init__.py + - -rwxr-xr-x 0 0 0 5023 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/base.py + - -rwxr-xr-x 0 0 0 19823 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/candidates.py + - -rwxr-xr-x 0 0 0 32395 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/factory.py + - -rwxr-xr-x 0 0 0 6383 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py + - -rwxr-xr-x 0 0 0 9935 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/provider.py + - -rwxr-xr-x 0 0 0 3100 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/reporter.py + - -rwxr-xr-x 0 0 0 8065 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/requirements.py + - -rwxr-xr-x 0 0 0 12592 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/resolver.py + - -rwxr-xr-x 0 0 0 8356 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/self_outdated_check.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/__init__.py + - -rwxr-xr-x 0 0 0 3350 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/_jaraco_text.py + - -rwxr-xr-x 0 0 0 1015 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/_log.py + - -rwxr-xr-x 0 0 0 1665 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/appdirs.py + - -rwxr-xr-x 0 0 0 2399 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/compat.py + - -rwxr-xr-x 0 0 0 5377 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/compatibility_tags.py + - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/datetime.py + - -rwxr-xr-x 0 0 0 3707 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/deprecation.py + - -rwxr-xr-x 0 0 0 3196 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/direct_url_helpers.py + - -rwxr-xr-x 0 0 0 2463 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/egg_link.py + - -rwxr-xr-x 0 0 0 1169 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/encoding.py + - -rwxr-xr-x 0 0 0 3064 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/entrypoints.py + - -rwxr-xr-x 0 0 0 5122 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/filesystem.py + - -rwxr-xr-x 0 0 0 716 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/filetypes.py + - -rwxr-xr-x 0 0 0 3166 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/glibc.py + - -rwxr-xr-x 0 0 0 3113 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/glibc.py.orig + - -rwxr-xr-x 0 0 0 4951 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/hashes.py + - -rwxr-xr-x 0 0 0 11602 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/logging.py + - -rwxr-xr-x 0 0 0 23814 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/misc.py + - -rwxr-xr-x 0 0 0 2108 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/packaging.py + - -rwxr-xr-x 0 0 0 4435 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/setuptools_build.py + - -rwxr-xr-x 0 0 0 8988 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/subprocess.py + - -rwxr-xr-x 0 0 0 9312 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/temp_dir.py + - -rwxr-xr-x 0 0 0 11951 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/unpacking.py + - -rwxr-xr-x 0 0 0 1599 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/urls.py + - -rwxr-xr-x 0 0 0 3456 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/virtualenv.py + - -rwxr-xr-x 0 0 0 4494 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/utils/wheel.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/ + - -rwxr-xr-x 0 0 0 596 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/__init__.py + - -rwxr-xr-x 0 0 0 3528 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/bazaar.py + - -rwxr-xr-x 0 0 0 18177 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/git.py + - -rwxr-xr-x 0 0 0 5249 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/mercurial.py + - -rwxr-xr-x 0 0 0 11735 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/subversion.py + - -rwxr-xr-x 0 0 0 22440 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/vcs/versioncontrol.py + - -rwxr-xr-x 0 0 0 11799 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_internal/wheel_builder.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/ + - -rwxr-xr-x 0 0 0 4850 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/ + - -rwxr-xr-x 0 0 0 676 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__init__.py + - -rwxr-xr-x 0 0 0 1737 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/_cmd.py + - -rwxr-xr-x 0 0 0 6355 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/adapter.py + - -rwxr-xr-x 0 0 0 1952 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/cache.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/ + - -rwxr-xr-x 0 0 0 303 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/__init__.py + - -rwxr-xr-x 0 0 0 5406 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py + - -rwxr-xr-x 0 0 0 1386 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py + - -rwxr-xr-x 0 0 0 18575 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/controller.py + - -rwxr-xr-x 0 0 0 4292 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/filewrapper.py + - -rwxr-xr-x 0 0 0 4834 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/heuristics.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/py.typed + - -rwxr-xr-x 0 0 0 5163 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/serialize.py + - -rwxr-xr-x 0 0 0 1417 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/cachecontrol/wrapper.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/ + - -rwxr-xr-x 0 0 0 94 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/__init__.py + - -rwxr-xr-x 0 0 0 255 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/__main__.py + - -rwxr-xr-x 0 0 0 292541 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/cacert.pem + - -rwxr-xr-x 0 0 0 4486 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/core.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/certifi/py.typed + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/ + - -rwxr-xr-x 0 0 0 625 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/__init__.py + - -rwxr-xr-x 0 0 0 41487 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/compat.py + - -rwxr-xr-x 0 0 0 51965 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/database.py + - -rwxr-xr-x 0 0 0 20797 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/index.py + - -rwxr-xr-x 0 0 0 51767 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/locators.py + - -rwxr-xr-x 0 0 0 14168 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/manifest.py + - -rwxr-xr-x 0 0 0 5268 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/markers.py + - -rwxr-xr-x 0 0 0 39693 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/metadata.py + - -rwxr-xr-x 0 0 0 10820 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/resources.py + - -rwxr-xr-x 0 0 0 18780 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/scripts.py + - -rwxr-xr-x 0 0 0 97792 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/t32.exe + - -rwxr-xr-x 0 0 0 182784 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/t64-arm.exe + - -rwxr-xr-x 0 0 0 108032 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/t64.exe + - -rwxr-xr-x 0 0 0 67530 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/util.py + - -rwxr-xr-x 0 0 0 23747 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/version.py + - -rwxr-xr-x 0 0 0 91648 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/w32.exe + - -rwxr-xr-x 0 0 0 168448 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/w64-arm.exe + - -rwxr-xr-x 0 0 0 101888 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/w64.exe + - -rwxr-xr-x 0 0 0 43958 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distlib/wheel.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/ + - -rwxr-xr-x 0 0 0 981 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/__init__.py + - -rwxr-xr-x 0 0 0 64 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/__main__.py + - -rwxr-xr-x 0 0 0 49430 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/distro.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/distro/py.typed + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/ + - -rwxr-xr-x 0 0 0 849 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/__init__.py + - -rwxr-xr-x 0 0 0 3426 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/codec.py + - -rwxr-xr-x 0 0 0 321 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/compat.py + - -rwxr-xr-x 0 0 0 12663 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/core.py + - -rwxr-xr-x 0 0 0 78320 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/idnadata.py + - -rwxr-xr-x 0 0 0 1881 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/intranges.py + - -rwxr-xr-x 0 0 0 21 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/package_data.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/py.typed + - -rwxr-xr-x 0 0 0 206503 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/idna/uts46data.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/ + - -rwxr-xr-x 0 0 0 1077 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/__init__.py + - -rwxr-xr-x 0 0 0 1081 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/exceptions.py + - -rwxr-xr-x 0 0 0 5629 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/ext.py + - -rwxr-xr-x 0 0 0 33175 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/msgpack/fallback.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/ + - -rwxr-xr-x 0 0 0 496 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/__init__.py + - -rwxr-xr-x 0 0 0 3282 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_elffile.py + - -rwxr-xr-x 0 0 0 9586 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_manylinux.py + - -rwxr-xr-x 0 0 0 2694 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_musllinux.py + - -rwxr-xr-x 0 0 0 10236 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_parser.py + - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_structures.py + - -rwxr-xr-x 0 0 0 5273 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/_tokenizer.py + - -rwxr-xr-x 0 0 0 10671 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/markers.py + - -rwxr-xr-x 0 0 0 32349 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/metadata.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/py.typed + - -rwxr-xr-x 0 0 0 2947 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/requirements.py + - -rwxr-xr-x 0 0 0 39738 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/specifiers.py + - -rwxr-xr-x 0 0 0 18883 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/tags.py + - -rwxr-xr-x 0 0 0 5287 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/utils.py + - -rwxr-xr-x 0 0 0 16210 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/packaging/version.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pkg_resources/ + - -rwxr-xr-x 0 0 0 108869 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pkg_resources/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/ + - -rwxr-xr-x 0 0 0 22285 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/__init__.py + - -rwxr-xr-x 0 0 0 1505 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/__main__.py + - -rwxr-xr-x 0 0 0 7681 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/android.py + - -rwxr-xr-x 0 0 0 8996 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/api.py + - -rwxr-xr-x 0 0 0 5580 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/macos.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/py.typed + - -rwxr-xr-x 0 0 0 10643 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/unix.py + - -rwxr-xr-x 0 0 0 411 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/version.py + - -rwxr-xr-x 0 0 0 10125 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/platformdirs/windows.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/ + - -rwxr-xr-x 0 0 0 2983 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/__init__.py + - -rwxr-xr-x 0 0 0 353 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/__main__.py + - -rwxr-xr-x 0 0 0 23650 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/cmdline.py + - -rwxr-xr-x 0 0 0 1697 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/console.py + - -rwxr-xr-x 0 0 0 1938 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/filter.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/filters/ + - -rwxr-xr-x 0 0 0 40386 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/filters/__init__.py + - -rwxr-xr-x 0 0 0 4178 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatter.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/ + - -rwxr-xr-x 0 0 0 5431 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/__init__.py + - -rwxr-xr-x 0 0 0 4176 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/_mapping.py + - -rwxr-xr-x 0 0 0 3314 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/bbcode.py + - -rwxr-xr-x 0 0 0 5094 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/groff.py + - -rwxr-xr-x 0 0 0 35676 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/html.py + - -rwxr-xr-x 0 0 0 23140 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/img.py + - -rwxr-xr-x 0 0 0 4981 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/irc.py + - -rwxr-xr-x 0 0 0 19351 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/latex.py + - -rwxr-xr-x 0 0 0 5073 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/other.py + - -rwxr-xr-x 0 0 0 2212 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py + - -rwxr-xr-x 0 0 0 5014 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/rtf.py + - -rwxr-xr-x 0 0 0 7335 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/svg.py + - -rwxr-xr-x 0 0 0 4674 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/terminal.py + - -rwxr-xr-x 0 0 0 11753 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/formatters/terminal256.py + - -rwxr-xr-x 0 0 0 35284 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexer.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexers/ + - -rwxr-xr-x 0 0 0 12161 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexers/__init__.py + - -rwxr-xr-x 0 0 0 74926 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexers/_mapping.py + - -rwxr-xr-x 0 0 0 53448 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/lexers/python.py + - -rwxr-xr-x 0 0 0 986 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/modeline.py + - -rwxr-xr-x 0 0 0 2591 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/plugin.py + - -rwxr-xr-x 0 0 0 3072 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/regexopt.py + - -rwxr-xr-x 0 0 0 3092 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/scanner.py + - -rwxr-xr-x 0 0 0 7770 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/sphinxext.py + - -rwxr-xr-x 0 0 0 6420 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/style.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/styles/ + - -rwxr-xr-x 0 0 0 2042 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/styles/__init__.py + - -rwxr-xr-x 0 0 0 3251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/styles/_mapping.py + - -rwxr-xr-x 0 0 0 6226 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/token.py + - -rwxr-xr-x 0 0 0 63223 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/unistring.py + - -rwxr-xr-x 0 0 0 10230 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pygments/util.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/ + - -rwxr-xr-x 0 0 0 491 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/__init__.py + - -rwxr-xr-x 0 0 0 138 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_compat.py + - -rwxr-xr-x 0 0 0 11920 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_impl.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_in_process/ + - -rwxr-xr-x 0 0 0 546 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py + - -rwxr-xr-x 0 0 0 10927 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/ + - -rwxr-xr-x 0 0 0 5057 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/__init__.py + - -rwxr-xr-x 0 0 0 435 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/__version__.py + - -rwxr-xr-x 0 0 0 1495 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/_internal_utils.py + - -rwxr-xr-x 0 0 0 27607 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py + - -rwxr-xr-x 0 0 0 6449 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/api.py + - -rwxr-xr-x 0 0 0 10186 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/auth.py + - -rwxr-xr-x 0 0 0 575 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/certs.py + - -rwxr-xr-x 0 0 0 1485 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/compat.py + - -rwxr-xr-x 0 0 0 18590 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/cookies.py + - -rwxr-xr-x 0 0 0 4272 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/exceptions.py + - -rwxr-xr-x 0 0 0 3813 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/help.py + - -rwxr-xr-x 0 0 0 733 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/hooks.py + - -rwxr-xr-x 0 0 0 35483 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/models.py + - -rwxr-xr-x 0 0 0 1057 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/packages.py + - -rwxr-xr-x 0 0 0 30495 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py + - -rwxr-xr-x 0 0 0 4322 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/status_codes.py + - -rwxr-xr-x 0 0 0 2912 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/structures.py + - -rwxr-xr-x 0 0 0 33631 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/requests/utils.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/ + - -rwxr-xr-x 0 0 0 537 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/__init__.py + - -rwxr-xr-x 0 0 0 156 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py + - -rwxr-xr-x 0 0 0 5871 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/providers.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/py.typed + - -rwxr-xr-x 0 0 0 1601 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/reporters.py + - -rwxr-xr-x 0 0 0 20511 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/resolvers.py + - -rwxr-xr-x 0 0 0 4963 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/resolvelib/structs.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/ + - -rwxr-xr-x 0 0 0 6090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/__init__.py + - -rwxr-xr-x 0 0 0 8477 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/__main__.py + - -rwxr-xr-x 0 0 0 10209 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_cell_widths.py + - -rwxr-xr-x 0 0 0 140235 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_emoji_codes.py + - -rwxr-xr-x 0 0 0 1064 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_emoji_replace.py + - -rwxr-xr-x 0 0 0 2128 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_export_format.py + - -rwxr-xr-x 0 0 0 265 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_extension.py + - -rwxr-xr-x 0 0 0 799 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_fileno.py + - -rwxr-xr-x 0 0 0 9695 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_inspect.py + - -rwxr-xr-x 0 0 0 3225 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_log_render.py + - -rwxr-xr-x 0 0 0 1236 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_loop.py + - -rwxr-xr-x 0 0 0 1387 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_null_file.py + - -rwxr-xr-x 0 0 0 7063 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_palettes.py + - -rwxr-xr-x 0 0 0 423 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_pick.py + - -rwxr-xr-x 0 0 0 5471 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_ratio.py + - -rwxr-xr-x 0 0 0 19919 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_spinners.py + - -rwxr-xr-x 0 0 0 351 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_stack.py + - -rwxr-xr-x 0 0 0 417 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_timer.py + - -rwxr-xr-x 0 0 0 22820 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_win32_console.py + - -rwxr-xr-x 0 0 0 1925 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_windows.py + - -rwxr-xr-x 0 0 0 2783 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_windows_renderer.py + - -rwxr-xr-x 0 0 0 3404 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/_wrap.py + - -rwxr-xr-x 0 0 0 890 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/abc.py + - -rwxr-xr-x 0 0 0 10368 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/align.py + - -rwxr-xr-x 0 0 0 6906 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/ansi.py + - -rwxr-xr-x 0 0 0 3263 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/bar.py + - -rwxr-xr-x 0 0 0 10831 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/box.py + - -rwxr-xr-x 0 0 0 4780 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/cells.py + - -rwxr-xr-x 0 0 0 18223 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/color.py + - -rwxr-xr-x 0 0 0 1054 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/color_triplet.py + - -rwxr-xr-x 0 0 0 7131 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/columns.py + - -rwxr-xr-x 0 0 0 99173 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/console.py + - -rwxr-xr-x 0 0 0 1288 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/constrain.py + - -rwxr-xr-x 0 0 0 5502 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/containers.py + - -rwxr-xr-x 0 0 0 6630 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/control.py + - -rwxr-xr-x 0 0 0 8082 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/default_styles.py + - -rwxr-xr-x 0 0 0 972 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/diagnose.py + - -rwxr-xr-x 0 0 0 2501 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/emoji.py + - -rwxr-xr-x 0 0 0 642 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/errors.py + - -rwxr-xr-x 0 0 0 1683 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/file_proxy.py + - -rwxr-xr-x 0 0 0 2508 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/filesize.py + - -rwxr-xr-x 0 0 0 9585 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/highlighter.py + - -rwxr-xr-x 0 0 0 5031 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/json.py + - -rwxr-xr-x 0 0 0 3252 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/jupyter.py + - -rwxr-xr-x 0 0 0 14004 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/layout.py + - -rwxr-xr-x 0 0 0 14271 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/live.py + - -rwxr-xr-x 0 0 0 3666 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/live_render.py + - -rwxr-xr-x 0 0 0 11903 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/logging.py + - -rwxr-xr-x 0 0 0 8451 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/markup.py + - -rwxr-xr-x 0 0 0 5305 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/measure.py + - -rwxr-xr-x 0 0 0 4970 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/padding.py + - -rwxr-xr-x 0 0 0 828 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/pager.py + - -rwxr-xr-x 0 0 0 3396 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/palette.py + - -rwxr-xr-x 0 0 0 10705 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/panel.py + - -rwxr-xr-x 0 0 0 35848 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/pretty.py + - -rwxr-xr-x 0 0 0 59715 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/progress.py + - -rwxr-xr-x 0 0 0 8164 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/progress_bar.py + - -rwxr-xr-x 0 0 0 11304 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/prompt.py + - -rwxr-xr-x 0 0 0 1391 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/protocol.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/py.typed + - -rwxr-xr-x 0 0 0 166 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/region.py + - -rwxr-xr-x 0 0 0 4431 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/repr.py + - -rwxr-xr-x 0 0 0 4602 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/rule.py + - -rwxr-xr-x 0 0 0 2843 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/scope.py + - -rwxr-xr-x 0 0 0 1591 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/screen.py + - -rwxr-xr-x 0 0 0 24246 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/segment.py + - -rwxr-xr-x 0 0 0 4339 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/spinner.py + - -rwxr-xr-x 0 0 0 4424 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/status.py + - -rwxr-xr-x 0 0 0 27073 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/style.py + - -rwxr-xr-x 0 0 0 1258 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/styled.py + - -rwxr-xr-x 0 0 0 35475 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/syntax.py + - -rwxr-xr-x 0 0 0 39680 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/table.py + - -rwxr-xr-x 0 0 0 3370 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/terminal_theme.py + - -rwxr-xr-x 0 0 0 47312 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/text.py + - -rwxr-xr-x 0 0 0 3777 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/theme.py + - -rwxr-xr-x 0 0 0 102 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/themes.py + - -rwxr-xr-x 0 0 0 29601 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/traceback.py + - -rwxr-xr-x 0 0 0 9167 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/rich/tree.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/ + - -rwxr-xr-x 0 0 0 20518 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/__init__.py + - -rwxr-xr-x 0 0 0 3551 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/_asyncio.py + - -rwxr-xr-x 0 0 0 2179 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/_utils.py + - -rwxr-xr-x 0 0 0 1682 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/after.py + - -rwxr-xr-x 0 0 0 1562 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/before.py + - -rwxr-xr-x 0 0 0 2372 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/before_sleep.py + - -rwxr-xr-x 0 0 0 1383 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/nap.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/py.typed + - -rwxr-xr-x 0 0 0 8746 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/retry.py + - -rwxr-xr-x 0 0 0 3086 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/stop.py + - -rwxr-xr-x 0 0 0 2142 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/tornadoweb.py + - -rwxr-xr-x 0 0 0 8024 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tenacity/wait.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/ + - -rwxr-xr-x 0 0 0 396 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/__init__.py + - -rwxr-xr-x 0 0 0 22633 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/_parser.py + - -rwxr-xr-x 0 0 0 2943 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/_re.py + - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/_types.py + - -rwxr-xr-x 0 0 0 26 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/tomli/py.typed + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/truststore/ + - -rwxr-xr-x 0 0 0 403 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/truststore/__init__.py + - -rwxr-xr-x 0 0 0 10461 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/truststore/_api.py + - -rwxr-xr-x 0 0 0 17608 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/truststore/_macos.py + - -rwxr-xr-x 0 0 0 2324 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/truststore/_openssl.py + - -rwxr-xr-x 0 0 0 1130 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/truststore/_ssl_constants.py + - -rwxr-xr-x 0 0 0 17891 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/truststore/_windows.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/truststore/py.typed + - -rwxr-xr-x 0 0 0 122341 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/typing_extensions.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/ + - -rwxr-xr-x 0 0 0 3333 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/__init__.py + - -rwxr-xr-x 0 0 0 11372 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/_collections.py + - -rwxr-xr-x 0 0 0 64 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/_version.py + - -rwxr-xr-x 0 0 0 20300 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/connection.py + - -rwxr-xr-x 0 0 0 40285 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/__init__.py + - -rwxr-xr-x 0 0 0 957 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py + - -rwxr-xr-x 0 0 0 17632 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py + - -rwxr-xr-x 0 0 0 13922 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py + - -rwxr-xr-x 0 0 0 11036 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/appengine.py + - -rwxr-xr-x 0 0 0 4528 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py + - -rwxr-xr-x 0 0 0 17081 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py + - -rwxr-xr-x 0 0 0 34446 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/securetransport.py + - -rwxr-xr-x 0 0 0 7097 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/socks.py + - -rwxr-xr-x 0 0 0 8217 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/exceptions.py + - -rwxr-xr-x 0 0 0 8579 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/fields.py + - -rwxr-xr-x 0 0 0 2440 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/filepost.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py + - -rwxr-xr-x 0 0 0 1417 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py + - -rwxr-xr-x 0 0 0 5343 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py + - -rwxr-xr-x 0 0 0 34665 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/six.py + - -rwxr-xr-x 0 0 0 19990 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/poolmanager.py + - -rwxr-xr-x 0 0 0 6691 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/request.py + - -rwxr-xr-x 0 0 0 30641 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/response.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ + - -rwxr-xr-x 0 0 0 1155 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/__init__.py + - -rwxr-xr-x 0 0 0 4901 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/connection.py + - -rwxr-xr-x 0 0 0 1605 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/proxy.py + - -rwxr-xr-x 0 0 0 498 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/queue.py + - -rwxr-xr-x 0 0 0 3997 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/request.py + - -rwxr-xr-x 0 0 0 3510 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/response.py + - -rwxr-xr-x 0 0 0 22013 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/retry.py + - -rwxr-xr-x 0 0 0 17177 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_.py + - -rwxr-xr-x 0 0 0 5758 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py + - -rwxr-xr-x 0 0 0 6895 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssltransport.py + - -rwxr-xr-x 0 0 0 10168 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/timeout.py + - -rwxr-xr-x 0 0 0 14296 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/url.py + - -rwxr-xr-x 0 0 0 5403 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/urllib3/util/wait.py + - -rwxr-xr-x 0 0 0 346 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/_vendor/vendor.txt + - -rwxr-xr-x 0 0 0 286 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pip/py.typed + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/ + - -rwxr-xr-x 0 0 0 124456 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/backports/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/backports/__init__.py + - -rwxr-xr-x 0 0 0 106920 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/backports/tarfile.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/ + - -rwxr-xr-x 0 0 0 506 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py + - -rwxr-xr-x 0 0 0 4504 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_adapters.py + - -rwxr-xr-x 0 0 0 5457 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_common.py + - -rwxr-xr-x 0 0 0 2925 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_compat.py + - -rwxr-xr-x 0 0 0 884 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py + - -rwxr-xr-x 0 0 0 3481 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/_legacy.py + - -rwxr-xr-x 0 0 0 5140 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/abc.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/py.typed + - -rwxr-xr-x 0 0 0 3581 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/readers.py + - -rwxr-xr-x 0 0 0 2576 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/importlib_resources/simple.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/__init__.py + - -rwxr-xr-x 0 0 0 9573 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/context.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/functools/ + - -rwxr-xr-x 0 0 0 16705 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/functools/__init__.py + - -rwxr-xr-x 0 0 0 3982 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/functools/__init__.pyi + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/functools/py.typed + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/text/ + - -rwxr-xr-x 0 0 0 15526 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/jaraco/text/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/ + - -rwxr-xr-x 0 0 0 149 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/__init__.py + - -rwxr-xr-x 0 0 0 43 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/__init__.pyi + - -rwxr-xr-x 0 0 0 143053 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/more.py + - -rwxr-xr-x 0 0 0 21044 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/more.pyi + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/py.typed + - -rwxr-xr-x 0 0 0 27548 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/recipes.py + - -rwxr-xr-x 0 0 0 4436 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/more_itertools/recipes.pyi + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/ + - -rwxr-xr-x 0 0 0 496 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/__init__.py + - -rwxr-xr-x 0 0 0 3266 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_elffile.py + - -rwxr-xr-x 0 0 0 9590 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_manylinux.py + - -rwxr-xr-x 0 0 0 2676 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_musllinux.py + - -rwxr-xr-x 0 0 0 10347 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_parser.py + - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_structures.py + - -rwxr-xr-x 0 0 0 5292 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_tokenizer.py + - -rwxr-xr-x 0 0 0 8208 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/markers.py + - -rwxr-xr-x 0 0 0 33036 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/metadata.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/py.typed + - -rwxr-xr-x 0 0 0 2933 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/requirements.py + - -rwxr-xr-x 0 0 0 39784 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/specifiers.py + - -rwxr-xr-x 0 0 0 18950 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/tags.py + - -rwxr-xr-x 0 0 0 5268 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/utils.py + - -rwxr-xr-x 0 0 0 16236 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/version.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/ + - -rwxr-xr-x 0 0 0 12806 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/__init__.py + - -rwxr-xr-x 0 0 0 1164 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/__main__.py + - -rwxr-xr-x 0 0 0 4068 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/android.py + - -rwxr-xr-x 0 0 0 4910 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/api.py + - -rwxr-xr-x 0 0 0 2655 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/macos.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/py.typed + - -rwxr-xr-x 0 0 0 6911 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/unix.py + - -rwxr-xr-x 0 0 0 160 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/version.py + - -rwxr-xr-x 0 0 0 6596 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/platformdirs/windows.py + - -rwxr-xr-x 0 0 0 8425 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/_vendor/zipp.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/extern/ + - -rwxr-xr-x 0 0 0 3123 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/pkg_resources/extern/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/ + - -rwxr-xr-x 0 0 0 4 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/INSTALLER + - -rwxr-xr-x 0 0 0 1023 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/LICENSE + - -rwxr-xr-x 0 0 0 5817 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/METADATA + - -rwxr-xr-x 0 0 0 43922 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/RECORD + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/REQUESTED + - -rwxr-xr-x 0 0 0 91 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/WHEEL + - -rwxr-xr-x 0 0 0 250 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/direct_url.json + - -rwxr-xr-x 0 0 0 2733 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/entry_points.txt + - -rwxr-xr-x 0 0 0 41 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools-70.3.0.dist-info/top_level.txt + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/ + - -rwxr-xr-x 0 0 0 8950 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/__init__.py + - -rwxr-xr-x 0 0 0 9826 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_core_metadata.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/ + - -rwxr-xr-x 0 0 0 359 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/__init__.py + - -rwxr-xr-x 0 0 0 5440 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_collections.py + - -rwxr-xr-x 0 0 0 1771 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_functools.py + - -rwxr-xr-x 0 0 0 1453 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_itertools.py + - -rwxr-xr-x 0 0 0 42 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_log.py + - -rwxr-xr-x 0 0 0 239 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_macos_compat.py + - -rwxr-xr-x 0 0 0 2410 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_modified.py + - -rwxr-xr-x 0 0 0 19641 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_msvccompiler.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/ + - -rwxr-xr-x 0 0 0 496 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/__init__.py + - -rwxr-xr-x 0 0 0 3266 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/_elffile.py + - -rwxr-xr-x 0 0 0 9590 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/_manylinux.py + - -rwxr-xr-x 0 0 0 2676 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/_musllinux.py + - -rwxr-xr-x 0 0 0 10347 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/_parser.py + - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/_structures.py + - -rwxr-xr-x 0 0 0 5292 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/_tokenizer.py + - -rwxr-xr-x 0 0 0 8208 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/markers.py + - -rwxr-xr-x 0 0 0 33036 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/metadata.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/py.typed + - -rwxr-xr-x 0 0 0 2933 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/requirements.py + - -rwxr-xr-x 0 0 0 39784 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/specifiers.py + - -rwxr-xr-x 0 0 0 18950 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/tags.py + - -rwxr-xr-x 0 0 0 5268 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/utils.py + - -rwxr-xr-x 0 0 0 16236 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/_vendor/packaging/version.py + - -rwxr-xr-x 0 0 0 8551 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/archive_util.py + - -rwxr-xr-x 0 0 0 14674 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/bcppcompiler.py + - -rwxr-xr-x 0 0 0 48935 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/ccompiler.py + - -rwxr-xr-x 0 0 0 17877 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/cmd.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/ + - -rwxr-xr-x 0 0 0 416 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/__init__.py + - -rwxr-xr-x 0 0 0 1609 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/_framework_compat.py + - -rwxr-xr-x 0 0 0 5354 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/bdist.py + - -rwxr-xr-x 0 0 0 4582 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/bdist_dumb.py + - -rwxr-xr-x 0 0 0 21686 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/bdist_rpm.py + - -rwxr-xr-x 0 0 0 5729 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build.py + - -rwxr-xr-x 0 0 0 7684 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build_clib.py + - -rwxr-xr-x 0 0 0 31850 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build_ext.py + - -rwxr-xr-x 0 0 0 16552 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build_py.py + - -rwxr-xr-x 0 0 0 5534 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/build_scripts.py + - -rwxr-xr-x 0 0 0 4928 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/check.py + - -rwxr-xr-x 0 0 0 2595 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/clean.py + - -rwxr-xr-x 0 0 0 13008 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/config.py + - -rwxr-xr-x 0 0 0 30079 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install.py + - -rwxr-xr-x 0 0 0 2764 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_data.py + - -rwxr-xr-x 0 0 0 2788 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_egg_info.py + - -rwxr-xr-x 0 0 0 1184 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_headers.py + - -rwxr-xr-x 0 0 0 8410 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_lib.py + - -rwxr-xr-x 0 0 0 1937 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/install_scripts.py + - -rwxr-xr-x 0 0 0 11793 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/register.py + - -rwxr-xr-x 0 0 0 19196 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/sdist.py + - -rwxr-xr-x 0 0 0 7493 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/command/upload.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/compat/ + - -rwxr-xr-x 0 0 0 429 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/compat/__init__.py + - -rwxr-xr-x 0 0 0 790 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/compat/py38.py + - -rwxr-xr-x 0 0 0 1964 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/compat/py39.py + - -rwxr-xr-x 0 0 0 5226 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/config.py + - -rwxr-xr-x 0 0 0 9318 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/core.py + - -rwxr-xr-x 0 0 0 11954 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/cygwinccompiler.py + - -rwxr-xr-x 0 0 0 139 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/debug.py + - -rwxr-xr-x 0 0 0 349 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/dep_util.py + - -rwxr-xr-x 0 0 0 8007 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/dir_util.py + - -rwxr-xr-x 0 0 0 50977 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/dist.py + - -rwxr-xr-x 0 0 0 3589 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/errors.py + - -rwxr-xr-x 0 0 0 10206 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/extension.py + - -rwxr-xr-x 0 0 0 17822 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/fancy_getopt.py + - -rwxr-xr-x 0 0 0 7944 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/file_util.py + - -rwxr-xr-x 0 0 0 13654 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/filelist.py + - -rwxr-xr-x 0 0 0 1200 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/log.py + - -rwxr-xr-x 0 0 0 30129 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/msvc9compiler.py + - -rwxr-xr-x 0 0 0 23451 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/msvccompiler.py + - -rwxr-xr-x 0 0 0 3626 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/spawn.py + - -rwxr-xr-x 0 0 0 18747 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py + - -rwxr-xr-x 0 0 0 12098 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/text_file.py + - -rwxr-xr-x 0 0 0 15698 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/unixccompiler.py + - -rwxr-xr-x 0 0 0 18093 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/util.py + - -rwxr-xr-x 0 0 0 12634 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/version.py + - -rwxr-xr-x 0 0 0 5205 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/versionpredicate.py + - -rwxr-xr-x 0 0 0 6589 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_distutils/zosccompiler.py + - -rwxr-xr-x 0 0 0 2333 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_entry_points.py + - -rwxr-xr-x 0 0 0 2443 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_imp.py + - -rwxr-xr-x 0 0 0 1454 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_importlib.py + - -rwxr-xr-x 0 0 0 675 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_itertools.py + - -rwxr-xr-x 0 0 0 4567 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_normalization.py + - -rwxr-xr-x 0 0 0 1178 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_path.py + - -rwxr-xr-x 0 0 0 1112 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_reqs.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/backports/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/backports/__init__.py + - -rwxr-xr-x 0 0 0 106920 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/backports/tarfile.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/ + - -rwxr-xr-x 0 0 0 26498 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/__init__.py + - -rwxr-xr-x 0 0 0 2454 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py + - -rwxr-xr-x 0 0 0 743 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_collections.py + - -rwxr-xr-x 0 0 0 1859 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_compat.py + - -rwxr-xr-x 0 0 0 2895 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_functools.py + - -rwxr-xr-x 0 0 0 2068 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py + - -rwxr-xr-x 0 0 0 1165 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_meta.py + - -rwxr-xr-x 0 0 0 1098 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_py39compat.py + - -rwxr-xr-x 0 0 0 2166 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/_text.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/py.typed + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/ + - -rwxr-xr-x 0 0 0 506 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/__init__.py + - -rwxr-xr-x 0 0 0 4504 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_adapters.py + - -rwxr-xr-x 0 0 0 5457 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_common.py + - -rwxr-xr-x 0 0 0 2925 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_compat.py + - -rwxr-xr-x 0 0 0 884 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_itertools.py + - -rwxr-xr-x 0 0 0 3481 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/_legacy.py + - -rwxr-xr-x 0 0 0 5140 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/abc.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/py.typed + - -rwxr-xr-x 0 0 0 3581 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/readers.py + - -rwxr-xr-x 0 0 0 2576 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/importlib_resources/simple.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/__init__.py + - -rwxr-xr-x 0 0 0 9570 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/context.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/functools/ + - -rwxr-xr-x 0 0 0 16696 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/functools/__init__.py + - -rwxr-xr-x 0 0 0 3982 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/functools/__init__.pyi + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/functools/py.typed + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/text/ + - -rwxr-xr-x 0 0 0 15517 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/jaraco/text/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/ + - -rwxr-xr-x 0 0 0 82 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/__init__.py + - -rwxr-xr-x 0 0 0 43 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/__init__.pyi + - -rwxr-xr-x 0 0 0 117959 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/more.py + - -rwxr-xr-x 0 0 0 14977 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/more.pyi + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/py.typed + - -rwxr-xr-x 0 0 0 16256 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/recipes.py + - -rwxr-xr-x 0 0 0 3551 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/recipes.pyi + - -rwxr-xr-x 0 0 0 15130 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/ordered_set.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/ + - -rwxr-xr-x 0 0 0 496 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/__init__.py + - -rwxr-xr-x 0 0 0 3266 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_elffile.py + - -rwxr-xr-x 0 0 0 9590 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_manylinux.py + - -rwxr-xr-x 0 0 0 2676 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_musllinux.py + - -rwxr-xr-x 0 0 0 10347 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_parser.py + - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_structures.py + - -rwxr-xr-x 0 0 0 5292 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/_tokenizer.py + - -rwxr-xr-x 0 0 0 8208 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/markers.py + - -rwxr-xr-x 0 0 0 33036 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/metadata.py + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/py.typed + - -rwxr-xr-x 0 0 0 2933 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/requirements.py + - -rwxr-xr-x 0 0 0 39784 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/specifiers.py + - -rwxr-xr-x 0 0 0 18950 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/tags.py + - -rwxr-xr-x 0 0 0 5268 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/utils.py + - -rwxr-xr-x 0 0 0 16236 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/packaging/version.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/ + - -rwxr-xr-x 0 0 0 396 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/__init__.py + - -rwxr-xr-x 0 0 0 22633 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/_parser.py + - -rwxr-xr-x 0 0 0 2943 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/_re.py + - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/_types.py + - -rwxr-xr-x 0 0 0 26 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/tomli/py.typed + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/wheel/ + - -rwxr-xr-x 0 0 0 59 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/wheel/__init__.py + - -rwxr-xr-x 0 0 0 16103 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/wheel/macosx_libfile.py + - -rwxr-xr-x 0 0 0 5876 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/wheel/metadata.py + - -rwxr-xr-x 0 0 0 621 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/wheel/util.py + - -rwxr-xr-x 0 0 0 7696 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/wheel/wheelfile.py + - -rwxr-xr-x 0 0 0 8425 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/_vendor/zipp.py + - -rwxr-xr-x 0 0 0 7331 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/archive_util.py + - -rwxr-xr-x 0 0 0 19085 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/build_meta.py + - -rwxr-xr-x 0 0 0 11776 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/cli-32.exe + - -rwxr-xr-x 0 0 0 14336 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/cli-64.exe + - -rwxr-xr-x 0 0 0 13824 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/cli-arm64.exe + - -rwxr-xr-x 0 0 0 11776 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/cli.exe + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/ + - -rwxr-xr-x 0 0 0 396 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/__init__.py + - -rwxr-xr-x 0 0 0 4245 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/_requirestxt.py + - -rwxr-xr-x 0 0 0 2383 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/alias.py + - -rwxr-xr-x 0 0 0 16525 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/bdist_egg.py + - -rwxr-xr-x 0 0 0 1289 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/bdist_rpm.py + - -rwxr-xr-x 0 0 0 21412 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/bdist_wheel.py + - -rwxr-xr-x 0 0 0 5816 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/build.py + - -rwxr-xr-x 0 0 0 4539 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/build_clib.py + - -rwxr-xr-x 0 0 0 17760 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/build_ext.py + - -rwxr-xr-x 0 0 0 15193 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/build_py.py + - -rwxr-xr-x 0 0 0 6892 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/develop.py + - -rwxr-xr-x 0 0 0 3507 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/dist_info.py + - -rwxr-xr-x 0 0 0 86995 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/easy_install.py + - -rwxr-xr-x 0 0 0 35275 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/editable_wheel.py + - -rwxr-xr-x 0 0 0 26522 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/egg_info.py + - -rwxr-xr-x 0 0 0 5779 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/install.py + - -rwxr-xr-x 0 0 0 2066 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/install_egg_info.py + - -rwxr-xr-x 0 0 0 3965 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/install_lib.py + - -rwxr-xr-x 0 0 0 2474 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/install_scripts.py + - -rwxr-xr-x 0 0 0 628 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/launcher manifest.xml + - -rwxr-xr-x 0 0 0 466 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/register.py + - -rwxr-xr-x 0 0 0 2144 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/rotate.py + - -rwxr-xr-x 0 0 0 657 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/saveopts.py + - -rwxr-xr-x 0 0 0 6808 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/sdist.py + - -rwxr-xr-x 0 0 0 5018 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/setopt.py + - -rwxr-xr-x 0 0 0 8104 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/test.py + - -rwxr-xr-x 0 0 0 460 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/upload.py + - -rwxr-xr-x 0 0 0 7821 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/command/upload_docs.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/compat/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/compat/__init__.py + - -rwxr-xr-x 0 0 0 165 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/compat/py310.py + - -rwxr-xr-x 0 0 0 735 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/compat/py311.py + - -rwxr-xr-x 0 0 0 493 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/compat/py39.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/ + - -rwxr-xr-x 0 0 0 1499 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/__init__.py + - -rwxr-xr-x 0 0 0 14700 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_apply_pyprojecttoml.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/ + - -rwxr-xr-x 0 0 0 1042 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/__init__.py + - -rwxr-xr-x 0 0 0 11862 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/error_reporting.py + - -rwxr-xr-x 0 0 0 1625 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/extra_validations.py + - -rwxr-xr-x 0 0 0 1612 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py + - -rwxr-xr-x 0 0 0 295453 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py + - -rwxr-xr-x 0 0 0 12062 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/_validate_pyproject/formats.py + - -rwxr-xr-x 0 0 0 15527 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/expand.py + - -rwxr-xr-x 0 0 0 17653 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/pyprojecttoml.py + - -rwxr-xr-x 0 0 0 25592 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/config/setupcfg.py + - -rwxr-xr-x 0 0 0 5551 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/depends.py + - -rwxr-xr-x 0 0 0 21124 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/discovery.py + - -rwxr-xr-x 0 0 0 37933 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/dist.py + - -rwxr-xr-x 0 0 0 2669 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/errors.py + - -rwxr-xr-x 0 0 0 5794 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/extension.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/extern/ + - -rwxr-xr-x 0 0 0 2728 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/extern/__init__.py + - -rwxr-xr-x 0 0 0 4852 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/glob.py + - -rwxr-xr-x 0 0 0 11776 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/gui-32.exe + - -rwxr-xr-x 0 0 0 14336 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/gui-64.exe + - -rwxr-xr-x 0 0 0 13824 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/gui-arm64.exe + - -rwxr-xr-x 0 0 0 11776 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/gui.exe + - -rwxr-xr-x 0 0 0 4969 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/installer.py + - -rwxr-xr-x 0 0 0 812 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/launch.py + - -rwxr-xr-x 0 0 0 1239 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/logging.py + - -rwxr-xr-x 0 0 0 190 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/modified.py + - -rwxr-xr-x 0 0 0 4333 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/monkey.py + - -rwxr-xr-x 0 0 0 47532 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/msvc.py + - -rwxr-xr-x 0 0 0 3128 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/namespaces.py + - -rwxr-xr-x 0 0 0 39081 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/package_index.py + - -rwxr-xr-x 0 0 0 14730 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/sandbox.py + - -rwxr-xr-x 0 0 0 218 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/script (dev).tmpl + - -rwxr-xr-x 0 0 0 138 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/script.tmpl + - -rwxr-xr-x 0 0 0 3181 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/unicode_utils.py + - -rwxr-xr-x 0 0 0 161 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/version.py + - -rwxr-xr-x 0 0 0 3699 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/warnings.py + - -rwxr-xr-x 0 0 0 8682 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/wheel.py + - -rwxr-xr-x 0 0 0 720 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site-packages/setuptools/windows_support.py + - -rwxr-xr-x 0 0 0 21844 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/site.py + - -rwxr-xr-x 0 0 0 34823 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/smtpd.py + - -rwxr-xr-x 0 0 0 45407 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/smtplib.py + - -rwxr-xr-x 0 0 0 7099 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/sndhdr.py + - -rwxr-xr-x 0 0 0 36915 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/socket.py + - -rwxr-xr-x 0 0 0 27296 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/socketserver.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/sqlite3/ + - -rwxr-xr-x 0 0 0 2014 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/sqlite3/__init__.py + - -rwxr-xr-x 0 0 0 2687 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/sqlite3/dbapi2.py + - -rwxr-xr-x 0 0 0 2825 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/sqlite3/dump.py + - -rwxr-xr-x 0 0 0 27973 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/sre_compile.py + - -rwxr-xr-x 0 0 0 7177 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/sre_constants.py + - -rwxr-xr-x 0 0 0 40779 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/sre_parse.py + - -rwxr-xr-x 0 0 0 52530 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/ssl.py + - -rwxr-xr-x 0 0 0 5485 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/stat.py + - -rwxr-xr-x 0 0 0 38067 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/statistics.py + - -rwxr-xr-x 0 0 0 10566 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/string.py + - -rwxr-xr-x 0 0 0 12917 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/stringprep.py + - -rwxr-xr-x 0 0 0 257 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/struct.py + - -rwxr-xr-x 0 0 0 83564 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/subprocess.py + - -rwxr-xr-x 0 0 0 18158 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/sunau.py + - -rwxr-xr-x 0 0 0 2281 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/symbol.py + - -rwxr-xr-x 0 0 0 7905 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/symtable.py + - -rwxr-xr-x 0 0 0 24914 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/sysconfig.py + - -rwxr-xr-x 0 0 0 11408 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tabnanny.py + - -rwxr-xr-x 0 0 0 106881 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tarfile.py + - -rwxr-xr-x 0 0 0 23254 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/telnetlib.py + - -rwxr-xr-x 0 0 0 27963 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tempfile.py + - -rwxr-xr-x 0 0 0 19407 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/textwrap.py + - -rwxr-xr-x 0 0 0 1003 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/this.py + - -rwxr-xr-x 0 0 0 54176 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/threading.py + - -rwxr-xr-x 0 0 0 13482 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/timeit.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/ + - -rwxr-xr-x 0 0 0 169626 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/__init__.py + - -rwxr-xr-x 0 0 0 148 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/__main__.py + - -rwxr-xr-x 0 0 0 2660 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/colorchooser.py + - -rwxr-xr-x 0 0 0 1245 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/commondialog.py + - -rwxr-xr-x 0 0 0 1493 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/constants.py + - -rwxr-xr-x 0 0 0 1543 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/dialog.py + - -rwxr-xr-x 0 0 0 11528 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/dnd.py + - -rwxr-xr-x 0 0 0 14947 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/filedialog.py + - -rwxr-xr-x 0 0 0 6821 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/font.py + - -rwxr-xr-x 0 0 0 3861 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/messagebox.py + - -rwxr-xr-x 0 0 0 1816 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/scrolledtext.py + - -rwxr-xr-x 0 0 0 11757 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/simpledialog.py + - -rwxr-xr-x 0 0 0 76845 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/tix.py + - -rwxr-xr-x 0 0 0 57139 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tkinter/ttk.py + - -rwxr-xr-x 0 0 0 2368 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/token.py + - -rwxr-xr-x 0 0 0 25883 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tokenize.py + - -rwxr-xr-x 0 0 0 29208 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/trace.py + - -rwxr-xr-x 0 0 0 24660 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/traceback.py + - -rwxr-xr-x 0 0 0 18047 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tracemalloc.py + - -rwxr-xr-x 0 0 0 879 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/tty.py + - -rwxr-xr-x 0 0 0 143796 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtle.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/ + - -rwxr-xr-x 0 0 0 314 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/__init__.py + - -rwxr-xr-x 0 0 0 15050 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/__main__.py + - -rwxr-xr-x 0 0 0 4248 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/bytedesign.py + - -rwxr-xr-x 0 0 0 951 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/chaos.py + - -rwxr-xr-x 0 0 0 3201 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/clock.py + - -rwxr-xr-x 0 0 0 1339 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/colormixer.py + - -rwxr-xr-x 0 0 0 2966 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/forest.py + - -rwxr-xr-x 0 0 0 3473 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/fractalcurves.py + - -rwxr-xr-x 0 0 0 2434 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/lindenmayer.py + - -rwxr-xr-x 0 0 0 2051 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/minimal_hanoi.py + - -rwxr-xr-x 0 0 0 6513 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/nim.py + - -rwxr-xr-x 0 0 0 1291 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/paint.py + - -rwxr-xr-x 0 0 0 1066 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/peace.py + - -rwxr-xr-x 0 0 0 3380 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/penrose.py + - -rwxr-xr-x 0 0 0 2825 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/planet_and_moon.py + - -rwxr-xr-x 0 0 0 1361 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/rosette.py + - -rwxr-xr-x 0 0 0 1804 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/round_dance.py + - -rwxr-xr-x 0 0 0 5052 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/sorting_animate.py + - -rwxr-xr-x 0 0 0 1401 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/tree.py + - -rwxr-xr-x 0 0 0 160 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/turtle.cfg + - -rwxr-xr-x 0 0 0 1119 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/two_canvases.py + - -rwxr-xr-x 0 0 0 821 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/turtledemo/yinyang.py + - -rwxr-xr-x 0 0 0 9785 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/types.py + - -rwxr-xr-x 0 0 0 77044 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/typing.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/ + - -rwxr-xr-x 0 0 0 3761 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/__init__.py + - -rwxr-xr-x 0 0 0 472 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/__main__.py + - -rwxr-xr-x 0 0 0 2295 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/_log.py + - -rwxr-xr-x 0 0 0 6368 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/async_case.py + - -rwxr-xr-x 0 0 0 57155 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/case.py + - -rwxr-xr-x 0 0 0 22702 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/loader.py + - -rwxr-xr-x 0 0 0 11256 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/main.py + - -rwxr-xr-x 0 0 0 99217 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/mock.py + - -rwxr-xr-x 0 0 0 8364 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/result.py + - -rwxr-xr-x 0 0 0 8051 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/runner.py + - -rwxr-xr-x 0 0 0 2403 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/signals.py + - -rwxr-xr-x 0 0 0 13512 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/suite.py + - -rwxr-xr-x 0 0 0 5215 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/unittest/util.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/urllib/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/urllib/__init__.py + - -rwxr-xr-x 0 0 0 2632 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/urllib/error.py + - -rwxr-xr-x 0 0 0 43064 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/urllib/parse.py + - -rwxr-xr-x 0 0 0 101306 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/urllib/request.py + - -rwxr-xr-x 0 0 0 2361 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/urllib/response.py + - -rwxr-xr-x 0 0 0 9424 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/urllib/robotparser.py + - -rwxr-xr-x 0 0 0 7301 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/uu.py + - -rwxr-xr-x 0 0 0 27324 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/uuid.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/venv/ + - -rwxr-xr-x 0 0 0 23213 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/venv/__init__.py + - -rwxr-xr-x 0 0 0 145 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/venv/__main__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/common/ + - -rwxr-xr-x 0 0 0 8834 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/common/Activate.ps1 + - -rwxr-xr-x 0 0 0 1909 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/common/activate + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/posix/ + - -rwxr-xr-x 0 0 0 858 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/posix/activate.csh + - -rwxr-xr-x 0 0 0 1998 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/venv/scripts/posix/activate.fish + - -rwxr-xr-x 0 0 0 19688 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/warnings.py + - -rwxr-xr-x 0 0 0 18004 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/wave.py + - -rwxr-xr-x 0 0 0 21560 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/weakref.py + - -rwxr-xr-x 0 0 0 24085 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/webbrowser.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/ + - -rwxr-xr-x 0 0 0 587 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/__init__.py + - -rwxr-xr-x 0 0 0 21669 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/handlers.py + - -rwxr-xr-x 0 0 0 6766 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/headers.py + - -rwxr-xr-x 0 0 0 5171 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/simple_server.py + - -rwxr-xr-x 0 0 0 5851 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/util.py + - -rwxr-xr-x 0 0 0 15099 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/wsgiref/validate.py + - -rwxr-xr-x 0 0 0 5913 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xdrlib.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/ + - -rwxr-xr-x 0 0 0 557 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/ + - -rwxr-xr-x 0 0 0 936 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/NodeFilter.py + - -rwxr-xr-x 0 0 0 4019 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/__init__.py + - -rwxr-xr-x 0 0 0 3451 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/domreg.py + - -rwxr-xr-x 0 0 0 35767 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/expatbuilder.py + - -rwxr-xr-x 0 0 0 3367 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/minicompat.py + - -rwxr-xr-x 0 0 0 68066 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/minidom.py + - -rwxr-xr-x 0 0 0 11997 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/pulldom.py + - -rwxr-xr-x 0 0 0 12387 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/dom/xmlbuilder.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/etree/ + - -rwxr-xr-x 0 0 0 6882 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/etree/ElementInclude.py + - -rwxr-xr-x 0 0 0 13063 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/etree/ElementPath.py + - -rwxr-xr-x 0 0 0 74404 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/etree/ElementTree.py + - -rwxr-xr-x 0 0 0 1605 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/etree/__init__.py + - -rwxr-xr-x 0 0 0 82 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/etree/cElementTree.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/parsers/ + - -rwxr-xr-x 0 0 0 167 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/parsers/__init__.py + - -rwxr-xr-x 0 0 0 248 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/parsers/expat.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/ + - -rwxr-xr-x 0 0 0 3642 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/__init__.py + - -rwxr-xr-x 0 0 0 4785 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/_exceptions.py + - -rwxr-xr-x 0 0 0 16211 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/expatreader.py + - -rwxr-xr-x 0 0 0 13922 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/handler.py + - -rwxr-xr-x 0 0 0 12255 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/saxutils.py + - -rwxr-xr-x 0 0 0 12684 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xml/sax/xmlreader.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xmlrpc/ + - -rwxr-xr-x 0 0 0 38 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xmlrpc/__init__.py + - -rwxr-xr-x 0 0 0 49391 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xmlrpc/client.py + - -rwxr-xr-x 0 0 0 36672 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/xmlrpc/server.py + - -rwxr-xr-x 0 0 0 7535 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/zipapp.py + - -rwxr-xr-x 0 0 0 88240 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/zipfile.py + - -rwxr-xr-x 0 0 0 30765 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/zipimport.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/zoneinfo/ + - -rwxr-xr-x 0 0 0 703 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/zoneinfo/__init__.py + - -rwxr-xr-x 0 0 0 5320 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/zoneinfo/_common.py + - -rwxr-xr-x 0 0 0 5081 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/zoneinfo/_tzpath.py + - -rwxr-xr-x 0 0 0 24318 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/zoneinfo/_zoneinfo.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/ + - -rwxr-xr-x 0 0 0 20875 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/auto.tcl + - -rwxr-xr-x 0 0 0 128893 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/clock.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/ + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/ascii.enc + - -rwxr-xr-x 0 0 0 92873 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/big5.enc + - -rwxr-xr-x 0 0 0 97050 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cns11643.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1250.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1251.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1252.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1253.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1254.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1255.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1256.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1257.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp1258.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp437.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp737.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp775.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp850.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp852.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp855.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp857.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp860.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp861.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp862.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp863.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp864.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp865.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp866.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp869.enc + - -rwxr-xr-x 0 0 0 1090 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp874.enc + - -rwxr-xr-x 0 0 0 48207 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp932.enc + - -rwxr-xr-x 0 0 0 132509 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp936.enc + - -rwxr-xr-x 0 0 0 130423 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp949.enc + - -rwxr-xr-x 0 0 0 91831 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/cp950.enc + - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/dingbats.enc + - -rwxr-xr-x 0 0 0 1054 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/ebcdic.enc + - -rwxr-xr-x 0 0 0 85574 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/euc-cn.enc + - -rwxr-xr-x 0 0 0 82537 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/euc-jp.enc + - -rwxr-xr-x 0 0 0 93918 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/euc-kr.enc + - -rwxr-xr-x 0 0 0 86619 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/gb12345.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/gb1988.enc + - -rwxr-xr-x 0 0 0 84532 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/gb2312-raw.enc + - -rwxr-xr-x 0 0 0 85574 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/gb2312.enc + - -rwxr-xr-x 0 0 0 192 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso2022-jp.enc + - -rwxr-xr-x 0 0 0 115 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso2022-kr.enc + - -rwxr-xr-x 0 0 0 226 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso2022.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-1.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-10.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-11.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-13.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-14.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-15.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-16.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-2.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-3.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-4.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-5.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-6.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-7.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-8.enc + - -rwxr-xr-x 0 0 0 1094 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/iso8859-9.enc + - -rwxr-xr-x 0 0 0 1092 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/jis0201.enc + - -rwxr-xr-x 0 0 0 80453 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/jis0208.enc + - -rwxr-xr-x 0 0 0 70974 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/jis0212.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/koi8-r.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/koi8-u.enc + - -rwxr-xr-x 0 0 0 92877 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/ksc5601.enc + - -rwxr-xr-x 0 0 0 1096 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macCentEuro.enc + - -rwxr-xr-x 0 0 0 1096 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macCroatian.enc + - -rwxr-xr-x 0 0 0 1096 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macCyrillic.enc + - -rwxr-xr-x 0 0 0 1096 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macDingbats.enc + - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macGreek.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macIceland.enc + - -rwxr-xr-x 0 0 0 48028 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macJapan.enc + - -rwxr-xr-x 0 0 0 1093 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macRoman.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macRomania.enc + - -rwxr-xr-x 0 0 0 1092 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macThai.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macTurkish.enc + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/macUkraine.enc + - -rwxr-xr-x 0 0 0 41862 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/shiftjis.enc + - -rwxr-xr-x 0 0 0 1091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/symbol.enc + - -rwxr-xr-x 0 0 0 1092 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/encoding/tis-620.enc + - -rwxr-xr-x 0 0 0 7900 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/history.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/http1.0/ + - -rwxr-xr-x 0 0 0 9689 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/http1.0/http.tcl + - -rwxr-xr-x 0 0 0 735 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/http1.0/pkgIndex.tcl + - -rwxr-xr-x 0 0 0 24806 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/init.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ + - -rwxr-xr-x 0 0 0 989 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/af.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/af_za.msg + - -rwxr-xr-x 0 0 0 1964 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ar.msg + - -rwxr-xr-x 0 0 0 259 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ar_in.msg + - -rwxr-xr-x 0 0 0 1812 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ar_jo.msg + - -rwxr-xr-x 0 0 0 1812 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ar_lb.msg + - -rwxr-xr-x 0 0 0 1812 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ar_sy.msg + - -rwxr-xr-x 0 0 0 2105 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/be.msg + - -rwxr-xr-x 0 0 0 1819 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/bg.msg + - -rwxr-xr-x 0 0 0 2286 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/bn.msg + - -rwxr-xr-x 0 0 0 259 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/bn_in.msg + - -rwxr-xr-x 0 0 0 1102 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ca.msg + - -rwxr-xr-x 0 0 0 1300 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/cs.msg + - -rwxr-xr-x 0 0 0 1156 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/da.msg + - -rwxr-xr-x 0 0 0 1222 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/de.msg + - -rwxr-xr-x 0 0 0 812 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/de_at.msg + - -rwxr-xr-x 0 0 0 1223 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/de_be.msg + - -rwxr-xr-x 0 0 0 2252 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/el.msg + - -rwxr-xr-x 0 0 0 300 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_au.msg + - -rwxr-xr-x 0 0 0 305 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_be.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_bw.msg + - -rwxr-xr-x 0 0 0 288 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_ca.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_gb.msg + - -rwxr-xr-x 0 0 0 321 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_hk.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_ie.msg + - -rwxr-xr-x 0 0 0 310 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_in.msg + - -rwxr-xr-x 0 0 0 300 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_nz.msg + - -rwxr-xr-x 0 0 0 321 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_ph.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_sg.msg + - -rwxr-xr-x 0 0 0 245 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_za.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/en_zw.msg + - -rwxr-xr-x 0 0 0 1231 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/eo.msg + - -rwxr-xr-x 0 0 0 1180 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es.msg + - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_ar.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_bo.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_cl.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_co.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_cr.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_do.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_ec.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_gt.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_hn.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_mx.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_ni.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_pa.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_pe.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_pr.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_py.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_sv.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_uy.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/es_ve.msg + - -rwxr-xr-x 0 0 0 1206 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/et.msg + - -rwxr-xr-x 0 0 0 985 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/eu.msg + - -rwxr-xr-x 0 0 0 287 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/eu_es.msg + - -rwxr-xr-x 0 0 0 1664 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fa.msg + - -rwxr-xr-x 0 0 0 1957 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fa_in.msg + - -rwxr-xr-x 0 0 0 417 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fa_ir.msg + - -rwxr-xr-x 0 0 0 1145 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fi.msg + - -rwxr-xr-x 0 0 0 986 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fo.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fo_fo.msg + - -rwxr-xr-x 0 0 0 1205 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fr.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fr_be.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fr_ca.msg + - -rwxr-xr-x 0 0 0 281 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/fr_ch.msg + - -rwxr-xr-x 0 0 0 1141 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ga.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ga_ie.msg + - -rwxr-xr-x 0 0 0 950 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/gl.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/gl_es.msg + - -rwxr-xr-x 0 0 0 1037 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/gv.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/gv_gb.msg + - -rwxr-xr-x 0 0 0 1938 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/he.msg + - -rwxr-xr-x 0 0 0 1738 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/hi.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/hi_in.msg + - -rwxr-xr-x 0 0 0 1121 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/hr.msg + - -rwxr-xr-x 0 0 0 1327 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/hu.msg + - -rwxr-xr-x 0 0 0 914 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/id.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/id_id.msg + - -rwxr-xr-x 0 0 0 1255 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/is.msg + - -rwxr-xr-x 0 0 0 1240 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/it.msg + - -rwxr-xr-x 0 0 0 244 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/it_ch.msg + - -rwxr-xr-x 0 0 0 1645 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ja.msg + - -rwxr-xr-x 0 0 0 978 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/kl.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/kl_gl.msg + - -rwxr-xr-x 0 0 0 1566 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ko.msg + - -rwxr-xr-x 0 0 0 346 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ko_kr.msg + - -rwxr-xr-x 0 0 0 1958 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/kok.msg + - -rwxr-xr-x 0 0 0 254 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/kok_in.msg + - -rwxr-xr-x 0 0 0 966 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/kw.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/kw_gb.msg + - -rwxr-xr-x 0 0 0 1255 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/lt.msg + - -rwxr-xr-x 0 0 0 1219 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/lv.msg + - -rwxr-xr-x 0 0 0 2105 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/mk.msg + - -rwxr-xr-x 0 0 0 1807 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/mr.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/mr_in.msg + - -rwxr-xr-x 0 0 0 910 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ms.msg + - -rwxr-xr-x 0 0 0 259 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ms_my.msg + - -rwxr-xr-x 0 0 0 690 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/mt.msg + - -rwxr-xr-x 0 0 0 1157 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/nb.msg + - -rwxr-xr-x 0 0 0 1079 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/nl.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/nl_be.msg + - -rwxr-xr-x 0 0 0 1148 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/nn.msg + - -rwxr-xr-x 0 0 0 1211 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/pl.msg + - -rwxr-xr-x 0 0 0 1127 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/pt.msg + - -rwxr-xr-x 0 0 0 279 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/pt_br.msg + - -rwxr-xr-x 0 0 0 1172 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ro.msg + - -rwxr-xr-x 0 0 0 2039 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ru.msg + - -rwxr-xr-x 0 0 0 242 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ru_ua.msg + - -rwxr-xr-x 0 0 0 1160 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sh.msg + - -rwxr-xr-x 0 0 0 1203 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sk.msg + - -rwxr-xr-x 0 0 0 1164 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sl.msg + - -rwxr-xr-x 0 0 0 1267 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sq.msg + - -rwxr-xr-x 0 0 0 2035 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sr.msg + - -rwxr-xr-x 0 0 0 1167 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sv.msg + - -rwxr-xr-x 0 0 0 991 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/sw.msg + - -rwxr-xr-x 0 0 0 1835 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ta.msg + - -rwxr-xr-x 0 0 0 251 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/ta_in.msg + - -rwxr-xr-x 0 0 0 2102 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/te.msg + - -rwxr-xr-x 0 0 0 411 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/te_in.msg + - -rwxr-xr-x 0 0 0 2305 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/th.msg + - -rwxr-xr-x 0 0 0 1133 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/tr.msg + - -rwxr-xr-x 0 0 0 2113 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/uk.msg + - -rwxr-xr-x 0 0 0 1421 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/vi.msg + - -rwxr-xr-x 0 0 0 3330 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/zh.msg + - -rwxr-xr-x 0 0 0 312 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/zh_cn.msg + - -rwxr-xr-x 0 0 0 752 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/zh_hk.msg + - -rwxr-xr-x 0 0 0 339 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/zh_sg.msg + - -rwxr-xr-x 0 0 0 346 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/msgs/zh_tw.msg + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/opt0.4/ + - -rwxr-xr-x 0 0 0 32705 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/opt0.4/optparse.tcl + - -rwxr-xr-x 0 0 0 608 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/opt0.4/pkgIndex.tcl + - -rwxr-xr-x 0 0 0 23244 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/package.tcl + - -rwxr-xr-x 0 0 0 816 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/parray.tcl + - -rwxr-xr-x 0 0 0 40934 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/safe.tcl + - -rwxr-xr-x 0 0 0 4511 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/tclAppInit.c + - -rwxr-xr-x 0 0 0 5539 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/tclIndex + - -rwxr-xr-x 0 0 0 11824 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/tm.tcl + - -rwxr-xr-x 0 0 0 4876 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8.6/word.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8/8.4/ + - -rwxr-xr-x 0 0 0 10984 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8/8.4/platform-1.0.18.tm + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8/8.4/platform/ + - -rwxr-xr-x 0 0 0 5977 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8/8.4/platform/shell-1.1.4.tm + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8/8.5/ + - -rwxr-xr-x 0 0 0 33926 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8/8.5/msgcat-1.6.1.tm + - -rwxr-xr-x 0 0 0 103526 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8/8.5/tcltest-2.5.3.tm + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8/8.6/ + - -rwxr-xr-x 0 0 0 111709 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tcl8/8.6/http-2.9.5.tm + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/thread2.8.7/ + - -rwxr-xr-x 0 0 0 29530 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/thread2.8.7/ttrace.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ + - -rwxr-xr-x 0 0 0 8534 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/bgerror.tcl + - -rwxr-xr-x 0 0 0 20830 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/button.tcl + - -rwxr-xr-x 0 0 0 9652 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/choosedir.tcl + - -rwxr-xr-x 0 0 0 21417 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/clrpick.tcl + - -rwxr-xr-x 0 0 0 8368 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/comdlg.tcl + - -rwxr-xr-x 0 0 0 32792 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/console.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ + - -rwxr-xr-x 0 0 0 2082 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/README + - -rwxr-xr-x 0 0 0 6670 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/anilabel.tcl + - -rwxr-xr-x 0 0 0 3494 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/aniwave.tcl + - -rwxr-xr-x 0 0 0 8110 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/arrow.tcl + - -rwxr-xr-x 0 0 0 3078 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/bind.tcl + - -rwxr-xr-x 0 0 0 1411 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/bitmap.tcl + - -rwxr-xr-x 0 0 0 1758 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/browse + - -rwxr-xr-x 0 0 0 1504 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/button.tcl + - -rwxr-xr-x 0 0 0 2278 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/check.tcl + - -rwxr-xr-x 0 0 0 1431 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/clrpick.tcl + - -rwxr-xr-x 0 0 0 5002 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/colors.tcl + - -rwxr-xr-x 0 0 0 1963 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/combo.tcl + - -rwxr-xr-x 0 0 0 5036 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/cscroll.tcl + - -rwxr-xr-x 0 0 0 6205 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ctext.tcl + - -rwxr-xr-x 0 0 0 974 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/dialog1.tcl + - -rwxr-xr-x 0 0 0 828 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/dialog2.tcl + - -rwxr-xr-x 0 0 0 3867 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/en.msg + - -rwxr-xr-x 0 0 0 1401 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/entry1.tcl + - -rwxr-xr-x 0 0 0 2091 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/entry2.tcl + - -rwxr-xr-x 0 0 0 6102 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/entry3.tcl + - -rwxr-xr-x 0 0 0 2351 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/filebox.tcl + - -rwxr-xr-x 0 0 0 79803 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/floor.tcl + - -rwxr-xr-x 0 0 0 1710 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/fontchoose.tcl + - -rwxr-xr-x 0 0 0 1046 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/form.tcl + - -rwxr-xr-x 0 0 0 56598 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/goldberg.tcl + - -rwxr-xr-x 0 0 0 512 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/hello + - -rwxr-xr-x 0 0 0 1497 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/hscale.tcl + - -rwxr-xr-x 0 0 0 2063 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/icon.tcl + - -rwxr-xr-x 0 0 0 1002 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/image1.tcl + - -rwxr-xr-x 0 0 0 3359 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/image2.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/ + - -rwxr-xr-x 0 0 0 51712 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/earth.gif + - -rwxr-xr-x 0 0 0 8157 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/earthmenu.png + - -rwxr-xr-x 0 0 0 6343 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/earthris.gif + - -rwxr-xr-x 0 0 0 1886 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/flagdown.xbm + - -rwxr-xr-x 0 0 0 1880 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/flagup.xbm + - -rwxr-xr-x 0 0 0 275 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/gray25.xbm + - -rwxr-xr-x 0 0 0 1883 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/letters.xbm + - -rwxr-xr-x 0 0 0 1889 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/noletter.xbm + - -rwxr-xr-x 0 0 0 54257 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/ouster.png + - -rwxr-xr-x 0 0 0 272 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/pattern.xbm + - -rwxr-xr-x 0 0 0 2341 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/tcllogo.gif + - -rwxr-xr-x 0 0 0 196623 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/images/teapot.ppm + - -rwxr-xr-x 0 0 0 10490 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/items.tcl + - -rwxr-xr-x 0 0 0 8075 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ixset + - -rwxr-xr-x 0 0 0 9123 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/knightstour.tcl + - -rwxr-xr-x 0 0 0 1379 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/label.tcl + - -rwxr-xr-x 0 0 0 1847 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/labelframe.tcl + - -rwxr-xr-x 0 0 0 2267 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/license.terms + - -rwxr-xr-x 0 0 0 4357 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/mclist.tcl + - -rwxr-xr-x 0 0 0 7479 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/menu.tcl + - -rwxr-xr-x 0 0 0 4476 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/menubu.tcl + - -rwxr-xr-x 0 0 0 1998 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/msgbox.tcl + - -rwxr-xr-x 0 0 0 6750 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/nl.msg + - -rwxr-xr-x 0 0 0 1130 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/paned1.tcl + - -rwxr-xr-x 0 0 0 2244 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/paned2.tcl + - -rwxr-xr-x 0 0 0 7623 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/pendulum.tcl + - -rwxr-xr-x 0 0 0 2757 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/plot.tcl + - -rwxr-xr-x 0 0 0 2602 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/puzzle.tcl + - -rwxr-xr-x 0 0 0 2752 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/radio.tcl + - -rwxr-xr-x 0 0 0 5319 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/rmt + - -rwxr-xr-x 0 0 0 8300 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/rolodex + - -rwxr-xr-x 0 0 0 5333 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ruler.tcl + - -rwxr-xr-x 0 0 0 2273 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/sayings.tcl + - -rwxr-xr-x 0 0 0 4403 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/search.tcl + - -rwxr-xr-x 0 0 0 1820 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/spin.tcl + - -rwxr-xr-x 0 0 0 2048 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/states.tcl + - -rwxr-xr-x 0 0 0 6943 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/style.tcl + - -rwxr-xr-x 0 0 0 5298 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/tclIndex + - -rwxr-xr-x 0 0 0 11253 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/tcolor + - -rwxr-xr-x 0 0 0 4291 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/text.tcl + - -rwxr-xr-x 0 0 0 2188 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/textpeer.tcl + - -rwxr-xr-x 0 0 0 1095 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/timer + - -rwxr-xr-x 0 0 0 3272 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/toolbar.tcl + - -rwxr-xr-x 0 0 0 3178 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/tree.tcl + - -rwxr-xr-x 0 0 0 3405 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ttkbut.tcl + - -rwxr-xr-x 0 0 0 2391 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ttkmenu.tcl + - -rwxr-xr-x 0 0 0 2317 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ttknote.tcl + - -rwxr-xr-x 0 0 0 4177 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ttkpane.tcl + - -rwxr-xr-x 0 0 0 1536 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ttkprogress.tcl + - -rwxr-xr-x 0 0 0 1420 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/ttkscale.tcl + - -rwxr-xr-x 0 0 0 11654 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/twind.tcl + - -rwxr-xr-x 0 0 0 4706 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/unicodeout.tcl + - -rwxr-xr-x 0 0 0 1477 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/vscale.tcl + - -rwxr-xr-x 0 0 0 24063 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/demos/widget + - -rwxr-xr-x 0 0 0 5813 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/dialog.tcl + - -rwxr-xr-x 0 0 0 17715 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/entry.tcl + - -rwxr-xr-x 0 0 0 4857 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/focus.tcl + - -rwxr-xr-x 0 0 0 16011 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/fontchooser.tcl + - -rwxr-xr-x 0 0 0 16704 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/iconlist.tcl + - -rwxr-xr-x 0 0 0 10884 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/icons.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/ + - -rwxr-xr-x 0 0 0 322 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/README + - -rwxr-xr-x 0 0 0 32900 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/logo.eps + - -rwxr-xr-x 0 0 0 2341 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/logo100.gif + - -rwxr-xr-x 0 0 0 1670 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/logo64.gif + - -rwxr-xr-x 0 0 0 11000 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/logoLarge.gif + - -rwxr-xr-x 0 0 0 3889 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/logoMed.gif + - -rwxr-xr-x 0 0 0 27809 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo.eps + - -rwxr-xr-x 0 0 0 1615 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo100.gif + - -rwxr-xr-x 0 0 0 2489 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo150.gif + - -rwxr-xr-x 0 0 0 2981 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo175.gif + - -rwxr-xr-x 0 0 0 3491 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo200.gif + - -rwxr-xr-x 0 0 0 1171 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/pwrdLogo75.gif + - -rwxr-xr-x 0 0 0 5473 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/images/tai-ku.gif + - -rwxr-xr-x 0 0 0 14695 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/listbox.tcl + - -rwxr-xr-x 0 0 0 9565 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/megawidget.tcl + - -rwxr-xr-x 0 0 0 38122 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/menu.tcl + - -rwxr-xr-x 0 0 0 29352 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/mkpsenc.tcl + - -rwxr-xr-x 0 0 0 16359 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgbox.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/ + - -rwxr-xr-x 0 0 0 4158 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/cs.msg + - -rwxr-xr-x 0 0 0 3909 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/da.msg + - -rwxr-xr-x 0 0 0 4823 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/de.msg + - -rwxr-xr-x 0 0 0 8698 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/el.msg + - -rwxr-xr-x 0 0 0 3286 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/en.msg + - -rwxr-xr-x 0 0 0 63 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/en_gb.msg + - -rwxr-xr-x 0 0 0 3916 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/eo.msg + - -rwxr-xr-x 0 0 0 3948 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/es.msg + - -rwxr-xr-x 0 0 0 3805 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/fr.msg + - -rwxr-xr-x 0 0 0 4600 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/hu.msg + - -rwxr-xr-x 0 0 0 3692 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/it.msg + - -rwxr-xr-x 0 0 0 4466 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/nl.msg + - -rwxr-xr-x 0 0 0 4841 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/pl.msg + - -rwxr-xr-x 0 0 0 3913 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/pt.msg + - -rwxr-xr-x 0 0 0 7214 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/ru.msg + - -rwxr-xr-x 0 0 0 3832 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/msgs/sv.msg + - -rwxr-xr-x 0 0 0 5594 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/obsolete.tcl + - -rwxr-xr-x 0 0 0 1586 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/optMenu.tcl + - -rwxr-xr-x 0 0 0 8174 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/palette.tcl + - -rwxr-xr-x 0 0 0 5176 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/panedwindow.tcl + - -rwxr-xr-x 0 0 0 7370 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/safetk.tcl + - -rwxr-xr-x 0 0 0 7766 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/scale.tcl + - -rwxr-xr-x 0 0 0 12732 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/scrlbar.tcl + - -rwxr-xr-x 0 0 0 15933 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/spinbox.tcl + - -rwxr-xr-x 0 0 0 20270 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/tclIndex + - -rwxr-xr-x 0 0 0 5125 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/tearoff.tcl + - -rwxr-xr-x 0 0 0 33724 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/text.tcl + - -rwxr-xr-x 0 0 0 23554 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/tk.tcl + - -rwxr-xr-x 0 0 0 4615 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/tkAppInit.c + - -rwxr-xr-x 0 0 0 38373 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/tkfbox.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/ + - -rwxr-xr-x 0 0 0 3604 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/altTheme.tcl + - -rwxr-xr-x 0 0 0 3719 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/aquaTheme.tcl + - -rwxr-xr-x 0 0 0 2931 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/button.tcl + - -rwxr-xr-x 0 0 0 4662 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/clamTheme.tcl + - -rwxr-xr-x 0 0 0 3749 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/classicTheme.tcl + - -rwxr-xr-x 0 0 0 12270 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/combobox.tcl + - -rwxr-xr-x 0 0 0 4619 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/cursors.tcl + - -rwxr-xr-x 0 0 0 4410 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/defaults.tcl + - -rwxr-xr-x 0 0 0 16985 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/entry.tcl + - -rwxr-xr-x 0 0 0 5575 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/fonts.tcl + - -rwxr-xr-x 0 0 0 6400 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/menubutton.tcl + - -rwxr-xr-x 0 0 0 5626 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/notebook.tcl + - -rwxr-xr-x 0 0 0 2199 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/panedwindow.tcl + - -rwxr-xr-x 0 0 0 1089 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/progress.tcl + - -rwxr-xr-x 0 0 0 2693 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/scale.tcl + - -rwxr-xr-x 0 0 0 3159 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/scrollbar.tcl + - -rwxr-xr-x 0 0 0 2401 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/sizegrip.tcl + - -rwxr-xr-x 0 0 0 4811 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/spinbox.tcl + - -rwxr-xr-x 0 0 0 9797 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/treeview.tcl + - -rwxr-xr-x 0 0 0 4817 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/ttk.tcl + - -rwxr-xr-x 0 0 0 8287 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/utils.tcl + - -rwxr-xr-x 0 0 0 9481 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/vistaTheme.tcl + - -rwxr-xr-x 0 0 0 2781 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/winTheme.tcl + - -rwxr-xr-x 0 0 0 2036 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/ttk/xpTheme.tcl + - -rwxr-xr-x 0 0 0 10252 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/unsupported.tcl + - -rwxr-xr-x 0 0 0 26075 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/lib/tk8.6/xmfbox.tcl + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/share/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/share/man/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/share/man/man1/ + - -rwxr-xr-x 0 0 0 18711 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/share/man/man1/python3.1 + - -rwxr-xr-x 0 0 0 18711 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/share/man/man1/python3.9.1 --- layer: 1 files: - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/ - - -rwxr-xr-x 0 0 0 149 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/__init__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama-0.4.6.dist-info/ - - -rwxr-xr-x 0 0 0 42 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama-0.4.6.dist-info/INSTALLER - - -rwxr-xr-x 0 0 0 17158 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama-0.4.6.dist-info/METADATA - - -rwxr-xr-x 0 0 0 105 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama-0.4.6.dist-info/WHEEL - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama-0.4.6.dist-info/licenses/ - - -rwxr-xr-x 0 0 0 1491 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama-0.4.6.dist-info/licenses/LICENSE.txt - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/ - - -rwxr-xr-x 0 0 0 266 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/__init__.py - - -rwxr-xr-x 0 0 0 2522 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/ansi.py - - -rwxr-xr-x 0 0 0 11128 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/ansitowin32.py - - -rwxr-xr-x 0 0 0 3325 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/initialise.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/tests/ - - -rwxr-xr-x 0 0 0 75 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/tests/__init__.py - - -rwxr-xr-x 0 0 0 2839 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/tests/ansi_test.py - - -rwxr-xr-x 0 0 0 10678 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/tests/ansitowin32_test.py - - -rwxr-xr-x 0 0 0 6741 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/tests/initialise_test.py - - -rwxr-xr-x 0 0 0 1866 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/tests/isatty_test.py - - -rwxr-xr-x 0 0 0 1079 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/tests/utils.py - - -rwxr-xr-x 0 0 0 3709 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/tests/winterm_test.py - - -rwxr-xr-x 0 0 0 6181 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/win32.py - - -rwxr-xr-x 0 0 0 7134 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/winterm.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/ + - -rwxr-xr-x 0 0 0 149 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/__init__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama-0.4.6.dist-info/ + - -rwxr-xr-x 0 0 0 42 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama-0.4.6.dist-info/INSTALLER + - -rwxr-xr-x 0 0 0 17158 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama-0.4.6.dist-info/METADATA + - -rwxr-xr-x 0 0 0 105 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama-0.4.6.dist-info/WHEEL + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama-0.4.6.dist-info/licenses/ + - -rwxr-xr-x 0 0 0 1491 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama-0.4.6.dist-info/licenses/LICENSE.txt + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/ + - -rwxr-xr-x 0 0 0 266 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/__init__.py + - -rwxr-xr-x 0 0 0 2522 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/ansi.py + - -rwxr-xr-x 0 0 0 11128 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/ansitowin32.py + - -rwxr-xr-x 0 0 0 3325 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/initialise.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/tests/ + - -rwxr-xr-x 0 0 0 75 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/tests/__init__.py + - -rwxr-xr-x 0 0 0 2839 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/tests/ansi_test.py + - -rwxr-xr-x 0 0 0 10678 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/tests/ansitowin32_test.py + - -rwxr-xr-x 0 0 0 6741 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/tests/initialise_test.py + - -rwxr-xr-x 0 0 0 1866 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/tests/isatty_test.py + - -rwxr-xr-x 0 0 0 1079 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/tests/utils.py + - -rwxr-xr-x 0 0 0 3709 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/tests/winterm_test.py + - -rwxr-xr-x 0 0 0 6181 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/win32.py + - -rwxr-xr-x 0 0 0 7134 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/winterm.py --- layer: 2 files: @@ -2471,26 +2474,26 @@ files: - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/ - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/ - -rwxr-xr-x 0 0 0 204 Jan 1 2023 ./py/tests/py_image_layer/__main__.py - - -rwxr-xr-x 0 0 0 2895 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin + - -rwxr-xr-x 0 0 0 2841 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/aspect_rules_py/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/aspect_rules_py/py/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/internal-deps/ - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/internal-deps/adder/ - - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/internal-deps/adder/__init__.py - - -rwxr-xr-x 0 0 0 32 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/internal-deps/adder/add.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_image_layer/ - - -rwxr-xr-x 0 0 0 204 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_image_layer/__main__.py - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_image_layer/branding/ - - -rwxr-xr-x 0 0 0 42 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_image_layer/branding/__init__.py - - -rwxr-xr-x 0 0 0 2895 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_image_layer/my_app_bin - - -rwxr-xr-x 0 0 0 183 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_image_layer/my_app_bin.venv.pth - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tools/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/_main/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/_main/py/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/_main/py/tests/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/_main/py/tests/internal-deps/ + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/_main/py/tests/internal-deps/adder/ + - -rwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/_main/py/tests/internal-deps/adder/__init__.py + - -rwxr-xr-x 0 0 0 32 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/_main/py/tests/internal-deps/adder/add.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/_main/py/tests/py_image_layer/ + - -rwxr-xr-x 0 0 0 204 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/_main/py/tests/py_image_layer/__main__.py + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/_main/py/tests/py_image_layer/branding/ + - -rwxr-xr-x 0 0 0 42 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/_main/py/tests/py_image_layer/branding/__init__.py + - -rwxr-xr-x 0 0 0 2841 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/_main/py/tests/py_image_layer/my_app_bin + - -rwxr-xr-x 0 0 0 174 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/_main/py/tests/py_image_layer/my_app_bin.venv.pth + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/_main/py/tools/ - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/bazel_tools/ - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/bazel_tools/tools/ - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/bazel_tools/tools/bash/ - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/bazel_tools/tools/bash/runfiles/ - -rwxr-xr-x 0 0 0 21622 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/bazel_tools/tools/bash/runfiles/runfiles.bash - - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/ - - -rwxr-xr-x 0 0 0 183 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.venv.pth + - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/ + - -rwxr-xr-x 0 0 0 174 Jan 1 2023 ./py/tests/py_image_layer/my_app_bin.venv.pth diff --git a/py/tests/py_image_layer/py_image_test.yaml b/py/tests/py_image_layer/py_image_test.yaml index 75e0e068..9b35fd24 100644 --- a/py/tests/py_image_layer/py_image_test.yaml +++ b/py/tests/py_image_layer/py_image_test.yaml @@ -3,8 +3,10 @@ schemaVersion: 2.0.0 fileExistenceTests: - name: __main__ is present path: /py/tests/py_image_layer/__main__.py + - name: runfiles dependencies are present - path: /py/tests/py_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/__init__.py + path: /py/tests/py_image_layer/my_app_bin.runfiles/rules_python~~pip~pypi_39_colorama/site-packages/colorama/__init__.py + commandTests: - name: can run binary exitCode: 0 diff --git a/py/tests/py_venv_image_layer/__main__.py b/py/tests/py_venv_image_layer/__main__.py index 6174b8e2..f0d1fe9a 100644 --- a/py/tests/py_venv_image_layer/__main__.py +++ b/py/tests/py_venv_image_layer/__main__.py @@ -1,13 +1,18 @@ import sys import site +import colorama from colorama import Fore, Style +import branding from branding import get_branding + from adder.add import add if __name__ == "__main__": print(sys.executable) print(sys.prefix) print(sys.version) + print(colorama.__file__) + print(branding.__file__) print(f"{Fore.GREEN}Hello {get_branding()} - {add(3, .14)}{Style.RESET_ALL}") diff --git a/py/tests/py_venv_image_layer/my_app_amd64_layers_listing.yaml b/py/tests/py_venv_image_layer/my_app_amd64_layers_listing.yaml index f5110e1d..bc644e46 100644 --- a/py/tests/py_venv_image_layer/my_app_amd64_layers_listing.yaml +++ b/py/tests/py_venv_image_layer/my_app_amd64_layers_listing.yaml @@ -2520,7 +2520,7 @@ files: - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/ - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/ - -rwxr-xr-x 0 0 0 348 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/pyvenv.cfg - - -rwxr-xr-x 0 0 0 299 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/__main__.py + - -rwxr-xr-x 0 0 0 390 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/__main__.py - -rwxr-xr-x 0 0 0 1245 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/my_app_bin - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/bazel_tools/ - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/bazel_tools/tools/ diff --git a/py/tests/py_venv_image_layer/my_app_arm64_layers_listing.yaml b/py/tests/py_venv_image_layer/my_app_arm64_layers_listing.yaml index 5cd7fea9..018104cc 100644 --- a/py/tests/py_venv_image_layer/my_app_arm64_layers_listing.yaml +++ b/py/tests/py_venv_image_layer/my_app_arm64_layers_listing.yaml @@ -2501,7 +2501,7 @@ files: - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/ - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/ - -rwxr-xr-x 0 0 0 349 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/pyvenv.cfg - - -rwxr-xr-x 0 0 0 299 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/__main__.py + - -rwxr-xr-x 0 0 0 390 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/__main__.py - -rwxr-xr-x 0 0 0 1245 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/my_app_bin - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/bazel_tools/ - drwxr-xr-x 0 0 0 0 Jan 1 2023 ./py/tests/py_venv_image_layer/my_app_bin.runfiles/bazel_tools/tools/ diff --git a/py/tests/py_venv_image_layer/py_amd64_image_content_test.yaml b/py/tests/py_venv_image_layer/py_amd64_image_content_test.yaml index 642d4fbc..b4b2ff72 100644 --- a/py/tests/py_venv_image_layer/py_amd64_image_content_test.yaml +++ b/py/tests/py_venv_image_layer/py_amd64_image_content_test.yaml @@ -2,10 +2,10 @@ schemaVersion: 2.0.0 fileExistenceTests: - name: __main__ is present - path: /py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/__main__.py + path: /py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/__main__.py - name: runfiles dependencies are present - path: /py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/__init__.py + path: /py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/__init__.py - name: Interpreter executable is present - path: /py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_x86_64-unknown-linux-gnu/bin/python3.9 + path: /py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/bin/python3 diff --git a/py/tests/py_venv_image_layer/py_arm64_image_content_test.yaml b/py/tests/py_venv_image_layer/py_arm64_image_content_test.yaml index a8b72137..b4b2ff72 100644 --- a/py/tests/py_venv_image_layer/py_arm64_image_content_test.yaml +++ b/py/tests/py_venv_image_layer/py_arm64_image_content_test.yaml @@ -2,10 +2,10 @@ schemaVersion: 2.0.0 fileExistenceTests: - name: __main__ is present - path: /py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/__main__.py + path: /py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/__main__.py - name: runfiles dependencies are present - path: /py/tests/py_venv_image_layer/my_app_bin.runfiles/pypi_colorama/site-packages/colorama/__init__.py + path: /py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/lib/python3.9/site-packages/colorama/__init__.py - name: Interpreter executable is present - path: /py/tests/py_venv_image_layer/my_app_bin.runfiles/python_toolchain_aarch64-unknown-linux-gnu/bin/python3.9 + path: /py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/bin/python3 diff --git a/py/tests/py_venv_image_layer/py_image_command_test.yaml b/py/tests/py_venv_image_layer/py_image_command_test.yaml index bb08c849..fb70328f 100644 --- a/py/tests/py_venv_image_layer/py_image_command_test.yaml +++ b/py/tests/py_venv_image_layer/py_image_command_test.yaml @@ -8,8 +8,8 @@ commandTests: # The test output - "Hello rules_py - 3.14" # The sys.prefix in the venv - - "/py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin" + - "/py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin" # The sys.executable in the venv - - "/py/tests/py_venv_image_layer/my_app_bin.runfiles/aspect_rules_py/py/tests/py_venv_image_layer/.my_app_bin/bin/python" + - "/py/tests/py_venv_image_layer/my_app_bin.runfiles/_main/py/tests/py_venv_image_layer/.my_app_bin/bin/python3" # The Python version - "3.9" From 1fa052f5bf82c83a53bc5133787d05f0d61ddff9 Mon Sep 17 00:00:00 2001 From: "Reid D. McKenzie" Date: Tue, 2 Sep 2025 22:49:46 -0600 Subject: [PATCH 5/9] [NO TESTS] WIP --- py/tests/py-pex-binary/BUILD.bazel | 2 +- py/tests/py-pex-binary/print_modules.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/py/tests/py-pex-binary/BUILD.bazel b/py/tests/py-pex-binary/BUILD.bazel index e70f14b6..fe65d605 100644 --- a/py/tests/py-pex-binary/BUILD.bazel +++ b/py/tests/py-pex-binary/BUILD.bazel @@ -7,7 +7,7 @@ py_binary( srcs = ["print_modules.py"], data = ["data.txt"], deps = [ - "@bazel_tools//tools/python/runfiles", + "@rules_python//python/runfiles", "@pypi//cowsay", "@pypi//six", ], diff --git a/py/tests/py-pex-binary/print_modules.py b/py/tests/py-pex-binary/print_modules.py index e434a7c4..51f2b96f 100644 --- a/py/tests/py-pex-binary/print_modules.py +++ b/py/tests/py-pex-binary/print_modules.py @@ -1,11 +1,11 @@ import sys import cowsay import six -from bazel_tools.tools.python.runfiles import runfiles +from python.runfiles import runfiles r = runfiles.Create() -data_path = r.Rlocation("aspect_rules_py/py/tests/py-pex-binary/data.txt") +data_path = r.Rlocation("_main/py/tests/py-pex-binary/data.txt") # strings on one line to test presence for all print(open(data_path).read() From eca9a9bb6bc629336ea5d7a4ddbc468123d6dd22 Mon Sep 17 00:00:00 2001 From: "Reid D. McKenzie" Date: Tue, 2 Sep 2025 23:46:27 -0600 Subject: [PATCH 6/9] [NO TESTS] WIP --- MODULE.bazel | 6 ++++++ examples/pytest/BUILD.bazel | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/MODULE.bazel b/MODULE.bazel index 41bc63fc..cb6885ca 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -50,3 +50,9 @@ bazel_dep( version = "8.2.0.2", dev_dependency = True, ) + +bazel_dep( + name = "bazel_skylib_gazelle_plugin", + version = "1.8.1", + dev_dependency = True, +) diff --git a/examples/pytest/BUILD.bazel b/examples/pytest/BUILD.bazel index 0fb002c2..adb7ca7b 100644 --- a/examples/pytest/BUILD.bazel +++ b/examples/pytest/BUILD.bazel @@ -36,5 +36,5 @@ py_test( package_collisions = "warning", pytest_main = True, shard_count = 2, - deps = ["@pipy//pytest"], + deps = ["@pypi//pytest"], ) From a69bad0ac5cd707e5e5de31ba904c05770fb0eb2 Mon Sep 17 00:00:00 2001 From: "Reid D. McKenzie" Date: Wed, 3 Sep 2025 00:40:24 -0600 Subject: [PATCH 7/9] Update release automation. --- .github/workflows/release.yml | 25 ++++-- bazel/release/release.bzl | 4 +- bazel/rust/multi_platform_rust_binaries.bzl | 9 ++- py/tools/unpack_bin/BUILD.bazel | 6 ++ py/tools/venv_bin/BUILD.bazel | 6 ++ py/tools/venv_shim/BUILD.bazel | 6 ++ tools/linkers/BUILD.bazel | 29 ------- tools/release/BUILD.bazel | 86 -------------------- tools/release/copy_release_artifacts.sh | 24 ------ tools/release/defs.bzl | 88 --------------------- tools/release/fetch.bzl | 62 --------------- 11 files changed, 46 insertions(+), 299 deletions(-) delete mode 100644 tools/linkers/BUILD.bazel delete mode 100644 tools/release/BUILD.bazel delete mode 100755 tools/release/copy_release_artifacts.sh delete mode 100644 tools/release/defs.bzl delete mode 100644 tools/release/fetch.bzl diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8ed25cbf..39f83e01 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,12 +13,13 @@ permissions: contents: write jobs: build: - # We don't attempt to cross-compile rust binaries from one OS to another. - # So just spin up a runner on each OS to build its binaries. strategy: matrix: - # Pin to runner releases since our Rust compile is fiddly with system libs - os: [ubuntu-22.04, macos-13] + # TODO: Can we build from linux to mac? Is there an advantage to going + # in that direction? + os: + - macos-13 + runs-on: ${{ matrix.os }} steps: @@ -26,13 +27,22 @@ jobs: - name: Build Rust Binaries env: - # NB: this variable is read by tools/release/copy_release_artifacts.sh DEST: artifacts run: | rm -rf ${{ env.DEST }} mkdir -p ${{ env.DEST }} - bazel --bazelrc=.github/workflows/ci.bazelrc \ - run --config=release //tools/release:copy_release_artifacts + FLAGS=(--bazelrc=.github/workflows/ci.bazelrc) + + # Query for deliver verbs (see bazel/release/release.bzl) + TARGETS=$(bazel $FLAGS query 'attr(tags, "ci:verb:deliver", //...)') + + # Run each one of those targets to produce and "deliver" artifacts + # into the target dir. + # + # These delivery targets are expected to lay down and .sha256 + for target in $TARGETS; do + bazel $FLAGS run $target -- $(realpath ${{ env.DEST }}) + done - uses: actions/upload-artifact@v4 with: @@ -49,6 +59,7 @@ jobs: artifacts-*/* rules_py-*.tar.gz tag_name: ${{ github.ref_name }} + publish: needs: release uses: ./.github/workflows/publish.yaml diff --git a/bazel/release/release.bzl b/bazel/release/release.bzl index fd9a1a41..1d98923c 100644 --- a/bazel/release/release.bzl +++ b/bazel/release/release.bzl @@ -1,6 +1,8 @@ """This module provides the macros for performing a release. """ +load("@bazel_skylib//lib:sets.bzl", "sets") + def release(name, targets, **kwargs): """The release macro creates the artifact copier script. @@ -21,6 +23,6 @@ def release(name, targets, **kwargs): locations = " ".join(["$(locations {})".format(target) for target in targets]), ), tools = ["//bazel/release:create_release.sh"], - tags = kwargs.get("tags", []) + ["manual"], + tags = sets.to_list(sets.make(kwargs.get("tags", []) + ["manual", "ci:verb:deliver"])), **kwargs ) diff --git a/bazel/rust/multi_platform_rust_binaries.bzl b/bazel/rust/multi_platform_rust_binaries.bzl index 65f6079d..6d997411 100644 --- a/bazel/rust/multi_platform_rust_binaries.bzl +++ b/bazel/rust/multi_platform_rust_binaries.bzl @@ -16,8 +16,13 @@ TARGET_TRIPLES = [ ("aarch64_apple_darwin", "macos_aarch64"), ] -# Map a Rust naming scheme to a custom name. -TARGET_NAMING_SCHEME = {} +# Map the Rust triple naming scheme to a custom name (goos-goarch). +TARGET_NAMING_SCHEME = { + "x86_64_unknown_linux_musl": "x86_64-unknown-linux-musl", + "aarch64_unknown_linux_musl": "aarch64-unknown-linux-musl", + "x86_64_apple_darwin": "x86_64-apple-darwin", + "aarch64_apple_darwin": "aarch64-apple-darwin", +} def multi_platform_rust_binaries(name, target, name_scheme = TARGET_NAMING_SCHEME, target_triples = TARGET_TRIPLES, prefix = "", pkg_type = "zip", **kwargs): """The multi_platform_rust_binaries macro creates a filegroup containing rust binaries that are ready for release. diff --git a/py/tools/unpack_bin/BUILD.bazel b/py/tools/unpack_bin/BUILD.bazel index ee2c2f88..b87616cc 100644 --- a/py/tools/unpack_bin/BUILD.bazel +++ b/py/tools/unpack_bin/BUILD.bazel @@ -1,5 +1,6 @@ load("//bazel/rust:defs.bzl", "rust_binary") load("//bazel/rust:multi_platform_rust_binaries.bzl", "multi_platform_rust_binaries") +load("//bazel/release:release.bzl", "release") rust_binary( name = "unpack", @@ -25,3 +26,8 @@ alias( "//visibility:public", ], ) + +release( + name = "release", + targets = [":bins"], +) diff --git a/py/tools/venv_bin/BUILD.bazel b/py/tools/venv_bin/BUILD.bazel index 6be6b196..66faf2f7 100644 --- a/py/tools/venv_bin/BUILD.bazel +++ b/py/tools/venv_bin/BUILD.bazel @@ -1,5 +1,6 @@ load("//bazel/rust:defs.bzl", "rust_binary") load("//bazel/rust:multi_platform_rust_binaries.bzl", "multi_platform_rust_binaries") +load("//bazel/release:release.bzl", "release") # TODO(#497): transition to --nocollect_code_coverage to avoid rules_rust trying to instrument this binary rust_binary( @@ -26,3 +27,8 @@ alias( "//visibility:public", ], ) + +release( + name = "release", + targets = [":bins"], +) diff --git a/py/tools/venv_shim/BUILD.bazel b/py/tools/venv_shim/BUILD.bazel index 779396cd..641d9d41 100644 --- a/py/tools/venv_shim/BUILD.bazel +++ b/py/tools/venv_shim/BUILD.bazel @@ -1,5 +1,6 @@ load("//bazel/rust:defs.bzl", "rust_binary") load("//bazel/rust:multi_platform_rust_binaries.bzl", "multi_platform_rust_binaries") +load("//bazel/release:release.bzl", "release") rust_binary( name = "shim", @@ -24,3 +25,8 @@ alias( "//visibility:public", ], ) + +release( + name = "release", + targets = [":bins"], +) diff --git a/tools/linkers/BUILD.bazel b/tools/linkers/BUILD.bazel deleted file mode 100644 index 697d87be..00000000 --- a/tools/linkers/BUILD.bazel +++ /dev/null @@ -1,29 +0,0 @@ -constraint_setting( - name = "linker", - default_constraint_value = ":unknown", - visibility = ["//visibility:public"], -) - -constraint_value( - name = "musl", - constraint_setting = ":linker", - visibility = ["//visibility:public"], -) - -# Default linker for anyone not setting the linker to `musl`. -# You shouldn't ever need to set this value manually. -constraint_value( - name = "unknown", - constraint_setting = ":linker", - visibility = ["//visibility:public"], -) - -platform( - name = "linux_x86_64_musl", - constraint_values = [ - ":musl", - "@platforms//cpu:x86_64", - "@platforms//os:linux", - ], - visibility = ["//visibility:public"], -) diff --git a/tools/release/BUILD.bazel b/tools/release/BUILD.bazel deleted file mode 100644 index 5f041dd3..00000000 --- a/tools/release/BUILD.bazel +++ /dev/null @@ -1,86 +0,0 @@ -# buildifier: disable=bzl-visibility -# Since this is a load from private despite it being our private... sigh -load("//py/private/toolchain:tools.bzl", "TOOL_CFGS") - -config_setting( - name = "debug_build", - values = { - "compilation_mode": "dbg", - }, -) - -[ - platform( - name = "{}_{}".format(os, cpu), - constraint_values = [ - "@platforms//os:" + os, - "@platforms//cpu:" + cpu, - "//tools/linkers:musl" if os == "linux" else "//tools/linkers:unknown", - ], - visibility = ["//py/tools:__subpackages__"], - ) - for os in [ - "linux", - "macos", - ] - for cpu in [ - "aarch64", - "x86_64", - ] -] - -# FIXME: This is kinda a mess. Should just be done with transitions? These can crossbuild. -LINUX_ARTIFACTS = [ - tool.target + "_linux" - for tool in TOOL_CFGS -] - -MACOS_ARTIFACTS = [ - tool.target + "_macos" - for tool in TOOL_CFGS -] - -sh_binary( - name = "copy_release_artifacts", - srcs = ["copy_release_artifacts.sh"], - args = select({ - "@platforms//os:linux": ["$(rlocationpaths {})".format(s) for s in LINUX_ARTIFACTS], - "@platforms//os:macos": ["$(rlocationpaths {})".format(s) for s in MACOS_ARTIFACTS], - }), - data = select({ - "@platforms//os:linux": LINUX_ARTIFACTS, - "@platforms//os:macos": MACOS_ARTIFACTS, - }), - deps = ["@bazel_tools//tools/bash/runfiles"], -) - -# TODO: rules_rust can't resolve a MacOS toolchain from Linux, which means this -# breaks in CI although it works on Mac. This is probably a result of needing -# the MacOS system libraries to link against, not sure if we can get hermetic -# versions of that from somewhere. Not worth the trouble right now. -# -# platform_transition_filegroup( -# name = "linux_artifacts", -# srcs = LINUX_ARTIFACTS, -# target_platform = ":linux_aarch64", -# ) -# -# platform_transition_filegroup( -# name = "macos_artifacts", -# srcs = MACOS_ARTIFACTS, -# target_platform = ":macos_aarch64", -# ) -# -# sh_binary( -# name = "copy_release_artifacts_e2e", -# srcs = ["copy_release_artifacts.sh"], -# args = [ -# "$(rlocationpaths :linux_artifacts)", -# "$(rlocationpaths :macos_artifacts)", -# ], -# data = [ -# ":linux_artifacts", -# ":macos_artifacts", -# ], -# deps = ["@bazel_tools//tools/bash/runfiles"], -# ) diff --git a/tools/release/copy_release_artifacts.sh b/tools/release/copy_release_artifacts.sh deleted file mode 100755 index 07a9ae1c..00000000 --- a/tools/release/copy_release_artifacts.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env bash -# Copies release files from bazel-out to a common folder so the GitHub Actions -# configuration can easily find them all - -# --- begin runfiles.bash initialization v3 --- -# Copy-pasted from the Bazel Bash runfiles library v3. -set -uo pipefail; set +e; f=bazel_tools/tools/bash/runfiles/runfiles.bash -source "${RUNFILES_DIR:-/dev/null}/$f" 2>/dev/null || \ - source "$(grep -sm1 "^$f " "${RUNFILES_MANIFEST_FILE:-/dev/null}" | cut -f2- -d' ')" 2>/dev/null || \ - source "$0.runfiles/$f" 2>/dev/null || \ - source "$(grep -sm1 "^$f " "$0.runfiles_manifest" | cut -f2- -d' ')" 2>/dev/null || \ - source "$(grep -sm1 "^$f " "$0.exe.runfiles_manifest" | cut -f2- -d' ')" 2>/dev/null || \ - { echo>&2 "ERROR: cannot find $f"; exit 1; }; f=; set -e -# --- end runfiles.bash initialization v3 --- - -if [[ -z "${DEST:-}" ]]; then - >&2 echo "ERROR: specify DEST environment variable" - exit 1 -fi - -cd $BUILD_WORKSPACE_DIRECTORY -for arg in "$@" -do cp -pv "$(rlocation $arg)" $DEST -done diff --git a/tools/release/defs.bzl b/tools/release/defs.bzl deleted file mode 100644 index 7ab69ba2..00000000 --- a/tools/release/defs.bzl +++ /dev/null @@ -1,88 +0,0 @@ -"Make releases for platforms supported by rules_py" - -load("@aspect_bazel_lib//lib:copy_file.bzl", "copy_file") -load("@aspect_bazel_lib//tools/release:hashes.bzl", "hashes") -load("@rules_rust//rust:defs.bzl", _rust_binary = "rust_binary") - -DEFAULT_OS = ["linux", "macos"] -DEFAULT_ARCHS = ["aarch64", "x86_64"] - -def _map_os_to_triple(os): - if os == "linux": - return "unknown-linux-musl" - if os == "macos": - return "apple-darwin" - fail("Unrecognized os", os) - -# buildozer: disable=function-docstring -def rust_binary(name, visibility = [], **kwargs): - selection = {} - for os in DEFAULT_OS: - outs = [] - - target_suffix = "{}_{}".format(name, os) - target_compatible_with = ["@platforms//os:{}".format(os)] - - for arch in DEFAULT_ARCHS: - arch_target_suffix = "{}_{}".format(target_suffix, arch) - binary_name = "{}_build".format(arch_target_suffix) - platform = "//tools/platforms:{}_{}".format(os, arch) - release_platform = "//tools/release:{}_{}".format(os, arch) - - # Artifact naming follows typical Rust "triples" convention. - artifact = "{}-{}-{}".format(name, arch, _map_os_to_triple(os)) - outs.append(artifact) - - selection.update([[platform, binary_name]]) - - _rust_binary( - name = binary_name, - crate_name = name, - platform = release_platform, - target_compatible_with = target_compatible_with, - tags = ["manual"], - crate_features = select({ - str(Label(":debug_build")): [ - "debug", - ], - "//conditions:default": [], - }), - rustc_flags = select({ - str(Label(":debug_build")): [], - "//conditions:default": [ - "-Copt-level=3", - "-Clto", - "-Cstrip=symbols", - ], - }), - **kwargs - ) - - copy_file( - name = "copy_{}".format(arch_target_suffix), - src = binary_name, - out = artifact, - target_compatible_with = target_compatible_with, - ) - - hash_file = "{}.sha256".format(arch_target_suffix) - outs.append(hash_file) - hashes( - name = hash_file, - src = artifact, - target_compatible_with = target_compatible_with, - ) - - native.filegroup( - name = target_suffix, - srcs = outs, - target_compatible_with = target_compatible_with, - tags = ["manual"], - visibility = ["//tools/release:__pkg__"], - ) - - native.alias( - name = name, - actual = select(selection), - visibility = visibility, - ) diff --git a/tools/release/fetch.bzl b/tools/release/fetch.bzl deleted file mode 100644 index 787dcef1..00000000 --- a/tools/release/fetch.bzl +++ /dev/null @@ -1,62 +0,0 @@ -"""Dependencies only needed for release builds""" - -load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") - -_SYSROOT_LINUX_BUILD_FILE = """ -filegroup( - name = "sysroot", - srcs = glob(["*/**"]), - visibility = ["//visibility:public"], -) -""" - -_SYSROOT_DARWIN_BUILD_FILE = """ -filegroup( - name = "sysroot", - srcs = glob( - include = ["**"], - exclude = ["**/*:*"], - ), - visibility = ["//visibility:public"], -) -""" - -def fetch_deps(): - """Fetch dependencies only needed for release builds used for the legacy WORKSPACE support.""" - http_archive( - name = "toolchains_llvm", - sha256 = "b7cd301ef7b0ece28d20d3e778697a5e3b81828393150bed04838c0c52963a01", - strip_prefix = "toolchains_llvm-0.10.3", - canonical_id = "0.10.3", - url = "https://github.com/grailbio/bazel-toolchain/releases/download/0.10.3/toolchains_llvm-0.10.3.tar.gz", - patches = ["//third_party/com.github/bazel-contrib/toolchains_llvm:clang_ldd.patch"], - patch_args = ["-p1"], - ) - - http_archive( - name = "org_chromium_sysroot_linux_arm64", - build_file_content = _SYSROOT_LINUX_BUILD_FILE, - sha256 = "b199942a0bd9c34800e8d7b669778ef45f2054b9f106039439383dd66efcef31", - urls = ["https://github.com/DavidZbarsky-at/sysroot-min/releases/download/v0.0.20/debian_bullseye_arm64_sysroot.tar.xz"], - ) - - http_archive( - name = "org_chromium_sysroot_linux_x86_64", - build_file_content = _SYSROOT_LINUX_BUILD_FILE, - sha256 = "b279dd2926e7d3860bb4e134997a45df5106f680e160a959b945580ba4ec755f", - urls = ["https://github.com/DavidZbarsky-at/sysroot-min/releases/download/v0.0.20/debian_bullseye_amd64_sysroot.tar.xz"], - ) - - http_archive( - name = "musl_toolchains", - sha256 = "86bf928e6b11e81d2d33ca8e044b875f1ed7c7016b607376dd5575db7342c31e", - urls = ["https://github.com/bazel-contrib/musl-toolchain/releases/download/v0.1.20/musl_toolchain-v0.1.20.tar.gz"], - ) - - http_archive( - name = "sysroot_darwin_universal", - build_file_content = _SYSROOT_DARWIN_BUILD_FILE, - sha256 = "11870a4a3d382b78349861081264921bb883440a7e0b3dd4a007373d87324a38", - strip_prefix = "sdk-macos-11.3-ccbaae84cc39469a6792108b24480a4806e09d59/root", - urls = ["https://github.com/hexops-graveyard/sdk-macos-11.3/archive/ccbaae84cc39469a6792108b24480a4806e09d59.tar.gz"], - ) From 3878cbb52d2b87c91abc8fe4e4e3dd3ba1efeb3f Mon Sep 17 00:00:00 2001 From: "Reid D. McKenzie" Date: Wed, 3 Sep 2025 00:45:29 -0600 Subject: [PATCH 8/9] Shovel release stamping out of tools --- .gitattributes | 2 +- .github/workflows/release_prep.sh | 4 +-- {tools => py/private/release}/BUILD.bazel | 0 {tools => py/private/release}/integrity.bzl | 0 {tools => py/private/release}/version.bzl | 0 py/private/toolchain/repo.bzl | 4 +-- tools/platforms/BUILD.bazel | 35 --------------------- 7 files changed, 5 insertions(+), 40 deletions(-) rename {tools => py/private/release}/BUILD.bazel (100%) rename {tools => py/private/release}/integrity.bzl (100%) rename {tools => py/private/release}/version.bzl (100%) delete mode 100644 tools/platforms/BUILD.bazel diff --git a/.gitattributes b/.gitattributes index 9c6c5032..5b36b98a 100644 --- a/.gitattributes +++ b/.gitattributes @@ -8,4 +8,4 @@ docs/virtual_deps.md linguist-generated=false examples export-ignore # Substitution for the _VERSION_PRIVATE placeholder -tools/version.bzl export-subst +py/private/release/version.bzl export-subst diff --git a/.github/workflows/release_prep.sh b/.github/workflows/release_prep.sh index 06f0b911..7c09fb92 100755 --- a/.github/workflows/release_prep.sh +++ b/.github/workflows/release_prep.sh @@ -18,7 +18,7 @@ git archive --format=tar --prefix=${PREFIX}/ ${TAG} > $ARCHIVE_TMP # Now that we've run `git archive` we are free to pollute the working directory. # Delete the placeholder file -tar --file $ARCHIVE_TMP --delete ${PREFIX}/tools/integrity.bzl +tar --file $ARCHIVE_TMP --delete ${PREFIX}/py/private/release/integrity.bzl mkdir -p ${PREFIX}/tools cat >${PREFIX}/tools/integrity.bzl < Date: Wed, 3 Sep 2025 00:54:01 -0600 Subject: [PATCH 9/9] [NO TESTS] WIP --- MODULE.bazel | 9 ++++-- bazel/include/llvm.MODULE.bazel | 4 +-- bazel/include/oci.MODULE.bazel | 1 + bazel/include/rules-python.MODULE.bazel | 17 ++++++----- bazel/include/rust.MODULE.bazel | 38 ++++++++++++++++--------- bazel/include/telemetry.MODULE.bazel | 1 + bazel/release/BUILD.bazel | 2 +- bazel/rust/README.md | 2 +- bazel/rust/defs.bzl | 2 +- py/extensions.bzl | 2 +- py/private/BUILD.bazel | 2 +- py/private/toolchain/repo.bzl | 2 +- py/tests/py-pex-binary/BUILD.bazel | 2 +- py/toolchains.bzl | 2 +- py/tools/unpack_bin/BUILD.bazel | 2 +- py/tools/venv_bin/BUILD.bazel | 2 +- py/tools/venv_shim/BUILD.bazel | 4 +-- 17 files changed, 55 insertions(+), 39 deletions(-) diff --git a/MODULE.bazel b/MODULE.bazel index cb6885ca..137e532b 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -16,12 +16,19 @@ bazel_dep(name = "platforms", version = "0.0.7") bazel_dep(name = "bazelrc-preset.bzl", version = "1.2.0") include("//bazel/include:bazel-lib.MODULE.bazel") + include("//bazel/include:llvm.MODULE.bazel") + include("//bazel/include:musl.MODULE.bazel") + include("//bazel/include:oci.MODULE.bazel") + include("//bazel/include:rust.MODULE.bazel") + include("//bazel/include:telemetry.MODULE.bazel") + include("//bazel/include:rules-python.MODULE.bazel") + include("//bazel/include:release.MODULE.bazel") tools = use_extension("//py:extensions.bzl", "py_tools") @@ -44,13 +51,11 @@ bazel_dep( version = "0.45.0", dev_dependency = True, ) - bazel_dep( name = "buildifier_prebuilt", version = "8.2.0.2", dev_dependency = True, ) - bazel_dep( name = "bazel_skylib_gazelle_plugin", version = "1.8.1", diff --git a/bazel/include/llvm.MODULE.bazel b/bazel/include/llvm.MODULE.bazel index c2eb8151..f62b388a 100644 --- a/bazel/include/llvm.MODULE.bazel +++ b/bazel/include/llvm.MODULE.bazel @@ -27,7 +27,7 @@ execution_cpus = [ name = "llvm_toolchain_{}_{}".format(exec_os, exec_cpu), exec_arch = exec_cpu, exec_os = exec_os if exec_os != "macos" else "darwin", - llvm_version = "19.1.7" + llvm_version = "19.1.7", ), llvm.sysroot( name = "llvm_toolchain_{}_{}".format(exec_os, exec_cpu), @@ -89,9 +89,9 @@ filegroup( visibility = ["//visibility:public"], ) """, + integrity = "sha256-9qzGIJ251Wtn/K+R7B3v5Ici6esT3CH7kc/s6xSJ5X4=", # The ruby header has an infinite symlink that we need to remove. patch_cmds = ["rm System/Library/Frameworks/Ruby.framework/Versions/Current/Headers/ruby/ruby"], - integrity = "sha256-9qzGIJ251Wtn/K+R7B3v5Ici6esT3CH7kc/s6xSJ5X4=", strip_prefix = "MacOSX14.5.sdk", urls = ["https://github.com/alexey-lysiuk/macos-sdk/releases/download/14.5/MacOSX14.5.tar.xz"], ) diff --git a/bazel/include/oci.MODULE.bazel b/bazel/include/oci.MODULE.bazel index da9c1543..1a101b8d 100644 --- a/bazel/include/oci.MODULE.bazel +++ b/bazel/include/oci.MODULE.bazel @@ -23,6 +23,7 @@ git_override( # Used for testing container layers bazel_dep(name = "tar.bzl", version = "0.5.5") + bazel_lib_toolchains = use_extension("@tar.bzl//tar:extensions.bzl", "toolchains") use_repo(bazel_lib_toolchains, "bsd_tar_toolchains") diff --git a/bazel/include/rules-python.MODULE.bazel b/bazel/include/rules-python.MODULE.bazel index 067abc77..dc4c1df8 100644 --- a/bazel/include/rules-python.MODULE.bazel +++ b/bazel/include/rules-python.MODULE.bazel @@ -6,7 +6,6 @@ python.toolchain( is_default = True, python_version = "3.9", ) - python.toolchain( is_default = False, python_version = "3.12", @@ -15,13 +14,13 @@ python.toolchain( pip = use_extension("@rules_python//python/extensions:pip.bzl", "pip", dev_dependency = True) pip.parse( hub_name = "django", - requirements_lock = "//py/tests/virtual/django:requirements.txt", python_version = "3.9", + requirements_lock = "//py/tests/virtual/django:requirements.txt", ) pip.parse( hub_name = "pypi", - requirements_lock = "//:requirements.txt", python_version = "3.9", + requirements_lock = "//:requirements.txt", ) use_repo(pip, "django", "pypi") @@ -29,21 +28,21 @@ http_file = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_ http_file( name = "django_4_2_4", - urls = ["https://files.pythonhosted.org/packages/7f/9e/fc6bab255ae10bc57fa2f65646eace3d5405fbb7f5678b90140052d1db0f/Django-4.2.4-py3-none-any.whl"], - sha256 = "860ae6a138a238fc4f22c99b52f3ead982bb4b1aad8c0122bcd8c8a3a02e409d", downloaded_file_path = "Django-4.2.4-py3-none-any.whl", + sha256 = "860ae6a138a238fc4f22c99b52f3ead982bb4b1aad8c0122bcd8c8a3a02e409d", + urls = ["https://files.pythonhosted.org/packages/7f/9e/fc6bab255ae10bc57fa2f65646eace3d5405fbb7f5678b90140052d1db0f/Django-4.2.4-py3-none-any.whl"], ) http_file( name = "django_4_1_10", - urls = ["https://files.pythonhosted.org/packages/34/25/8a218de57fc9853297a1a8e4927688eff8107d5bc6dcf6c964c59801f036/Django-4.1.10-py3-none-any.whl"], - sha256 = "26d0260c2fb8121009e62ffc548b2398dea2522b6454208a852fb0ef264c206c", downloaded_file_path = "Django-4.1.10-py3-none-any.whl", + sha256 = "26d0260c2fb8121009e62ffc548b2398dea2522b6454208a852fb0ef264c206c", + urls = ["https://files.pythonhosted.org/packages/34/25/8a218de57fc9853297a1a8e4927688eff8107d5bc6dcf6c964c59801f036/Django-4.1.10-py3-none-any.whl"], ) http_file( name = "sqlparse_0_4_0", - urls = ["https://files.pythonhosted.org/packages/10/96/36c136013c4a6ecb8c6aa3eed66e6dcea838f85fd80e1446499f1dabfac7/sqlparse-0.4.0-py3-none-any.whl"], - sha256 = "0523026398aea9c8b5f7a4a6d5c0829c285b4fbd960c17b5967a369342e21e01", downloaded_file_path = "sqlparse-0.4.0-py3-none-any.whl", + sha256 = "0523026398aea9c8b5f7a4a6d5c0829c285b4fbd960c17b5967a369342e21e01", + urls = ["https://files.pythonhosted.org/packages/10/96/36c136013c4a6ecb8c6aa3eed66e6dcea838f85fd80e1446499f1dabfac7/sqlparse-0.4.0-py3-none-any.whl"], ) diff --git a/bazel/include/rust.MODULE.bazel b/bazel/include/rust.MODULE.bazel index 64ca8189..6a30a296 100644 --- a/bazel/include/rust.MODULE.bazel +++ b/bazel/include/rust.MODULE.bazel @@ -39,7 +39,7 @@ crate.from_cargo( use_repo(crate, "crates") # These override the default rust_repository_sets created by rust_register_toolchain. They must be named exactly as follows. -# NB: The first call for a particular name may set the `edition`, `exec_triple`, and `versions` attributes, the subsequent calls shoud not set it or else Bazel will fail with, +# NB: The first call for a particular name may set the `edition`, `exec_triple`, and `versions` attributes, the subsequent calls should not set it or else Bazel will fail with, # "Error in fail: You must only set edition on the first call to repository_set for a particular name but it was set multiple times for rust_linux_x86_64" # "Error in fail: You must only set exec_triple on the first call to repository_set for a particular name but it was set multiple times for rust_linux_x86_64" # "Error in fail: You must only set versions on the first call to repository_set for a particular name but it was set multiple times for rust_linux_x86_64" @@ -48,16 +48,17 @@ use_repo(crate, "crates") # -> linux x86_64 (gnu) rust.repository_set( name = "rust_linux_x86_64", - edition = RUST_EDITION, # "edition" only set in first instance of "rust_linux_x86_64" repository_set (see comment above) - exec_triple = "x86_64-unknown-linux-gnu", # "exec_triple" only set in first instance of "rust_linux_x86_64" repository_set (see comment above) + edition = RUST_EDITION, # "edition" only set in first instance of "rust_linux_x86_64" repository_set (see comment above) + exec_triple = "x86_64-unknown-linux-gnu", # "exec_triple" only set in first instance of "rust_linux_x86_64" repository_set (see comment above) target_compatible_with = [ "@//bazel/platforms/linkers:unknown", "@platforms//cpu:x86_64", "@platforms//os:linux", ], target_triple = "x86_64-unknown-linux-gnu", - versions = [RUST_VERSION], # "versions" only set in first instance of "rust_linux_x86_64" repository_set (see comment above) + versions = [RUST_VERSION], # "versions" only set in first instance of "rust_linux_x86_64" repository_set (see comment above) ) + # -> linux x86_64 (musl) rust.repository_set( name = "rust_linux_x86_64", @@ -68,6 +69,7 @@ rust.repository_set( ], target_triple = "x86_64-unknown-linux-musl", ) + # -> linux arm (musl) rust.repository_set( name = "rust_linux_x86_64", @@ -78,6 +80,7 @@ rust.repository_set( ], target_triple = "aarch64-unknown-linux-musl", ) + # -> darwin x86 rust.repository_set( name = "rust_linux_x86_64", @@ -87,6 +90,7 @@ rust.repository_set( ], target_triple = "x86_64-apple-darwin", ) + # -> darwin arm rust.repository_set( name = "rust_linux_x86_64", @@ -101,16 +105,17 @@ rust.repository_set( # -> linux arm (gnu) rust.repository_set( name = "rust_linux_aarch64", - edition = RUST_EDITION, # "edition" only set in first instance of "rust_linux_aarch64" repository_set (see comment above) - exec_triple = "aarch64-unknown-linux-gnu", # "exec_triple" only set in first instance of "rust_linux_aarch64" repository_set (see comment above) + edition = RUST_EDITION, # "edition" only set in first instance of "rust_linux_aarch64" repository_set (see comment above) + exec_triple = "aarch64-unknown-linux-gnu", # "exec_triple" only set in first instance of "rust_linux_aarch64" repository_set (see comment above) target_compatible_with = [ "@//bazel/platforms/linkers:unknown", "@platforms//cpu:aarch64", "@platforms//os:linux", ], target_triple = "aarch64-unknown-linux-gnu", - versions = [RUST_VERSION], # "versions" only set in first instance of "rust_linux_aarch64" repository_set (see comment above) + versions = [RUST_VERSION], # "versions" only set in first instance of "rust_linux_aarch64" repository_set (see comment above) ) + # -> linux arm (musl) rust.repository_set( name = "rust_linux_aarch64", @@ -126,16 +131,17 @@ rust.repository_set( # -> linux x86 (musl) rust.repository_set( name = "rust_darwin_x86_64", - edition = RUST_EDITION, # "edition" only set in first instance of "rust_darwin_x86_64" repository_set (see comment above) - exec_triple = "x86_64-apple-darwin", # "exec_triple" only set in first instance of "rust_darwin_x86_64" repository_set (see comment above) + edition = RUST_EDITION, # "edition" only set in first instance of "rust_darwin_x86_64" repository_set (see comment above) + exec_triple = "x86_64-apple-darwin", # "exec_triple" only set in first instance of "rust_darwin_x86_64" repository_set (see comment above) target_compatible_with = [ "@//bazel/platforms/linkers:musl", "@platforms//cpu:x86_64", "@platforms//os:linux", ], target_triple = "x86_64-unknown-linux-musl", - versions = [RUST_VERSION], # "versions" only set in first instance of "rust_darwin_x86_64" repository_set (see comment above) + versions = [RUST_VERSION], # "versions" only set in first instance of "rust_darwin_x86_64" repository_set (see comment above) ) + # -> linux arm (musl) rust.repository_set( name = "rust_darwin_x86_64", @@ -146,6 +152,7 @@ rust.repository_set( ], target_triple = "aarch64-unknown-linux-musl", ) + # -> darwin x86 rust.repository_set( name = "rust_darwin_x86_64", @@ -155,6 +162,7 @@ rust.repository_set( ], target_triple = "x86_64-apple-darwin", ) + # -> darwin arm rust.repository_set( name = "rust_darwin_x86_64", @@ -169,16 +177,17 @@ rust.repository_set( # -> linux x86 (musl) rust.repository_set( name = "rust_darwin_aarch64", - edition = RUST_EDITION, # "edition" only set in first instance of "rust_darwin_aarch64" repository_set (see comment above) - exec_triple = "aarch64-apple-darwin", # "exec_triple" only set in first instance of "rust_darwin_aarch64" repository_set (see comment above) + edition = RUST_EDITION, # "edition" only set in first instance of "rust_darwin_aarch64" repository_set (see comment above) + exec_triple = "aarch64-apple-darwin", # "exec_triple" only set in first instance of "rust_darwin_aarch64" repository_set (see comment above) target_compatible_with = [ "@//bazel/platforms/linkers:musl", "@platforms//cpu:x86_64", "@platforms//os:linux", ], target_triple = "x86_64-unknown-linux-musl", - versions = [RUST_VERSION], # "versions" only set in first instance of "rust_darwin_aarch64" repository_set (see comment above) + versions = [RUST_VERSION], # "versions" only set in first instance of "rust_darwin_aarch64" repository_set (see comment above) ) + # -> linux arm (musl) rust.repository_set( name = "rust_darwin_aarch64", @@ -189,6 +198,7 @@ rust.repository_set( ], target_triple = "aarch64-unknown-linux-musl", ) + # -> darwin x86 rust.repository_set( name = "rust_darwin_aarch64", @@ -198,6 +208,7 @@ rust.repository_set( ], target_triple = "x86_64-apple-darwin", ) + # -> darwin arm rust.repository_set( name = "rust_darwin_aarch64", @@ -207,7 +218,6 @@ rust.repository_set( ], target_triple = "aarch64-apple-darwin", ) - use_repo(rust, "rust_toolchains") register_toolchains("@rust_toolchains//:all") diff --git a/bazel/include/telemetry.MODULE.bazel b/bazel/include/telemetry.MODULE.bazel index 3b46ecee..869be035 100644 --- a/bazel/include/telemetry.MODULE.bazel +++ b/bazel/include/telemetry.MODULE.bazel @@ -1,3 +1,4 @@ bazel_dep(name = "aspect_tools_telemetry", version = "0.2.6") + tel = use_extension("@aspect_tools_telemetry//:extension.bzl", "telemetry") use_repo(tel, "aspect_tools_telemetry_report") diff --git a/bazel/release/BUILD.bazel b/bazel/release/BUILD.bazel index e2007963..554e7cb9 100644 --- a/bazel/release/BUILD.bazel +++ b/bazel/release/BUILD.bazel @@ -14,4 +14,4 @@ config_setting( "compilation_mode": "dbg", }, visibility = ["//visibility:public"], -) \ No newline at end of file +) diff --git a/bazel/rust/README.md b/bazel/rust/README.md index 8abd16e4..c812ee37 100644 --- a/bazel/rust/README.md +++ b/bazel/rust/README.md @@ -14,7 +14,7 @@ cargo add my_dependency CARGO_BAZEL_ISOLATED=1 CARGO_BAZEL_REPIN=1 bazel build //... ``` -If you are adding a crate which is used in multiple `Cargo.toml` files strongly consider making the create a workspace dependency. +If you are adding a crate which is used in multiple `Cargo.toml` files strongly consider making the create a workspace dependency. ``` cargo add --workspace-root YOUR_CRATE diff --git a/bazel/rust/defs.bzl b/bazel/rust/defs.bzl index caa00a8e..aa191c92 100644 --- a/bazel/rust/defs.bzl +++ b/bazel/rust/defs.bzl @@ -88,7 +88,7 @@ def rust_library(name, rustc_env_files = [], version_key = "", crate_features = "CARGO_PKG_VERSION=0.0.0-DEV", ], ) - stamp = -1 # workaround https://github.com/bazelbuild/rules_rust/pull/3503 + stamp = -1 # workaround https://github.com/bazelbuild/rules_rust/pull/3503 rustc_env_files = rustc_env_files + [rustc_env_file] _rust_library( name = name, diff --git a/py/extensions.bzl b/py/extensions.bzl index 5e5b441d..d91ec7b1 100644 --- a/py/extensions.bzl +++ b/py/extensions.bzl @@ -1,7 +1,7 @@ "Module Extensions used from MODULE.bazel" load("@aspect_tools_telemetry_report//:defs.bzl", "TELEMETRY") # buildifier: disable=load -load("//tools:version.bzl", "IS_PRERELEASE") +load("//py/private/release:version.bzl", "IS_PRERELEASE") load(":toolchains.bzl", "DEFAULT_TOOLS_REPOSITORY", "rules_py_toolchains") py_toolchain = tag_class(attrs = { diff --git a/py/private/BUILD.bazel b/py/private/BUILD.bazel index e6be452b..3286ac5b 100644 --- a/py/private/BUILD.bazel +++ b/py/private/BUILD.bazel @@ -63,7 +63,7 @@ bzl_library( name = "py_pytest_main", srcs = ["py_pytest_main.bzl"], deps = [ - ":py_library" + ":py_library", ], ) diff --git a/py/private/toolchain/repo.bzl b/py/private/toolchain/repo.bzl index f886d8a2..15faf292 100644 --- a/py/private/toolchain/repo.bzl +++ b/py/private/toolchain/repo.bzl @@ -17,9 +17,9 @@ This guidance tells us how to avoid that: we put the toolchain targets in the al with only the toolchain attribute pointing into the platform-specific repositories. """ -load("//py/private/toolchain:tools.bzl", "TOOLCHAIN_PLATFORMS", "TOOL_CFGS") load("//py/private/release:integrity.bzl", "RELEASED_BINARY_INTEGRITY") load("//py/private/release:version.bzl", "VERSION") +load("//py/private/toolchain:tools.bzl", "TOOLCHAIN_PLATFORMS", "TOOL_CFGS") def _toolchains_repo_impl(repository_ctx): build_content = """# Generated by toolchains_repo.bzl diff --git a/py/tests/py-pex-binary/BUILD.bazel b/py/tests/py-pex-binary/BUILD.bazel index fe65d605..b7d7c5ad 100644 --- a/py/tests/py-pex-binary/BUILD.bazel +++ b/py/tests/py-pex-binary/BUILD.bazel @@ -7,9 +7,9 @@ py_binary( srcs = ["print_modules.py"], data = ["data.txt"], deps = [ - "@rules_python//python/runfiles", "@pypi//cowsay", "@pypi//six", + "@rules_python//python/runfiles", ], ) diff --git a/py/toolchains.bzl b/py/toolchains.bzl index a32e22ca..ea7636d9 100644 --- a/py/toolchains.bzl +++ b/py/toolchains.bzl @@ -2,10 +2,10 @@ load("@aspect_bazel_lib//lib:repositories.bzl", "register_tar_toolchains") load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_file") +load("//py/private/release:version.bzl", "IS_PRERELEASE") load("//py/private/toolchain:autodetecting.bzl", _register_autodetecting_python_toolchain = "register_autodetecting_python_toolchain") load("//py/private/toolchain:repo.bzl", "prebuilt_tool_repo", "prerelease_toolchains_repo", "toolchains_repo") load("//py/private/toolchain:tools.bzl", "TOOLCHAIN_PLATFORMS", "TOOL_CFGS") -load("//tools:version.bzl", "IS_PRERELEASE") register_autodetecting_python_toolchain = _register_autodetecting_python_toolchain diff --git a/py/tools/unpack_bin/BUILD.bazel b/py/tools/unpack_bin/BUILD.bazel index b87616cc..69aa06f5 100644 --- a/py/tools/unpack_bin/BUILD.bazel +++ b/py/tools/unpack_bin/BUILD.bazel @@ -1,6 +1,6 @@ +load("//bazel/release:release.bzl", "release") load("//bazel/rust:defs.bzl", "rust_binary") load("//bazel/rust:multi_platform_rust_binaries.bzl", "multi_platform_rust_binaries") -load("//bazel/release:release.bzl", "release") rust_binary( name = "unpack", diff --git a/py/tools/venv_bin/BUILD.bazel b/py/tools/venv_bin/BUILD.bazel index 66faf2f7..f4f96701 100644 --- a/py/tools/venv_bin/BUILD.bazel +++ b/py/tools/venv_bin/BUILD.bazel @@ -1,6 +1,6 @@ +load("//bazel/release:release.bzl", "release") load("//bazel/rust:defs.bzl", "rust_binary") load("//bazel/rust:multi_platform_rust_binaries.bzl", "multi_platform_rust_binaries") -load("//bazel/release:release.bzl", "release") # TODO(#497): transition to --nocollect_code_coverage to avoid rules_rust trying to instrument this binary rust_binary( diff --git a/py/tools/venv_shim/BUILD.bazel b/py/tools/venv_shim/BUILD.bazel index 641d9d41..74d68c55 100644 --- a/py/tools/venv_shim/BUILD.bazel +++ b/py/tools/venv_shim/BUILD.bazel @@ -1,6 +1,6 @@ +load("//bazel/release:release.bzl", "release") load("//bazel/rust:defs.bzl", "rust_binary") load("//bazel/rust:multi_platform_rust_binaries.bzl", "multi_platform_rust_binaries") -load("//bazel/release:release.bzl", "release") rust_binary( name = "shim", @@ -8,8 +8,8 @@ rust_binary( "src/main.rs", ], deps = [ - "@crates//:miette", "//py/tools/runfiles", + "@crates//:miette", ], )