audit: tooling, deploy ordering, README, repo hygiene
This commit is contained in:
parent
dd61fc0cc4
commit
b02e1e868d
14
.env.example
14
.env.example
|
|
@ -1,9 +1,19 @@
|
||||||
# Copy this file to .env and fill in the values.
|
# Copy this file to .env and fill in the values.
|
||||||
# .env is gitignored — never commit it.
|
# .env is gitignored — never commit it.
|
||||||
#
|
#
|
||||||
# Used by `make deploy` to push to GitHub before rsyncing to the VPS.
|
# `make deploy` rsyncs the built _site/ to the VPS, then pushes the
|
||||||
# If either variable is unset, the push step is skipped (rsync still runs).
|
# repository to GitHub. The Makefile aborts with a clear error if any
|
||||||
|
# of VPS_USER / VPS_HOST / VPS_PATH is unset.
|
||||||
|
|
||||||
|
# --- VPS deployment target -------------------------------------------------
|
||||||
|
# SSH user on the deployment VPS.
|
||||||
|
VPS_USER=
|
||||||
|
# Hostname or IP of the deployment VPS.
|
||||||
|
VPS_HOST=
|
||||||
|
# Absolute path to the document root on the VPS (e.g. /var/www/levineuwirth.org).
|
||||||
|
VPS_PATH=
|
||||||
|
|
||||||
|
# --- GitHub mirror push ----------------------------------------------------
|
||||||
# A GitHub fine-grained personal access token with Contents: read+write
|
# A GitHub fine-grained personal access token with Contents: read+write
|
||||||
# on the levineuwirth.org repository.
|
# on the levineuwirth.org repository.
|
||||||
# Generate at: https://github.com/settings/tokens
|
# Generate at: https://github.com/settings/tokens
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,38 @@ _cache/
|
||||||
*.swp
|
*.swp
|
||||||
*.swo
|
*.swo
|
||||||
|
|
||||||
|
# Python bytecode caches
|
||||||
|
**/__pycache__/
|
||||||
|
*.pyc
|
||||||
|
*.pyo
|
||||||
|
|
||||||
|
# LaTeX build artifacts (sitewide — covers paper/, any future TeX sources)
|
||||||
|
*.aux
|
||||||
|
*.bbl
|
||||||
|
*.blg
|
||||||
|
*.brf
|
||||||
|
*.fdb_latexmk
|
||||||
|
*.fls
|
||||||
|
*.glo
|
||||||
|
*.gls
|
||||||
|
*.idx
|
||||||
|
*.ilg
|
||||||
|
*.ind
|
||||||
|
*.lof
|
||||||
|
*.lot
|
||||||
|
*.nav
|
||||||
|
*.out
|
||||||
|
*.snm
|
||||||
|
*.synctex.gz
|
||||||
|
*.toc
|
||||||
|
*.vrb
|
||||||
|
# PGF/TikZ scratch outputs
|
||||||
|
pgftest*.pdf
|
||||||
|
pgftest*.log
|
||||||
|
pgftest*.aux
|
||||||
|
# LaTeX run logs (scoped to paper/ — bare *.log would be too broad sitewide)
|
||||||
|
paper/*.log
|
||||||
|
|
||||||
# Data files that are generated at build time (not version-controlled)
|
# Data files that are generated at build time (not version-controlled)
|
||||||
data/embeddings.json
|
data/embeddings.json
|
||||||
data/similar-links.json
|
data/similar-links.json
|
||||||
|
|
|
||||||
16
Makefile
16
Makefile
|
|
@ -6,6 +6,12 @@
|
||||||
export
|
export
|
||||||
|
|
||||||
build:
|
build:
|
||||||
|
# Auto-snapshot any uncommitted content/ changes BEFORE the build
|
||||||
|
# so the stability heuristic in build/Stability.hs sees a stable
|
||||||
|
# git history. If a subsequent step fails, the snapshot remains in
|
||||||
|
# the history — that's intentional. The next successful build
|
||||||
|
# either reuses it (no new content/ changes) or appends another
|
||||||
|
# snapshot on top, so failures don't disappear from the log.
|
||||||
@git add content/
|
@git add content/
|
||||||
@git diff --cached --quiet || git commit -m "auto: $$(date -u +%Y-%m-%dT%H:%M:%SZ)"
|
@git diff --cached --quiet || git commit -m "auto: $$(date -u +%Y-%m-%dT%H:%M:%SZ)"
|
||||||
@date +%s > data/build-start.txt
|
@date +%s > data/build-start.txt
|
||||||
|
|
@ -54,15 +60,23 @@ pdf-thumbs:
|
||||||
fi
|
fi
|
||||||
|
|
||||||
deploy: clean build sign
|
deploy: clean build sign
|
||||||
git push -u origin main
|
@test -n "$(VPS_USER)" || (echo "deploy: VPS_USER not set in .env" >&2; exit 1)
|
||||||
|
@test -n "$(VPS_HOST)" || (echo "deploy: VPS_HOST not set in .env" >&2; exit 1)
|
||||||
|
@test -n "$(VPS_PATH)" || (echo "deploy: VPS_PATH not set in .env" >&2; exit 1)
|
||||||
rsync -avz --delete _site/ $(VPS_USER)@$(VPS_HOST):$(VPS_PATH)/
|
rsync -avz --delete _site/ $(VPS_USER)@$(VPS_HOST):$(VPS_PATH)/
|
||||||
|
git push -u origin main
|
||||||
|
|
||||||
|
watch: export SITE_ENV = dev
|
||||||
watch:
|
watch:
|
||||||
cabal run site -- watch
|
cabal run site -- watch
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
cabal run site -- clean
|
cabal run site -- clean
|
||||||
|
|
||||||
|
# Dev build includes any in-progress drafts under content/drafts/essays/.
|
||||||
|
# SITE_ENV=dev is read by build/Site.hs; drafts are otherwise invisible to
|
||||||
|
# every build (make build / make deploy / cabal run site -- build directly).
|
||||||
|
dev: export SITE_ENV = dev
|
||||||
dev:
|
dev:
|
||||||
cabal run site -- clean
|
cabal run site -- clean
|
||||||
cabal run site -- build
|
cabal run site -- build
|
||||||
|
|
|
||||||
87
README.md
87
README.md
|
|
@ -1 +1,86 @@
|
||||||
# levineuwirth.org
|
# levineuwirth.org
|
||||||
|
|
||||||
|
Personal site of Levi Neuwirth — essays, blog posts, poetry, fiction, and music.
|
||||||
|
Built with [Hakyll](https://jaspervdj.be/hakyll/) and [Pandoc](https://pandoc.org/),
|
||||||
|
with a custom build system in `build/` and a Haskell + JS + Python toolchain.
|
||||||
|
|
||||||
|
## Quickstart
|
||||||
|
|
||||||
|
```sh
|
||||||
|
make build # one-shot production build into _site/
|
||||||
|
make dev # dev build (drafts visible) + local server on :8000
|
||||||
|
make watch # cabal-watch rebuild (drafts visible)
|
||||||
|
make clean # cabal run site -- clean
|
||||||
|
make deploy # clean → build → sign → push → rsync to VPS
|
||||||
|
```
|
||||||
|
|
||||||
|
`make build` always runs `make clean` implicitly when invoked from `make deploy`.
|
||||||
|
For day-to-day work, prefer `make dev` (which serves the site on
|
||||||
|
`http://localhost:8000`) or `make watch` (rebuilds on save without a server).
|
||||||
|
|
||||||
|
**Run `make build` any time you add or replace binary assets** (JPEG/PNG
|
||||||
|
figures, PDFs, music assets). `make dev` and `make watch` skip the
|
||||||
|
`convert-images.sh` / `pdf-thumbs` preprocessing steps, so a fresh JPEG
|
||||||
|
will have no `.webp` companion and a fresh PDF will have no thumbnail
|
||||||
|
until a full `make build` regenerates them. Once the companions exist
|
||||||
|
they survive subsequent `make dev` runs.
|
||||||
|
|
||||||
|
## Optional features
|
||||||
|
|
||||||
|
- **Similar-links and embeddings.** `tools/embed.py` precomputes
|
||||||
|
page-level embeddings for the "Related" block. To enable:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
uv sync # creates .venv with sentence-transformers, faiss-cpu
|
||||||
|
```
|
||||||
|
|
||||||
|
The build silently skips embedding when `.venv` is absent.
|
||||||
|
|
||||||
|
- **Client-side semantic search.** Downloads a quantized ONNX model
|
||||||
|
used by `static/js/semantic-search.js` (run once; files are gitignored):
|
||||||
|
|
||||||
|
```sh
|
||||||
|
make download-model
|
||||||
|
```
|
||||||
|
|
||||||
|
- **Image conversion.** `make build` calls `tools/convert-images.sh` to
|
||||||
|
produce `.webp` companions next to every JPEG/PNG. Requires `cwebp`
|
||||||
|
(`libwebp` on Arch, `webp` on Debian/Ubuntu).
|
||||||
|
|
||||||
|
- **PDF thumbnails.** `make pdf-thumbs` generates first-page thumbnails
|
||||||
|
for PDFs in `static/papers/` using `pdftoppm` (`poppler` on Arch,
|
||||||
|
`poppler-utils` on Debian/Ubuntu). Skipped silently when missing.
|
||||||
|
|
||||||
|
## Configuration
|
||||||
|
|
||||||
|
`.env` (gitignored, copy from `.env.example`) holds the GitHub PAT and
|
||||||
|
the VPS rsync target consumed by `make deploy`. Never commit it.
|
||||||
|
|
||||||
|
## Repository layout
|
||||||
|
|
||||||
|
- `build/` — Haskell build system (Hakyll rules, Pandoc filters, contexts).
|
||||||
|
See `build/Filters/` for the Pandoc AST transforms (sidenotes,
|
||||||
|
wikilinks, transclusion, score embedding, viz, …).
|
||||||
|
- `content/` — authored Markdown (essays, blog, poetry, fiction, music).
|
||||||
|
- `templates/` — Hakyll/Pandoc HTML templates.
|
||||||
|
- `static/` — CSS, JS, fonts, images, vendored PDF.js.
|
||||||
|
- `tools/` — Python tooling (embeddings, importers) and shell scripts.
|
||||||
|
- `data/` — generated and source data (commonplace.yaml, annotations.json,
|
||||||
|
bibliographies, similar-links.json).
|
||||||
|
- `paper/` — LaTeX source for in-progress academic papers.
|
||||||
|
- `spec.md` — full architectural notes and design intent.
|
||||||
|
|
||||||
|
## Architecture pointers
|
||||||
|
|
||||||
|
- `build/Site.hs` is the Hakyll rules entry point.
|
||||||
|
- `build/Patterns.hs` defines canonical content patterns shared by
|
||||||
|
Backlinks, Authors, Tags, and Site.
|
||||||
|
- `build/Compilers.hs` wires the Pandoc filter chain into Hakyll.
|
||||||
|
- `build/Filters/Images.hs` does WebP `<picture>` wrapping; requires
|
||||||
|
the `.webp` companions produced by `tools/convert-images.sh`.
|
||||||
|
|
||||||
|
For deeper architectural detail, see `spec.md`.
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
See `LICENSE`.
|
||||||
|
|
|
||||||
173
paper/main.aux
173
paper/main.aux
|
|
@ -1,173 +0,0 @@
|
||||||
\relax
|
|
||||||
\providecommand\hyper@newdestlabel[2]{}
|
|
||||||
\providecommand\HyField@AuxAddToFields[1]{}
|
|
||||||
\providecommand\HyField@AuxAddToCoFields[2]{}
|
|
||||||
\citation{fips203,fips204,fips205}
|
|
||||||
\citation{bettini2024}
|
|
||||||
\citation{kyber-avx2}
|
|
||||||
\citation{fips203}
|
|
||||||
\citation{ntt-survey}
|
|
||||||
\@writefile{toc}{\contentsline {section}{Abstract}{1}{section*.1}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {1}Introduction}{1}{section.1}\protected@file@percent }
|
|
||||||
\newlabel{sec:intro}{{1}{1}{Introduction}{section.1}{}}
|
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {2}Background}{1}{section.2}\protected@file@percent }
|
|
||||||
\newlabel{sec:background}{{2}{1}{Background}{section.2}{}}
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {2.1}ML-KEM and the Number Theoretic Transform}{1}{subsection.2.1}\protected@file@percent }
|
|
||||||
\citation{kyber-avx2}
|
|
||||||
\citation{papi}
|
|
||||||
\citation{rapl}
|
|
||||||
\citation{kyber-avx2}
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {2.2}AVX2 SIMD on x86-64}{2}{subsection.2.2}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {2.3}Compilation Variants}{2}{subsection.2.3}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {2.4}Hardware Performance Counters and Energy}{2}{subsection.2.4}\protected@file@percent }
|
|
||||||
\newlabel{sec:bg:papi}{{2.4}{2}{Hardware Performance Counters and Energy}{subsection.2.4}{}}
|
|
||||||
\@writefile{tdo}{\contentsline {todo}{Phase 2: Expand with PAPI and RAPL background once data is collected.}{2}{section*.6}\protected@file@percent }
|
|
||||||
\pgfsyspdfmark {pgfid1}{20915651}{45096352}
|
|
||||||
\pgfsyspdfmark {pgfid4}{38210436}{45099302}
|
|
||||||
\pgfsyspdfmark {pgfid5}{38980483}{44906577}
|
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {3}Methodology}{2}{section.3}\protected@file@percent }
|
|
||||||
\newlabel{sec:methodology}{{3}{2}{Methodology}{section.3}{}}
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {3.1}Implementation Source}{2}{subsection.3.1}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {3.2}Compilation Variants}{2}{subsection.3.2}\protected@file@percent }
|
|
||||||
\newlabel{sec:meth:variants}{{3.2}{2}{Compilation Variants}{subsection.3.2}{}}
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3}Benchmark Harness}{2}{subsection.3.3}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {3.4}Hardware Platform}{2}{subsection.3.4}\protected@file@percent }
|
|
||||||
\@writefile{tdo}{\contentsline {todo}{Phase 2: Hardware counter collection via PAPI.}{3}{section*.7}\protected@file@percent }
|
|
||||||
\pgfsyspdfmark {pgfid6}{12703613}{37681124}
|
|
||||||
\pgfsyspdfmark {pgfid7}{2015231}{37684074}
|
|
||||||
\pgfsyspdfmark {pgfid8}{2785278}{37491349}
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {3.5}Statistical Methodology}{3}{subsection.3.5}\protected@file@percent }
|
|
||||||
\newlabel{sec:meth:stats}{{3.5}{3}{Statistical Methodology}{subsection.3.5}{}}
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {3.6}Energy Measurement}{3}{subsection.3.6}\protected@file@percent }
|
|
||||||
\newlabel{sec:meth:energy}{{3.6}{3}{Energy Measurement}{subsection.3.6}{}}
|
|
||||||
\@writefile{tdo}{\contentsline {todo}{Phase 2: Intel RAPL (pkg + DRAM domains), EDP computation, per-operation joules.}{3}{section*.8}\protected@file@percent }
|
|
||||||
\pgfsyspdfmark {pgfid11}{3538944}{24335452}
|
|
||||||
\pgfsyspdfmark {pgfid12}{2015231}{24338402}
|
|
||||||
\pgfsyspdfmark {pgfid13}{2785278}{24145677}
|
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {4}Results}{3}{section.4}\protected@file@percent }
|
|
||||||
\newlabel{sec:results}{{4}{3}{Results}{section.4}{}}
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {4.1}Cycle Count Distributions}{3}{subsection.4.1}\protected@file@percent }
|
|
||||||
\newlabel{sec:results:distributions}{{4.1}{3}{Cycle Count Distributions}{subsection.4.1}{}}
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {4.2}Speedup Decomposition}{3}{subsection.4.2}\protected@file@percent }
|
|
||||||
\newlabel{sec:results:decomp}{{4.2}{3}{Speedup Decomposition}{subsection.4.2}{}}
|
|
||||||
\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces Cycle count distributions for three representative ML-KEM-512 operations. Log $x$-axis. Dashed lines mark medians. Right-skew and outlier structure motivate nonparametric statistics.}}{3}{figure.caption.9}\protected@file@percent }
|
|
||||||
\providecommand*\caption@xref[2]{\@setref\relax\@undefined{#1}}
|
|
||||||
\newlabel{fig:distributions}{{1}{3}{Cycle count distributions for three representative \mlkemk {512} operations. Log $x$-axis. Dashed lines mark medians. Right-skew and outlier structure motivate nonparametric statistics}{figure.caption.9}{}}
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {4.3}Hand-Written SIMD Speedup}{3}{subsection.4.3}\protected@file@percent }
|
|
||||||
\newlabel{sec:results:simd}{{4.3}{3}{Hand-Written SIMD Speedup}{subsection.4.3}{}}
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {4.4}Statistical Significance}{3}{subsection.4.4}\protected@file@percent }
|
|
||||||
\newlabel{sec:results:stats}{{4.4}{3}{Statistical Significance}{subsection.4.4}{}}
|
|
||||||
\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces Cumulative speedup at each optimization stage, normalized to \texttt {refo0}{} (1×). Three bars per operation: \textcolor {colRefnv}{$\blacksquare $}\nonbreakingspace O3 no auto-vec, \textcolor {colRef}{$\blacksquare $}\nonbreakingspace O3 + auto-vec, \textcolor {colAvx}{$\blacksquare $}\nonbreakingspace O3 + hand SIMD (AVX2). Log $y$-axis; 95\% bootstrap CI shown on \texttt {avx2}{} bars. Sorted by \texttt {avx2}{} speedup.}}{4}{figure.caption.10}\protected@file@percent }
|
|
||||||
\newlabel{fig:decomp}{{2}{4}{Cumulative speedup at each optimization stage, normalized to \varrefo {} (1×). Three bars per operation: \textcolor {colRefnv}{$\blacksquare $}~O3 no auto-vec, \textcolor {colRef}{$\blacksquare $}~O3 + auto-vec, \textcolor {colAvx}{$\blacksquare $}~O3 + hand SIMD (AVX2). Log $y$-axis; 95\% bootstrap CI shown on \varavx {} bars. Sorted by \varavx {} speedup}{figure.caption.10}{}}
|
|
||||||
\@writefile{lof}{\contentsline {figure}{\numberline {3}{\ignorespaces Hand-written SIMD speedup (\texttt {ref}{} $\to $ \texttt {avx2}{}) per operation, across all three ML-KEM{} parameter sets. Log $y$-axis. 95\% bootstrap CI error bars (often sub-pixel). Sorted by ML-KEM-512 speedup.}}{4}{figure.caption.11}\protected@file@percent }
|
|
||||||
\newlabel{fig:handsimd}{{3}{4}{Hand-written SIMD speedup (\varref {} $\to $ \varavx {}) per operation, across all three \mlkem {} parameter sets. Log $y$-axis. 95\% bootstrap CI error bars (often sub-pixel). Sorted by \mlkemk {512} speedup}{figure.caption.11}{}}
|
|
||||||
\@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces Hand-written SIMD speedup (\texttt {ref}{} $\to $ \texttt {avx2}{}), median ratio with 95\% bootstrap CI. All Cliff's $\delta = +1.000$, $p < 10^{-300}$.}}{4}{table.caption.12}\protected@file@percent }
|
|
||||||
\newlabel{tab:simd}{{1}{4}{Hand-written SIMD speedup (\varref {} $\to $ \varavx {}), median ratio with 95\% bootstrap CI. All Cliff's $\delta = +1.000$, $p < 10^{-300}$}{table.caption.12}{}}
|
|
||||||
\@writefile{lof}{\contentsline {figure}{\numberline {4}{\ignorespaces Cliff's $\delta $ (\texttt {ref}{} vs.\ \texttt {avx2}{}) for all operations and parameter sets. $\delta = +1$: AVX2 is faster in every observation pair. Nearly all cells are at $+1.000$.}}{4}{figure.caption.13}\protected@file@percent }
|
|
||||||
\newlabel{fig:cliffs}{{4}{4}{Cliff's $\delta $ (\varref {} vs.\ \varavx {}) for all operations and parameter sets. $\delta = +1$: AVX2 is faster in every observation pair. Nearly all cells are at $+1.000$}{figure.caption.13}{}}
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {4.5}Cross-Parameter Consistency}{4}{subsection.4.5}\protected@file@percent }
|
|
||||||
\newlabel{sec:results:crossparams}{{4.5}{4}{Cross-Parameter Consistency}{subsection.4.5}{}}
|
|
||||||
\@writefile{lof}{\contentsline {figure}{\numberline {5}{\ignorespaces Per-polynomial operation speedup (\texttt {ref}{} $\to $ \texttt {avx2}{}) across security parameters. Polynomial dimension is 256 for all; variation reflects cache-state differences in the calling context.}}{5}{figure.caption.14}\protected@file@percent }
|
|
||||||
\newlabel{fig:crossparams}{{5}{5}{Per-polynomial operation speedup (\varref {} $\to $ \varavx {}) across security parameters. Polynomial dimension is 256 for all; variation reflects cache-state differences in the calling context}{figure.caption.14}{}}
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {4.6}Hardware Counter Breakdown}{5}{subsection.4.6}\protected@file@percent }
|
|
||||||
\newlabel{sec:results:papi}{{4.6}{5}{Hardware Counter Breakdown}{subsection.4.6}{}}
|
|
||||||
\@writefile{tdo}{\contentsline {todo}{Phase 2: IPC, L1/L2/L3 cache miss rates, branch mispredictions via PAPI. This section will contain bar charts of per-counter values comparing ref and avx2 for each operation, explaining the mechanistic origins of the speedup.}{5}{section*.15}\protected@file@percent }
|
|
||||||
\pgfsyspdfmark {pgfid264}{3538944}{21389118}
|
|
||||||
\pgfsyspdfmark {pgfid265}{2015231}{21392068}
|
|
||||||
\pgfsyspdfmark {pgfid266}{2785278}{21199343}
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {4.7}Energy Efficiency}{5}{subsection.4.7}\protected@file@percent }
|
|
||||||
\newlabel{sec:results:energy}{{4.7}{5}{Energy Efficiency}{subsection.4.7}{}}
|
|
||||||
\@writefile{tdo}{\contentsline {todo}{Phase 2: Intel RAPL pkg + DRAM energy readings per operation. EDP (energy-delay product) comparison. Energy per KEM operation.}{5}{section*.16}\protected@file@percent }
|
|
||||||
\pgfsyspdfmark {pgfid269}{3538944}{19496559}
|
|
||||||
\pgfsyspdfmark {pgfid270}{2015231}{-14840343}
|
|
||||||
\pgfsyspdfmark {pgfid271}{2785278}{-15033068}
|
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {5}Discussion}{5}{section.5}\protected@file@percent }
|
|
||||||
\newlabel{sec:discussion}{{5}{5}{Discussion}{section.5}{}}
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {5.1}Why Arithmetic Operations Benefit Most}{5}{subsection.5.1}\protected@file@percent }
|
|
||||||
\@writefile{tdo}{\contentsline {todo}{Phase 2: Confirm with IPC and port utilisation counters.}{5}{section*.17}\protected@file@percent }
|
|
||||||
\pgfsyspdfmark {pgfid274}{13184317}{5758368}
|
|
||||||
\pgfsyspdfmark {pgfid275}{2015231}{-36522418}
|
|
||||||
\pgfsyspdfmark {pgfid276}{2785278}{-36715143}
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {5.2}Why the Compiler Cannot Auto-Vectorise NTT}{5}{subsection.5.2}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {5.3}Why SHAKE Operations Benefit Less}{5}{subsection.5.3}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {5.4}Why Noise Sampling Barely Benefits}{5}{subsection.5.4}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {5.5}NTT Cache-State Variation Across Parameter Sets}{5}{subsection.5.5}\protected@file@percent }
|
|
||||||
\@writefile{tdo}{\contentsline {todo}{Phase 2: Verify with L1/L2 miss counters split by scalar vs AVX2.}{5}{section*.18}\protected@file@percent }
|
|
||||||
\pgfsyspdfmark {pgfid279}{25927376}{9612704}
|
|
||||||
\pgfsyspdfmark {pgfid282}{38210436}{9615654}
|
|
||||||
\pgfsyspdfmark {pgfid283}{38980483}{9422929}
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {5.6}Implications for Deployment}{5}{subsection.5.6}\protected@file@percent }
|
|
||||||
\citation{kyber-avx2}
|
|
||||||
\citation{pqclean}
|
|
||||||
\citation{kyber2018}
|
|
||||||
\citation{fips203}
|
|
||||||
\citation{pqm4}
|
|
||||||
\citation{supercop}
|
|
||||||
\citation{pqm4}
|
|
||||||
\citation{gueron2014}
|
|
||||||
\citation{bernstein2006}
|
|
||||||
\citation{ntt-survey}
|
|
||||||
\citation{cachetime}
|
|
||||||
\citation{papi}
|
|
||||||
\bibstyle{ACM-Reference-Format}
|
|
||||||
\bibdata{refs}
|
|
||||||
\bibcite{bernstein2006}{{1}{2006}{{Bernstein}}{{}}}
|
|
||||||
\bibcite{supercop}{{2}{[n.\,d.]}{{Bernstein and Lange}}{{}}}
|
|
||||||
\bibcite{cachetime}{{3}{2008}{{Bernstein and Schwabe}}{{}}}
|
|
||||||
\bibcite{kyber2018}{{4}{2018}{{Bos et~al\mbox {.}}}{{}}}
|
|
||||||
\bibcite{rapl}{{5}{2010}{{David et~al\mbox {.}}}{{}}}
|
|
||||||
\bibcite{bettini2024}{{6}{2023}{{Google Security Blog}}{{}}}
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {5.7}Limitations}{6}{subsection.5.7}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {paragraph}{No hardware counter data (Phase\nonbreakingspace 1).}{6}{section*.19}\protected@file@percent }
|
|
||||||
\@writefile{tdo}{\contentsline {todo}{Phase 2: PAPI counters: IPC, cache miss rates.}{6}{section*.20}\protected@file@percent }
|
|
||||||
\pgfsyspdfmark {pgfid284}{16379392}{38731168}
|
|
||||||
\pgfsyspdfmark {pgfid285}{2015231}{38734118}
|
|
||||||
\pgfsyspdfmark {pgfid286}{2785278}{38541393}
|
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Single microarchitecture.}{6}{section*.21}\protected@file@percent }
|
|
||||||
\@writefile{tdo}{\contentsline {todo}{Phase 3: Repeat on AMD Zen, ARM Graviton3, RISC-V.}{6}{section*.22}\protected@file@percent }
|
|
||||||
\pgfsyspdfmark {pgfid289}{6791818}{34708896}
|
|
||||||
\pgfsyspdfmark {pgfid290}{2015231}{32453210}
|
|
||||||
\pgfsyspdfmark {pgfid291}{2785278}{32260485}
|
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Frequency scaling.}{6}{section*.23}\protected@file@percent }
|
|
||||||
\@writefile{tdo}{\contentsline {todo}{Phase 2: Characterize frequency during benchmarks; consider RAPL-normalized cycle counts.}{6}{section*.24}\protected@file@percent }
|
|
||||||
\pgfsyspdfmark {pgfid294}{6161296}{30686624}
|
|
||||||
\pgfsyspdfmark {pgfid295}{2015231}{24009614}
|
|
||||||
\pgfsyspdfmark {pgfid296}{2785278}{23816889}
|
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {6}Related Work}{6}{section.6}\protected@file@percent }
|
|
||||||
\newlabel{sec:related}{{6}{6}{Related Work}{section.6}{}}
|
|
||||||
\@writefile{toc}{\contentsline {paragraph}{ML-KEM / Kyber implementations.}{6}{section*.25}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {paragraph}{PQC benchmarking.}{6}{section*.26}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {paragraph}{SIMD in cryptography.}{6}{section*.27}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {paragraph}{NTT optimization.}{6}{section*.28}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Hardware counter profiling.}{6}{section*.29}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {7}Conclusion}{6}{section.7}\protected@file@percent }
|
|
||||||
\newlabel{sec:conclusion}{{7}{6}{Conclusion}{section.7}{}}
|
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Future work.}{6}{section*.30}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Artifact.}{6}{section*.31}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {section}{References}{6}{section*.33}\protected@file@percent }
|
|
||||||
\bibcite{gueron2014}{{7}{2013}{{Gueron and Krasnov}}{{}}}
|
|
||||||
\bibcite{papi}{{8}{[n.\,d.]}{{Innovative Computing Laboratory, University of Tennessee}}{{}}}
|
|
||||||
\bibcite{pqm4}{{9}{[n.\,d.]}{{Kannwischer et~al\mbox {.}}}{{}}}
|
|
||||||
\bibcite{ntt-survey}{{10}{2016}{{Longa and Naehrig}}{{}}}
|
|
||||||
\bibcite{fips204}{{11}{2024a}{{National Institute of Standards and Technology}}{{}}}
|
|
||||||
\bibcite{fips203}{{12}{2024b}{{National Institute of Standards and Technology}}{{}}}
|
|
||||||
\bibcite{fips205}{{13}{2024c}{{National Institute of Standards and Technology}}{{}}}
|
|
||||||
\bibcite{pqclean}{{14}{[n.\,d.]}{{PQClean Contributors}}{{}}}
|
|
||||||
\bibcite{kyber-avx2}{{15}{[n.\,d.]}{{Schwabe and Seiler}}{{}}}
|
|
||||||
\newlabel{tocindent-1}{0pt}
|
|
||||||
\newlabel{tocindent0}{0pt}
|
|
||||||
\newlabel{tocindent1}{6.25499pt}
|
|
||||||
\newlabel{tocindent2}{10.34999pt}
|
|
||||||
\newlabel{tocindent3}{0pt}
|
|
||||||
\newlabel{tocindent4}{0pt}
|
|
||||||
\newlabel{tocindent5}{0pt}
|
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {A}End-to-End KEM Speedup}{7}{appendix.A}\protected@file@percent }
|
|
||||||
\newlabel{sec:supp:kem}{{A}{7}{End-to-End KEM Speedup}{appendix.A}{}}
|
|
||||||
\@writefile{lof}{\contentsline {figure}{\numberline {6}{\ignorespaces End-to-end KEM speedup (\texttt {ref}{} $\to $ \texttt {avx2}{}) for \texttt {kyber\_keypair}, \texttt {kyber\_encaps}, and \texttt {kyber\_decaps}. Intel Xeon Platinum 8268; 95\% bootstrap CI.}}{7}{figure.caption.34}\protected@file@percent }
|
|
||||||
\newlabel{fig:kemlevel}{{6}{7}{End-to-end KEM speedup (\varref {} $\to $ \varavx {}) for \op {kyber\_keypair}, \op {kyber\_encaps}, and \op {kyber\_decaps}. Intel Xeon Platinum 8268; 95\% bootstrap CI}{figure.caption.34}{}}
|
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {B}Full Operation Set}{7}{appendix.B}\protected@file@percent }
|
|
||||||
\newlabel{sec:supp:fullops}{{B}{7}{Full Operation Set}{appendix.B}{}}
|
|
||||||
\@writefile{tdo}{\contentsline {todo}{Full operation speedup table for all 20 benchmarked operations, including \texttt {poly\_compress}, \texttt {poly\_decompress}, \texttt {polyvec\_compress}, \texttt {poly\_tomsg}, and the \texttt {*\_derand} KEM variants.}{7}{section*.35}\protected@file@percent }
|
|
||||||
\pgfsyspdfmark {pgfid319}{28801187}{27830541}
|
|
||||||
\newlabel{TotPages}{{7}{7}{}{page.7}{}}
|
|
||||||
\gdef \@abspage@last{7}
|
|
||||||
237
paper/main.bbl
237
paper/main.bbl
|
|
@ -1,237 +0,0 @@
|
||||||
%%% -*-BibTeX-*-
|
|
||||||
%%% Do NOT edit. File created by BibTeX with style
|
|
||||||
%%% ACM-Reference-Format-Journals [18-Jan-2012].
|
|
||||||
|
|
||||||
\begin{thebibliography}{15}
|
|
||||||
|
|
||||||
%%% ====================================================================
|
|
||||||
%%% NOTE TO THE USER: you can override these defaults by providing
|
|
||||||
%%% customized versions of any of these macros before the \bibliography
|
|
||||||
%%% command. Each of them MUST provide its own final punctuation,
|
|
||||||
%%% except for \shownote{} and \showURL{}. The latter two
|
|
||||||
%%% do not use final punctuation, in order to avoid confusing it with
|
|
||||||
%%% the Web address.
|
|
||||||
%%%
|
|
||||||
%%% To suppress output of a particular field, define its macro to expand
|
|
||||||
%%% to an empty string, or better, \unskip, like this:
|
|
||||||
%%%
|
|
||||||
%%% \newcommand{\showURL}[1]{\unskip} % LaTeX syntax
|
|
||||||
%%%
|
|
||||||
%%% \def \showURL #1{\unskip} % plain TeX syntax
|
|
||||||
%%%
|
|
||||||
%%% ====================================================================
|
|
||||||
|
|
||||||
\ifx \showCODEN \undefined \def \showCODEN #1{\unskip} \fi
|
|
||||||
\ifx \showISBNx \undefined \def \showISBNx #1{\unskip} \fi
|
|
||||||
\ifx \showISBNxiii \undefined \def \showISBNxiii #1{\unskip} \fi
|
|
||||||
\ifx \showISSN \undefined \def \showISSN #1{\unskip} \fi
|
|
||||||
\ifx \showLCCN \undefined \def \showLCCN #1{\unskip} \fi
|
|
||||||
\ifx \shownote \undefined \def \shownote #1{#1} \fi
|
|
||||||
\ifx \showarticletitle \undefined \def \showarticletitle #1{#1} \fi
|
|
||||||
\ifx \showURL \undefined \def \showURL {\relax} \fi
|
|
||||||
% The following commands are used for tagged output and should be
|
|
||||||
% invisible to TeX
|
|
||||||
\providecommand\bibfield[2]{#2}
|
|
||||||
\providecommand\bibinfo[2]{#2}
|
|
||||||
\providecommand\natexlab[1]{#1}
|
|
||||||
\providecommand\showeprint[2][]{arXiv:#2}
|
|
||||||
|
|
||||||
\bibitem[Bernstein(2006)]%
|
|
||||||
{bernstein2006}
|
|
||||||
\bibfield{author}{\bibinfo{person}{Daniel~J. Bernstein}.}
|
|
||||||
\bibinfo{year}{2006}\natexlab{}.
|
|
||||||
\newblock \bibinfo{title}{{Curve25519: new Diffie-Hellman speed records}}.
|
|
||||||
\newblock
|
|
||||||
\urldef\tempurl%
|
|
||||||
\url{https://cr.yp.to/ecdh.html}
|
|
||||||
\showURL{%
|
|
||||||
\tempurl}
|
|
||||||
|
|
||||||
|
|
||||||
\bibitem[Bernstein and Lange({[n.\,d.]})]%
|
|
||||||
{supercop}
|
|
||||||
\bibfield{author}{\bibinfo{person}{Daniel~J. Bernstein} {and}
|
|
||||||
\bibinfo{person}{Tanja Lange}.} \bibinfo{year}{[n.\,d.]}\natexlab{}.
|
|
||||||
\newblock \bibinfo{title}{{SUPERCOP: System for Unified Performance Evaluation
|
|
||||||
Related to Cryptographic Operations and Primitives}}.
|
|
||||||
\newblock
|
|
||||||
\urldef\tempurl%
|
|
||||||
\url{https://bench.cr.yp.to/supercop.html}
|
|
||||||
\showURL{%
|
|
||||||
\tempurl}
|
|
||||||
|
|
||||||
|
|
||||||
\bibitem[Bernstein and Schwabe(2008)]%
|
|
||||||
{cachetime}
|
|
||||||
\bibfield{author}{\bibinfo{person}{Daniel~J. Bernstein} {and}
|
|
||||||
\bibinfo{person}{Peter Schwabe}.} \bibinfo{year}{2008}\natexlab{}.
|
|
||||||
\newblock \bibinfo{title}{{New AES Software Speed Records}}.
|
|
||||||
\newblock
|
|
||||||
\urldef\tempurl%
|
|
||||||
\url{https://cr.yp.to/aes-speed.html}
|
|
||||||
\showURL{%
|
|
||||||
\tempurl}
|
|
||||||
|
|
||||||
|
|
||||||
\bibitem[Bos et~al\mbox{.}(2018)]%
|
|
||||||
{kyber2018}
|
|
||||||
\bibfield{author}{\bibinfo{person}{Joppe~W. Bos}, \bibinfo{person}{Léo Ducas},
|
|
||||||
\bibinfo{person}{Eike Kiltz}, \bibinfo{person}{Tancrède Lepoint},
|
|
||||||
\bibinfo{person}{Vadim Lyubashevsky}, \bibinfo{person}{John~M. Schanck},
|
|
||||||
\bibinfo{person}{Peter Schwabe}, \bibinfo{person}{Gregor Seiler}, {and}
|
|
||||||
\bibinfo{person}{Damien Stehlé}.} \bibinfo{year}{2018}\natexlab{}.
|
|
||||||
\newblock \showarticletitle{{CRYSTALS -- Kyber: A CCA-Secure
|
|
||||||
Module-Lattice-Based KEM}}. In \bibinfo{booktitle}{\emph{IEEE European
|
|
||||||
Symposium on Security and Privacy (EuroS\&P)}}. \bibinfo{pages}{353--367}.
|
|
||||||
\newblock
|
|
||||||
\href{https://doi.org/10.1109/EuroSP.2018.00032}{doi:\nolinkurl{10.1109/EuroSP.2018.00032}}
|
|
||||||
|
|
||||||
|
|
||||||
\bibitem[David et~al\mbox{.}(2010)]%
|
|
||||||
{rapl}
|
|
||||||
\bibfield{author}{\bibinfo{person}{Howard David}, \bibinfo{person}{Eugene
|
|
||||||
Gorbatov}, \bibinfo{person}{Ulf~R. Hanebutte}, \bibinfo{person}{Rahul
|
|
||||||
Khanna}, {and} \bibinfo{person}{Christian Le}.}
|
|
||||||
\bibinfo{year}{2010}\natexlab{}.
|
|
||||||
\newblock \showarticletitle{{RAPL: Memory Power Estimation and Capping}}. In
|
|
||||||
\bibinfo{booktitle}{\emph{ISLPED}}.
|
|
||||||
\newblock
|
|
||||||
\href{https://doi.org/10.1145/1840845.1840883}{doi:\nolinkurl{10.1145/1840845.1840883}}
|
|
||||||
|
|
||||||
|
|
||||||
\bibitem[{Google Security Blog}(2023)]%
|
|
||||||
{bettini2024}
|
|
||||||
\bibfield{author}{\bibinfo{person}{{Google Security Blog}}.}
|
|
||||||
\bibinfo{year}{2023}\natexlab{}.
|
|
||||||
\newblock \bibinfo{title}{{Protecting Chrome Traffic with Hybrid Kyber KEM}}.
|
|
||||||
\newblock
|
|
||||||
\urldef\tempurl%
|
|
||||||
\url{https://security.googleblog.com/2023/08/protecting-chrome-traffic-with-hybrid.html}
|
|
||||||
\showURL{%
|
|
||||||
\tempurl}
|
|
||||||
|
|
||||||
|
|
||||||
\bibitem[Gueron and Krasnov(2013)]%
|
|
||||||
{gueron2014}
|
|
||||||
\bibfield{author}{\bibinfo{person}{Shay Gueron} {and} \bibinfo{person}{Vlad
|
|
||||||
Krasnov}.} \bibinfo{year}{2013}\natexlab{}.
|
|
||||||
\newblock \showarticletitle{{Fast Garbling of Circuits Under Standard
|
|
||||||
Assumptions}}. In \bibinfo{booktitle}{\emph{ACM CCS}}.
|
|
||||||
\newblock
|
|
||||||
\newblock
|
|
||||||
\shownote{See also: Intel white paper on AES-GCM with AVX2}.
|
|
||||||
|
|
||||||
|
|
||||||
\bibitem[{Innovative Computing Laboratory, University of
|
|
||||||
Tennessee}({[n.\,d.]})]%
|
|
||||||
{papi}
|
|
||||||
\bibfield{author}{\bibinfo{person}{{Innovative Computing Laboratory, University
|
|
||||||
of Tennessee}}.} \bibinfo{year}{[n.\,d.]}\natexlab{}.
|
|
||||||
\newblock \bibinfo{title}{{PAPI: Performance Application Programming
|
|
||||||
Interface}}.
|
|
||||||
\newblock
|
|
||||||
\urldef\tempurl%
|
|
||||||
\url{https://icl.utk.edu/papi/}
|
|
||||||
\showURL{%
|
|
||||||
\tempurl}
|
|
||||||
|
|
||||||
|
|
||||||
\bibitem[Kannwischer et~al\mbox{.}({[n.\,d.]})]%
|
|
||||||
{pqm4}
|
|
||||||
\bibfield{author}{\bibinfo{person}{Matthias~J. Kannwischer},
|
|
||||||
\bibinfo{person}{Joost Rijneveld}, \bibinfo{person}{Peter Schwabe}, {and}
|
|
||||||
\bibinfo{person}{Ko Stoffelen}.} \bibinfo{year}{[n.\,d.]}\natexlab{}.
|
|
||||||
\newblock \bibinfo{title}{{pqm4: Post-quantum crypto library for the ARM
|
|
||||||
Cortex-M4}}.
|
|
||||||
\newblock
|
|
||||||
\urldef\tempurl%
|
|
||||||
\url{https://github.com/mupq/pqm4}
|
|
||||||
\showURL{%
|
|
||||||
\tempurl}
|
|
||||||
|
|
||||||
|
|
||||||
\bibitem[Longa and Naehrig(2016)]%
|
|
||||||
{ntt-survey}
|
|
||||||
\bibfield{author}{\bibinfo{person}{Patrick Longa} {and}
|
|
||||||
\bibinfo{person}{Michael Naehrig}.} \bibinfo{year}{2016}\natexlab{}.
|
|
||||||
\newblock \showarticletitle{{Speeding Up the Number Theoretic Transform for
|
|
||||||
Faster Ideal Lattice-Based Cryptography}}. In
|
|
||||||
\bibinfo{booktitle}{\emph{CANS}}.
|
|
||||||
\newblock
|
|
||||||
\href{https://doi.org/10.1007/978-3-319-48965-0_8}{doi:\nolinkurl{10.1007/978-3-319-48965-0_8}}
|
|
||||||
|
|
||||||
|
|
||||||
\bibitem[{National Institute of Standards and Technology}(2024a)]%
|
|
||||||
{fips204}
|
|
||||||
\bibfield{author}{\bibinfo{person}{{National Institute of Standards and
|
|
||||||
Technology}}.} \bibinfo{year}{2024}\natexlab{a}.
|
|
||||||
\newblock \bibinfo{booktitle}{\emph{{Module-Lattice-Based Digital Signature
|
|
||||||
Standard}}}.
|
|
||||||
\newblock \bibinfo{type}{{T}echnical {R}eport} FIPS 204.
|
|
||||||
\bibinfo{institution}{NIST}.
|
|
||||||
\newblock
|
|
||||||
\urldef\tempurl%
|
|
||||||
\url{https://doi.org/10.6028/NIST.FIPS.204}
|
|
||||||
\showURL{%
|
|
||||||
\tempurl}
|
|
||||||
|
|
||||||
|
|
||||||
\bibitem[{National Institute of Standards and Technology}(2024b)]%
|
|
||||||
{fips203}
|
|
||||||
\bibfield{author}{\bibinfo{person}{{National Institute of Standards and
|
|
||||||
Technology}}.} \bibinfo{year}{2024}\natexlab{b}.
|
|
||||||
\newblock \bibinfo{booktitle}{\emph{{Module-Lattice-Based Key-Encapsulation
|
|
||||||
Mechanism Standard}}}.
|
|
||||||
\newblock \bibinfo{type}{{T}echnical {R}eport} FIPS 203.
|
|
||||||
\bibinfo{institution}{NIST}.
|
|
||||||
\newblock
|
|
||||||
\urldef\tempurl%
|
|
||||||
\url{https://doi.org/10.6028/NIST.FIPS.203}
|
|
||||||
\showURL{%
|
|
||||||
\tempurl}
|
|
||||||
|
|
||||||
|
|
||||||
\bibitem[{National Institute of Standards and Technology}(2024c)]%
|
|
||||||
{fips205}
|
|
||||||
\bibfield{author}{\bibinfo{person}{{National Institute of Standards and
|
|
||||||
Technology}}.} \bibinfo{year}{2024}\natexlab{c}.
|
|
||||||
\newblock \bibinfo{booktitle}{\emph{{Stateless Hash-Based Digital Signature
|
|
||||||
Standard}}}.
|
|
||||||
\newblock \bibinfo{type}{{T}echnical {R}eport} FIPS 205.
|
|
||||||
\bibinfo{institution}{NIST}.
|
|
||||||
\newblock
|
|
||||||
\urldef\tempurl%
|
|
||||||
\url{https://doi.org/10.6028/NIST.FIPS.205}
|
|
||||||
\showURL{%
|
|
||||||
\tempurl}
|
|
||||||
|
|
||||||
|
|
||||||
\bibitem[{PQClean Contributors}({[n.\,d.]})]%
|
|
||||||
{pqclean}
|
|
||||||
\bibfield{author}{\bibinfo{person}{{PQClean Contributors}}.}
|
|
||||||
\bibinfo{year}{[n.\,d.]}\natexlab{}.
|
|
||||||
\newblock \bibinfo{title}{{PQClean: Clean, portable, tested implementations of
|
|
||||||
post-quantum cryptography}}.
|
|
||||||
\newblock
|
|
||||||
\urldef\tempurl%
|
|
||||||
\url{https://github.com/PQClean/PQClean}
|
|
||||||
\showURL{%
|
|
||||||
\tempurl}
|
|
||||||
|
|
||||||
|
|
||||||
\bibitem[Schwabe and Seiler({[n.\,d.]})]%
|
|
||||||
{kyber-avx2}
|
|
||||||
\bibfield{author}{\bibinfo{person}{Peter Schwabe} {and} \bibinfo{person}{Gregor
|
|
||||||
Seiler}.} \bibinfo{year}{[n.\,d.]}\natexlab{}.
|
|
||||||
\newblock \bibinfo{title}{{Better Bootstrapping in Fully Homomorphic
|
|
||||||
Encryption}}.
|
|
||||||
\newblock
|
|
||||||
\urldef\tempurl%
|
|
||||||
\url{https://github.com/pq-crystals/kyber}
|
|
||||||
\showURL{%
|
|
||||||
\tempurl}
|
|
||||||
\newblock
|
|
||||||
\shownote{AVX2 implementation in the pqclean project}.
|
|
||||||
|
|
||||||
|
|
||||||
\end{thebibliography}
|
|
||||||
|
|
@ -1,77 +0,0 @@
|
||||||
This is BibTeX, Version 0.99e (TeX Live 2026/Arch Linux)
|
|
||||||
Capacity: max_strings=200000, hash_size=200000, hash_prime=170003
|
|
||||||
The top-level auxiliary file: main.aux
|
|
||||||
The style file: ACM-Reference-Format.bst
|
|
||||||
Reallocated singl_function (elt_size=8) to 100 items from 50.
|
|
||||||
Reallocated singl_function (elt_size=8) to 100 items from 50.
|
|
||||||
Reallocated wiz_functions (elt_size=8) to 6000 items from 3000.
|
|
||||||
Database file #1: refs.bib
|
|
||||||
Reallocated singl_function (elt_size=8) to 100 items from 50.
|
|
||||||
Reallocated wiz_functions (elt_size=8) to 9000 items from 6000.
|
|
||||||
Reallocated glb_str_ptr (elt_size=8) to 20 items from 10.
|
|
||||||
Reallocated global_strs (elt_size=200001) to 20 items from 10.
|
|
||||||
Reallocated glb_str_end (elt_size=8) to 20 items from 10.
|
|
||||||
Reallocated singl_function (elt_size=8) to 100 items from 50.
|
|
||||||
Warning--empty year in supercop
|
|
||||||
Warning--using n.d. in supercop
|
|
||||||
Warning--empty publisher in kyber2018
|
|
||||||
Warning--empty address in kyber2018
|
|
||||||
Warning--empty publisher in rapl
|
|
||||||
Warning--empty address in rapl
|
|
||||||
Warning--page numbers missing in both pages and numpages fields in rapl
|
|
||||||
Warning--empty publisher in gueron2014
|
|
||||||
Warning--empty address in gueron2014
|
|
||||||
Warning--page numbers missing in both pages and numpages fields in gueron2014
|
|
||||||
Warning--empty year in papi
|
|
||||||
Warning--using n.d. in papi
|
|
||||||
Warning--empty year in pqm4
|
|
||||||
Warning--using n.d. in pqm4
|
|
||||||
Warning--empty publisher in ntt-survey
|
|
||||||
Warning--empty address in ntt-survey
|
|
||||||
Warning--page numbers missing in both pages and numpages fields in ntt-survey
|
|
||||||
Warning--empty year in pqclean
|
|
||||||
Warning--using n.d. in pqclean
|
|
||||||
Warning--empty year in kyber-avx2
|
|
||||||
Warning--using n.d. in kyber-avx2
|
|
||||||
You've used 15 entries,
|
|
||||||
6273 wiz_defined-function locations,
|
|
||||||
1592 strings with 20522 characters,
|
|
||||||
and the built_in function-call counts, 12963 in all, are:
|
|
||||||
= -- 1307
|
|
||||||
> -- 435
|
|
||||||
< -- 3
|
|
||||||
+ -- 142
|
|
||||||
- -- 171
|
|
||||||
* -- 881
|
|
||||||
:= -- 1393
|
|
||||||
add.period$ -- 69
|
|
||||||
call.type$ -- 15
|
|
||||||
change.case$ -- 95
|
|
||||||
chr.to.int$ -- 13
|
|
||||||
cite$ -- 36
|
|
||||||
duplicate$ -- 1181
|
|
||||||
empty$ -- 859
|
|
||||||
format.name$ -- 203
|
|
||||||
if$ -- 2909
|
|
||||||
int.to.chr$ -- 4
|
|
||||||
int.to.str$ -- 1
|
|
||||||
missing$ -- 20
|
|
||||||
newline$ -- 198
|
|
||||||
num.names$ -- 103
|
|
||||||
pop$ -- 587
|
|
||||||
preamble$ -- 1
|
|
||||||
purify$ -- 186
|
|
||||||
quote$ -- 0
|
|
||||||
skip$ -- 444
|
|
||||||
stack$ -- 0
|
|
||||||
substring$ -- 727
|
|
||||||
swap$ -- 81
|
|
||||||
text.length$ -- 3
|
|
||||||
text.prefix$ -- 0
|
|
||||||
top$ -- 0
|
|
||||||
type$ -- 438
|
|
||||||
warning$ -- 21
|
|
||||||
while$ -- 94
|
|
||||||
width$ -- 0
|
|
||||||
write$ -- 343
|
|
||||||
(There were 21 warnings)
|
|
||||||
2416
paper/main.log
2416
paper/main.log
File diff suppressed because it is too large
Load Diff
|
|
@ -1,35 +0,0 @@
|
||||||
\BOOKMARK [1][-]{section*.1}{\376\377\000A\000b\000s\000t\000r\000a\000c\000t}{}% 1
|
|
||||||
\BOOKMARK [1][-]{section.1}{\376\377\0001\000\040\000I\000n\000t\000r\000o\000d\000u\000c\000t\000i\000o\000n}{}% 2
|
|
||||||
\BOOKMARK [1][-]{section.2}{\376\377\0002\000\040\000B\000a\000c\000k\000g\000r\000o\000u\000n\000d}{}% 3
|
|
||||||
\BOOKMARK [2][-]{subsection.2.1}{\376\377\0002\000.\0001\000\040\000M\000L\000-\000K\000E\000M\000\040\000a\000n\000d\000\040\000t\000h\000e\000\040\000N\000u\000m\000b\000e\000r\000\040\000T\000h\000e\000o\000r\000e\000t\000i\000c\000\040\000T\000r\000a\000n\000s\000f\000o\000r\000m}{section.2}% 4
|
|
||||||
\BOOKMARK [2][-]{subsection.2.2}{\376\377\0002\000.\0002\000\040\000A\000V\000X\0002\000\040\000S\000I\000M\000D\000\040\000o\000n\000\040\000x\0008\0006\000-\0006\0004}{section.2}% 5
|
|
||||||
\BOOKMARK [2][-]{subsection.2.3}{\376\377\0002\000.\0003\000\040\000C\000o\000m\000p\000i\000l\000a\000t\000i\000o\000n\000\040\000V\000a\000r\000i\000a\000n\000t\000s}{section.2}% 6
|
|
||||||
\BOOKMARK [2][-]{subsection.2.4}{\376\377\0002\000.\0004\000\040\000H\000a\000r\000d\000w\000a\000r\000e\000\040\000P\000e\000r\000f\000o\000r\000m\000a\000n\000c\000e\000\040\000C\000o\000u\000n\000t\000e\000r\000s\000\040\000a\000n\000d\000\040\000E\000n\000e\000r\000g\000y}{section.2}% 7
|
|
||||||
\BOOKMARK [1][-]{section.3}{\376\377\0003\000\040\000M\000e\000t\000h\000o\000d\000o\000l\000o\000g\000y}{}% 8
|
|
||||||
\BOOKMARK [2][-]{subsection.3.1}{\376\377\0003\000.\0001\000\040\000I\000m\000p\000l\000e\000m\000e\000n\000t\000a\000t\000i\000o\000n\000\040\000S\000o\000u\000r\000c\000e}{section.3}% 9
|
|
||||||
\BOOKMARK [2][-]{subsection.3.2}{\376\377\0003\000.\0002\000\040\000C\000o\000m\000p\000i\000l\000a\000t\000i\000o\000n\000\040\000V\000a\000r\000i\000a\000n\000t\000s}{section.3}% 10
|
|
||||||
\BOOKMARK [2][-]{subsection.3.3}{\376\377\0003\000.\0003\000\040\000B\000e\000n\000c\000h\000m\000a\000r\000k\000\040\000H\000a\000r\000n\000e\000s\000s}{section.3}% 11
|
|
||||||
\BOOKMARK [2][-]{subsection.3.4}{\376\377\0003\000.\0004\000\040\000H\000a\000r\000d\000w\000a\000r\000e\000\040\000P\000l\000a\000t\000f\000o\000r\000m}{section.3}% 12
|
|
||||||
\BOOKMARK [2][-]{subsection.3.5}{\376\377\0003\000.\0005\000\040\000S\000t\000a\000t\000i\000s\000t\000i\000c\000a\000l\000\040\000M\000e\000t\000h\000o\000d\000o\000l\000o\000g\000y}{section.3}% 13
|
|
||||||
\BOOKMARK [2][-]{subsection.3.6}{\376\377\0003\000.\0006\000\040\000E\000n\000e\000r\000g\000y\000\040\000M\000e\000a\000s\000u\000r\000e\000m\000e\000n\000t}{section.3}% 14
|
|
||||||
\BOOKMARK [1][-]{section.4}{\376\377\0004\000\040\000R\000e\000s\000u\000l\000t\000s}{}% 15
|
|
||||||
\BOOKMARK [2][-]{subsection.4.1}{\376\377\0004\000.\0001\000\040\000C\000y\000c\000l\000e\000\040\000C\000o\000u\000n\000t\000\040\000D\000i\000s\000t\000r\000i\000b\000u\000t\000i\000o\000n\000s}{section.4}% 16
|
|
||||||
\BOOKMARK [2][-]{subsection.4.2}{\376\377\0004\000.\0002\000\040\000S\000p\000e\000e\000d\000u\000p\000\040\000D\000e\000c\000o\000m\000p\000o\000s\000i\000t\000i\000o\000n}{section.4}% 17
|
|
||||||
\BOOKMARK [2][-]{subsection.4.3}{\376\377\0004\000.\0003\000\040\000H\000a\000n\000d\000-\000W\000r\000i\000t\000t\000e\000n\000\040\000S\000I\000M\000D\000\040\000S\000p\000e\000e\000d\000u\000p}{section.4}% 18
|
|
||||||
\BOOKMARK [2][-]{subsection.4.4}{\376\377\0004\000.\0004\000\040\000S\000t\000a\000t\000i\000s\000t\000i\000c\000a\000l\000\040\000S\000i\000g\000n\000i\000f\000i\000c\000a\000n\000c\000e}{section.4}% 19
|
|
||||||
\BOOKMARK [2][-]{subsection.4.5}{\376\377\0004\000.\0005\000\040\000C\000r\000o\000s\000s\000-\000P\000a\000r\000a\000m\000e\000t\000e\000r\000\040\000C\000o\000n\000s\000i\000s\000t\000e\000n\000c\000y}{section.4}% 20
|
|
||||||
\BOOKMARK [2][-]{subsection.4.6}{\376\377\0004\000.\0006\000\040\000H\000a\000r\000d\000w\000a\000r\000e\000\040\000C\000o\000u\000n\000t\000e\000r\000\040\000B\000r\000e\000a\000k\000d\000o\000w\000n}{section.4}% 21
|
|
||||||
\BOOKMARK [2][-]{subsection.4.7}{\376\377\0004\000.\0007\000\040\000E\000n\000e\000r\000g\000y\000\040\000E\000f\000f\000i\000c\000i\000e\000n\000c\000y}{section.4}% 22
|
|
||||||
\BOOKMARK [1][-]{section.5}{\376\377\0005\000\040\000D\000i\000s\000c\000u\000s\000s\000i\000o\000n}{}% 23
|
|
||||||
\BOOKMARK [2][-]{subsection.5.1}{\376\377\0005\000.\0001\000\040\000W\000h\000y\000\040\000A\000r\000i\000t\000h\000m\000e\000t\000i\000c\000\040\000O\000p\000e\000r\000a\000t\000i\000o\000n\000s\000\040\000B\000e\000n\000e\000f\000i\000t\000\040\000M\000o\000s\000t}{section.5}% 24
|
|
||||||
\BOOKMARK [2][-]{subsection.5.2}{\376\377\0005\000.\0002\000\040\000W\000h\000y\000\040\000t\000h\000e\000\040\000C\000o\000m\000p\000i\000l\000e\000r\000\040\000C\000a\000n\000n\000o\000t\000\040\000A\000u\000t\000o\000-\000V\000e\000c\000t\000o\000r\000i\000s\000e\000\040\000N\000T\000T}{section.5}% 25
|
|
||||||
\BOOKMARK [2][-]{subsection.5.3}{\376\377\0005\000.\0003\000\040\000W\000h\000y\000\040\000S\000H\000A\000K\000E\000\040\000O\000p\000e\000r\000a\000t\000i\000o\000n\000s\000\040\000B\000e\000n\000e\000f\000i\000t\000\040\000L\000e\000s\000s}{section.5}% 26
|
|
||||||
\BOOKMARK [2][-]{subsection.5.4}{\376\377\0005\000.\0004\000\040\000W\000h\000y\000\040\000N\000o\000i\000s\000e\000\040\000S\000a\000m\000p\000l\000i\000n\000g\000\040\000B\000a\000r\000e\000l\000y\000\040\000B\000e\000n\000e\000f\000i\000t\000s}{section.5}% 27
|
|
||||||
\BOOKMARK [2][-]{subsection.5.5}{\376\377\0005\000.\0005\000\040\000N\000T\000T\000\040\000C\000a\000c\000h\000e\000-\000S\000t\000a\000t\000e\000\040\000V\000a\000r\000i\000a\000t\000i\000o\000n\000\040\000A\000c\000r\000o\000s\000s\000\040\000P\000a\000r\000a\000m\000e\000t\000e\000r\000\040\000S\000e\000t\000s}{section.5}% 28
|
|
||||||
\BOOKMARK [2][-]{subsection.5.6}{\376\377\0005\000.\0006\000\040\000I\000m\000p\000l\000i\000c\000a\000t\000i\000o\000n\000s\000\040\000f\000o\000r\000\040\000D\000e\000p\000l\000o\000y\000m\000e\000n\000t}{section.5}% 29
|
|
||||||
\BOOKMARK [2][-]{subsection.5.7}{\376\377\0005\000.\0007\000\040\000L\000i\000m\000i\000t\000a\000t\000i\000o\000n\000s}{section.5}% 30
|
|
||||||
\BOOKMARK [1][-]{section.6}{\376\377\0006\000\040\000R\000e\000l\000a\000t\000e\000d\000\040\000W\000o\000r\000k}{}% 31
|
|
||||||
\BOOKMARK [1][-]{section.7}{\376\377\0007\000\040\000C\000o\000n\000c\000l\000u\000s\000i\000o\000n}{}% 32
|
|
||||||
\BOOKMARK [1][-]{section*.33}{\376\377\000R\000e\000f\000e\000r\000e\000n\000c\000e\000s}{}% 33
|
|
||||||
\BOOKMARK [1][-]{appendix.A}{\376\377\000A\000\040\000E\000n\000d\000-\000t\000o\000-\000E\000n\000d\000\040\000K\000E\000M\000\040\000S\000p\000e\000e\000d\000u\000p}{}% 34
|
|
||||||
\BOOKMARK [1][-]{appendix.B}{\376\377\000B\000\040\000F\000u\000l\000l\000\040\000O\000p\000e\000r\000a\000t\000i\000o\000n\000\040\000S\000e\000t}{}% 35
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
\relax
|
|
||||||
\gdef \@abspage@last{1}
|
|
||||||
|
|
@ -1,494 +0,0 @@
|
||||||
This is pdfTeX, Version 3.141592653-2.6-1.40.29 (TeX Live 2026/Arch Linux) (preloaded format=pdflatex 2026.3.6) 4 APR 2026 13:31
|
|
||||||
entering extended mode
|
|
||||||
restricted \write18 enabled.
|
|
||||||
%&-line parsing enabled.
|
|
||||||
**/tmp/pgftest.tex
|
|
||||||
(/tmp/pgftest.tex
|
|
||||||
LaTeX2e <2025-11-01>
|
|
||||||
L3 programming layer <2026-01-19>
|
|
||||||
(/usr/share/texmf-dist/tex/latex/base/article.cls
|
|
||||||
Document Class: article 2025/01/22 v1.4n Standard LaTeX document class
|
|
||||||
(/usr/share/texmf-dist/tex/latex/base/size10.clo
|
|
||||||
File: size10.clo 2025/01/22 v1.4n Standard LaTeX file (size option)
|
|
||||||
)
|
|
||||||
\c@part=\count275
|
|
||||||
\c@section=\count276
|
|
||||||
\c@subsection=\count277
|
|
||||||
\c@subsubsection=\count278
|
|
||||||
\c@paragraph=\count279
|
|
||||||
\c@subparagraph=\count280
|
|
||||||
\c@figure=\count281
|
|
||||||
\c@table=\count282
|
|
||||||
\abovecaptionskip=\skip49
|
|
||||||
\belowcaptionskip=\skip50
|
|
||||||
\bibindent=\dimen148
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgfplots/pgfplots.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex)
|
|
||||||
Package: pgfplots 2025/08/14 v1.18.2 Data Visualization (1.18.2)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty
|
|
||||||
Package: graphicx 2024/12/31 v1.2e Enhanced LaTeX Graphics (DPC,SPQR)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/keyval.sty
|
|
||||||
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
|
|
||||||
\KV@toks@=\toks17
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/graphics.sty
|
|
||||||
Package: graphics 2024/08/06 v1.4g Standard LaTeX Graphics (DPC,SPQR)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/trig.sty
|
|
||||||
Package: trig 2023/12/02 v1.11 sin cos tan (DPC)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
|
|
||||||
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
|
|
||||||
)
|
|
||||||
Package graphics Info: Driver file: pdftex.def on input line 106.
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def
|
|
||||||
File: pdftex.def 2025/09/29 v1.2d Graphics/color driver for pdftex
|
|
||||||
))
|
|
||||||
\Gin@req@height=\dimen149
|
|
||||||
\Gin@req@width=\dimen150
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex
|
|
||||||
\pgfutil@everybye=\toks18
|
|
||||||
\pgfutil@tempdima=\dimen151
|
|
||||||
\pgfutil@tempdimb=\dimen152
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
|
|
||||||
\pgfutil@abb=\box53
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/pgf.revision.tex)
|
|
||||||
Package: pgfrcs 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))
|
|
||||||
Package: pgf 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
|
|
||||||
Package: pgfsys 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
|
|
||||||
\pgfkeys@pathtoks=\toks19
|
|
||||||
\pgfkeys@temptoks=\toks20
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.te
|
|
||||||
x
|
|
||||||
\pgfkeys@tmptoks=\toks21
|
|
||||||
))
|
|
||||||
\pgf@x=\dimen153
|
|
||||||
\pgf@y=\dimen154
|
|
||||||
\pgf@xa=\dimen155
|
|
||||||
\pgf@ya=\dimen156
|
|
||||||
\pgf@xb=\dimen157
|
|
||||||
\pgf@yb=\dimen158
|
|
||||||
\pgf@xc=\dimen159
|
|
||||||
\pgf@yc=\dimen160
|
|
||||||
\pgf@xd=\dimen161
|
|
||||||
\pgf@yd=\dimen162
|
|
||||||
\w@pgf@writea=\write3
|
|
||||||
\r@pgf@reada=\read2
|
|
||||||
\c@pgf@counta=\count283
|
|
||||||
\c@pgf@countb=\count284
|
|
||||||
\c@pgf@countc=\count285
|
|
||||||
\c@pgf@countd=\count286
|
|
||||||
\t@pgf@toka=\toks22
|
|
||||||
\t@pgf@tokb=\toks23
|
|
||||||
\t@pgf@tokc=\toks24
|
|
||||||
\pgf@sys@id@count=\count287
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
|
|
||||||
File: pgf.cfg 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
Driver file for pgf: pgfsys-pdftex.def
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def
|
|
||||||
File: pgfsys-pdftex.def 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def
|
|
||||||
File: pgfsys-common-pdf.def 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
|
|
||||||
File: pgfsyssoftpath.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfsyssoftpath@smallbuffer@items=\count288
|
|
||||||
\pgfsyssoftpath@bigbuffer@items=\count289
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
|
|
||||||
File: pgfsysprotocol.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty
|
|
||||||
Package: xcolor 2024/09/29 v3.02 LaTeX color extensions (UK)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
|
||||||
File: color.cfg 2016/01/02 v1.6 sample color configuration
|
|
||||||
)
|
|
||||||
Package xcolor Info: Driver file: pdftex.def on input line 274.
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx)
|
|
||||||
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1349.
|
|
||||||
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1353.
|
|
||||||
Package xcolor Info: Model `RGB' extended on input line 1365.
|
|
||||||
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1367.
|
|
||||||
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1368.
|
|
||||||
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1369.
|
|
||||||
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1370.
|
|
||||||
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1371.
|
|
||||||
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1372.
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
|
|
||||||
Package: pgfcore 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
|
|
||||||
\pgfmath@dimen=\dimen163
|
|
||||||
\pgfmath@count=\count290
|
|
||||||
\pgfmath@box=\box54
|
|
||||||
\pgfmath@toks=\toks25
|
|
||||||
\pgfmath@stack@operand=\toks26
|
|
||||||
\pgfmath@stack@operation=\toks27
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code
|
|
||||||
.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.te
|
|
||||||
x) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics
|
|
||||||
.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex
|
|
||||||
\c@pgfmathroundto@lastzeros=\count291
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfint.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex
|
|
||||||
File: pgfcorepoints.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@picminx=\dimen164
|
|
||||||
\pgf@picmaxx=\dimen165
|
|
||||||
\pgf@picminy=\dimen166
|
|
||||||
\pgf@picmaxy=\dimen167
|
|
||||||
\pgf@pathminx=\dimen168
|
|
||||||
\pgf@pathmaxx=\dimen169
|
|
||||||
\pgf@pathminy=\dimen170
|
|
||||||
\pgf@pathmaxy=\dimen171
|
|
||||||
\pgf@xx=\dimen172
|
|
||||||
\pgf@xy=\dimen173
|
|
||||||
\pgf@yx=\dimen174
|
|
||||||
\pgf@yy=\dimen175
|
|
||||||
\pgf@zx=\dimen176
|
|
||||||
\pgf@zy=\dimen177
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex
|
|
||||||
File: pgfcorepathconstruct.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@path@lastx=\dimen178
|
|
||||||
\pgf@path@lasty=\dimen179
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex
|
|
||||||
File: pgfcorepathusage.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@shorten@end@additional=\dimen180
|
|
||||||
\pgf@shorten@start@additional=\dimen181
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex
|
|
||||||
File: pgfcorescopes.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfpic=\box55
|
|
||||||
\pgf@hbox=\box56
|
|
||||||
\pgf@layerbox@main=\box57
|
|
||||||
\pgf@picture@serial@count=\count292
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex
|
|
||||||
File: pgfcoregraphicstate.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgflinewidth=\dimen182
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.t
|
|
||||||
ex
|
|
||||||
File: pgfcoretransformations.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@pt@x=\dimen183
|
|
||||||
\pgf@pt@y=\dimen184
|
|
||||||
\pgf@pt@temp=\dimen185
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex
|
|
||||||
File: pgfcorequick.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex
|
|
||||||
File: pgfcoreobjects.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.te
|
|
||||||
x
|
|
||||||
File: pgfcorepathprocessing.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex
|
|
||||||
File: pgfcorearrows.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfarrowsep=\dimen186
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex
|
|
||||||
File: pgfcoreshade.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@max=\dimen187
|
|
||||||
\pgf@sys@shading@range@num=\count293
|
|
||||||
\pgf@shadingcount=\count294
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex
|
|
||||||
File: pgfcoreimage.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex
|
|
||||||
File: pgfcoreexternal.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfexternal@startupbox=\box58
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex
|
|
||||||
File: pgfcorelayers.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex
|
|
||||||
File: pgfcoretransparency.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex
|
|
||||||
File: pgfcorepatterns.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex
|
|
||||||
File: pgfcorerdf.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex
|
|
||||||
File: pgfmoduleshapes.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfnodeparttextbox=\box59
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex
|
|
||||||
File: pgfmoduleplot.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty
|
|
||||||
Package: pgfcomp-version-0-65 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@nodesepstart=\dimen188
|
|
||||||
\pgf@nodesepend=\dimen189
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty
|
|
||||||
Package: pgfcomp-version-1-18 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
|
|
||||||
Package: pgffor 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgffor@iter=\dimen190
|
|
||||||
\pgffor@skip=\dimen191
|
|
||||||
\pgffor@stack=\toks28
|
|
||||||
\pgffor@toks=\toks29
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
|
|
||||||
Package: tikz 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.te
|
|
||||||
x
|
|
||||||
File: pgflibraryplothandlers.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@plot@mark@count=\count295
|
|
||||||
\pgfplotmarksize=\dimen192
|
|
||||||
)
|
|
||||||
\tikz@lastx=\dimen193
|
|
||||||
\tikz@lasty=\dimen194
|
|
||||||
\tikz@lastxsaved=\dimen195
|
|
||||||
\tikz@lastysaved=\dimen196
|
|
||||||
\tikz@lastmovetox=\dimen197
|
|
||||||
\tikz@lastmovetoy=\dimen198
|
|
||||||
\tikzleveldistance=\dimen199
|
|
||||||
\tikzsiblingdistance=\dimen256
|
|
||||||
\tikz@figbox=\box60
|
|
||||||
\tikz@figbox@bg=\box61
|
|
||||||
\tikz@tempbox=\box62
|
|
||||||
\tikz@tempbox@bg=\box63
|
|
||||||
\tikztreelevel=\count296
|
|
||||||
\tikznumberofchildren=\count297
|
|
||||||
\tikznumberofcurrentchild=\count298
|
|
||||||
\tikz@fig@count=\count299
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex
|
|
||||||
File: pgfmodulematrix.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfmatrixcurrentrow=\count300
|
|
||||||
\pgfmatrixcurrentcolumn=\count301
|
|
||||||
\pgf@matrix@numberofcolumns=\count302
|
|
||||||
)
|
|
||||||
\tikz@expandcount=\count303
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
topaths.code.tex
|
|
||||||
File: tikzlibrarytopaths.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex
|
|
||||||
\t@pgfplots@toka=\toks30
|
|
||||||
\t@pgfplots@tokb=\toks31
|
|
||||||
\t@pgfplots@tokc=\toks32
|
|
||||||
\pgfplots@tmpa=\dimen257
|
|
||||||
\c@pgfplots@coordindex=\count304
|
|
||||||
\c@pgfplots@scanlineindex=\count305
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_l
|
|
||||||
oader.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_p
|
|
||||||
gfutil-common-lists.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure
|
|
||||||
.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure
|
|
||||||
ext.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.te
|
|
||||||
x
|
|
||||||
\c@pgfplotsarray@tmp=\count306
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.t
|
|
||||||
ex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshared.code.t
|
|
||||||
ex
|
|
||||||
\c@pgfplotstable@counta=\count307
|
|
||||||
\t@pgfplotstable@a=\toks33
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.te
|
|
||||||
x) (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading
|
|
||||||
.code.tex
|
|
||||||
\c@pgfplotslibrarysurf@no=\count308
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.
|
|
||||||
pgfsys-pdftex.def)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
decorations.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex
|
|
||||||
\pgfdecoratedcompleteddistance=\dimen258
|
|
||||||
\pgfdecoratedremainingdistance=\dimen259
|
|
||||||
\pgfdecoratedinputsegmentcompleteddistance=\dimen260
|
|
||||||
\pgfdecoratedinputsegmentremainingdistance=\dimen261
|
|
||||||
\pgf@decorate@distancetomove=\dimen262
|
|
||||||
\pgf@decorate@repeatstate=\count309
|
|
||||||
\pgfdecorationsegmentamplitude=\dimen263
|
|
||||||
\pgfdecorationsegmentlength=\dimen264
|
|
||||||
)
|
|
||||||
\tikz@lib@dec@box=\box64
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
decorations.pathmorphing.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati
|
|
||||||
ons.pathmorphing.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
decorations.pathreplacing.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati
|
|
||||||
ons.pathreplacing.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua
|
|
||||||
.code.tex)
|
|
||||||
\pgfplots@numplots=\count310
|
|
||||||
\pgfplots@xmin@reg=\dimen265
|
|
||||||
\pgfplots@xmax@reg=\dimen266
|
|
||||||
\pgfplots@ymin@reg=\dimen267
|
|
||||||
\pgfplots@ymax@reg=\dimen268
|
|
||||||
\pgfplots@zmin@reg=\dimen269
|
|
||||||
\pgfplots@zmax@reg=\dimen270
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
plotmarks.code.tex
|
|
||||||
File: tikzlibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex
|
|
||||||
File: pgflibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.groupplots
|
|
||||||
.code.tex
|
|
||||||
\pgfplots@group@current@plot=\count311
|
|
||||||
\pgfplots@group@current@row=\count312
|
|
||||||
\pgfplots@group@current@column=\count313
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
calc.code.tex
|
|
||||||
File: tikzlibrarycalc.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)) (/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
|
||||||
File: l3backend-pdftex.def 2025-10-09 L3 backend support: PDF output (pdfTeX)
|
|
||||||
\l__color_backend_stack_int=\count314
|
|
||||||
)
|
|
||||||
No file pgftest.aux.
|
|
||||||
\openout1 = `pgftest.aux'.
|
|
||||||
|
|
||||||
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 5.
|
|
||||||
LaTeX Font Info: ... okay on input line 5.
|
|
||||||
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 5.
|
|
||||||
LaTeX Font Info: ... okay on input line 5.
|
|
||||||
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 5.
|
|
||||||
LaTeX Font Info: ... okay on input line 5.
|
|
||||||
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 5.
|
|
||||||
LaTeX Font Info: ... okay on input line 5.
|
|
||||||
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 5.
|
|
||||||
LaTeX Font Info: ... okay on input line 5.
|
|
||||||
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 5.
|
|
||||||
LaTeX Font Info: ... okay on input line 5.
|
|
||||||
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 5.
|
|
||||||
LaTeX Font Info: ... okay on input line 5.
|
|
||||||
(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
|
||||||
[Loading MPS to PDF converter (version 2006.09.02).]
|
|
||||||
\scratchcounter=\count315
|
|
||||||
\scratchdimen=\dimen271
|
|
||||||
\scratchbox=\box65
|
|
||||||
\nofMPsegments=\count316
|
|
||||||
\nofMParguments=\count317
|
|
||||||
\everyMPshowfont=\toks34
|
|
||||||
\MPscratchCnt=\count318
|
|
||||||
\MPscratchDim=\dimen272
|
|
||||||
\MPnumerator=\count319
|
|
||||||
\makeMPintoPDFobject=\count320
|
|
||||||
\everyMPtoPDFconversion=\toks35
|
|
||||||
) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
|
||||||
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
|
|
||||||
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
|
|
||||||
85.
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
|
|
||||||
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
|
|
||||||
e
|
|
||||||
))
|
|
||||||
Package pgfplots notification 'compat/show suggested version=true': document ha
|
|
||||||
s been generated with the most recent feature set (\pgfplotsset{compat=1.18}).
|
|
||||||
|
|
||||||
Package pgfplots info on input line 7: Using 'lua backend=false' for axis: ymod
|
|
||||||
e=log unsupported (yet).
|
|
||||||
Package pgfplots info on input line 7: Using 'lua backend=false' for axis: x co
|
|
||||||
ord trafo unsupported.
|
|
||||||
LaTeX Font Info: External font `cmex10' loaded for size
|
|
||||||
(Font) <7> on input line 9.
|
|
||||||
LaTeX Font Info: External font `cmex10' loaded for size
|
|
||||||
(Font) <5> on input line 9.
|
|
||||||
[1
|
|
||||||
|
|
||||||
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./pgftest.aux)
|
|
||||||
***********
|
|
||||||
LaTeX2e <2025-11-01>
|
|
||||||
L3 programming layer <2026-01-19>
|
|
||||||
***********
|
|
||||||
)
|
|
||||||
Here is how much of TeX's memory you used:
|
|
||||||
22374 strings out of 469515
|
|
||||||
603098 string characters out of 5470808
|
|
||||||
1118991 words of memory out of 5000000
|
|
||||||
50722 multiletter control sequences out of 15000+600000
|
|
||||||
627721 words of font info for 40 fonts, out of 8000000 for 9000
|
|
||||||
14 hyphenation exceptions out of 8191
|
|
||||||
99i,9n,118p,739b,2054s stack positions out of 10000i,1000n,20000p,200000b,200000s
|
|
||||||
</usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb></usr/share/t
|
|
||||||
exmf-dist/fonts/type1/public/amsfonts/cm/cmr7.pfb>
|
|
||||||
Output written on pgftest.pdf (1 page, 20045 bytes).
|
|
||||||
PDF statistics:
|
|
||||||
21 PDF objects out of 1000 (max. 8388607)
|
|
||||||
13 compressed objects within 1 object stream
|
|
||||||
0 named destinations out of 1000 (max. 500000)
|
|
||||||
13 words of extra memory for PDF output out of 10000 (max. 10000000)
|
|
||||||
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
\relax
|
|
||||||
\gdef \@abspage@last{1}
|
|
||||||
|
|
@ -1,513 +0,0 @@
|
||||||
This is pdfTeX, Version 3.141592653-2.6-1.40.29 (TeX Live 2026/Arch Linux) (preloaded format=pdflatex 2026.3.6) 4 APR 2026 13:31
|
|
||||||
entering extended mode
|
|
||||||
restricted \write18 enabled.
|
|
||||||
%&-line parsing enabled.
|
|
||||||
**/tmp/pgftest2.tex
|
|
||||||
(/tmp/pgftest2.tex
|
|
||||||
LaTeX2e <2025-11-01>
|
|
||||||
L3 programming layer <2026-01-19>
|
|
||||||
(/usr/share/texmf-dist/tex/latex/base/article.cls
|
|
||||||
Document Class: article 2025/01/22 v1.4n Standard LaTeX document class
|
|
||||||
(/usr/share/texmf-dist/tex/latex/base/size10.clo
|
|
||||||
File: size10.clo 2025/01/22 v1.4n Standard LaTeX file (size option)
|
|
||||||
)
|
|
||||||
\c@part=\count275
|
|
||||||
\c@section=\count276
|
|
||||||
\c@subsection=\count277
|
|
||||||
\c@subsubsection=\count278
|
|
||||||
\c@paragraph=\count279
|
|
||||||
\c@subparagraph=\count280
|
|
||||||
\c@figure=\count281
|
|
||||||
\c@table=\count282
|
|
||||||
\abovecaptionskip=\skip49
|
|
||||||
\belowcaptionskip=\skip50
|
|
||||||
\bibindent=\dimen148
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgfplots/pgfplots.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex)
|
|
||||||
Package: pgfplots 2025/08/14 v1.18.2 Data Visualization (1.18.2)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty
|
|
||||||
Package: graphicx 2024/12/31 v1.2e Enhanced LaTeX Graphics (DPC,SPQR)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/keyval.sty
|
|
||||||
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
|
|
||||||
\KV@toks@=\toks17
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/graphics.sty
|
|
||||||
Package: graphics 2024/08/06 v1.4g Standard LaTeX Graphics (DPC,SPQR)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/trig.sty
|
|
||||||
Package: trig 2023/12/02 v1.11 sin cos tan (DPC)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
|
|
||||||
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
|
|
||||||
)
|
|
||||||
Package graphics Info: Driver file: pdftex.def on input line 106.
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def
|
|
||||||
File: pdftex.def 2025/09/29 v1.2d Graphics/color driver for pdftex
|
|
||||||
))
|
|
||||||
\Gin@req@height=\dimen149
|
|
||||||
\Gin@req@width=\dimen150
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex
|
|
||||||
\pgfutil@everybye=\toks18
|
|
||||||
\pgfutil@tempdima=\dimen151
|
|
||||||
\pgfutil@tempdimb=\dimen152
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
|
|
||||||
\pgfutil@abb=\box53
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/pgf.revision.tex)
|
|
||||||
Package: pgfrcs 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))
|
|
||||||
Package: pgf 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
|
|
||||||
Package: pgfsys 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
|
|
||||||
\pgfkeys@pathtoks=\toks19
|
|
||||||
\pgfkeys@temptoks=\toks20
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.te
|
|
||||||
x
|
|
||||||
\pgfkeys@tmptoks=\toks21
|
|
||||||
))
|
|
||||||
\pgf@x=\dimen153
|
|
||||||
\pgf@y=\dimen154
|
|
||||||
\pgf@xa=\dimen155
|
|
||||||
\pgf@ya=\dimen156
|
|
||||||
\pgf@xb=\dimen157
|
|
||||||
\pgf@yb=\dimen158
|
|
||||||
\pgf@xc=\dimen159
|
|
||||||
\pgf@yc=\dimen160
|
|
||||||
\pgf@xd=\dimen161
|
|
||||||
\pgf@yd=\dimen162
|
|
||||||
\w@pgf@writea=\write3
|
|
||||||
\r@pgf@reada=\read2
|
|
||||||
\c@pgf@counta=\count283
|
|
||||||
\c@pgf@countb=\count284
|
|
||||||
\c@pgf@countc=\count285
|
|
||||||
\c@pgf@countd=\count286
|
|
||||||
\t@pgf@toka=\toks22
|
|
||||||
\t@pgf@tokb=\toks23
|
|
||||||
\t@pgf@tokc=\toks24
|
|
||||||
\pgf@sys@id@count=\count287
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
|
|
||||||
File: pgf.cfg 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
Driver file for pgf: pgfsys-pdftex.def
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def
|
|
||||||
File: pgfsys-pdftex.def 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def
|
|
||||||
File: pgfsys-common-pdf.def 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
|
|
||||||
File: pgfsyssoftpath.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfsyssoftpath@smallbuffer@items=\count288
|
|
||||||
\pgfsyssoftpath@bigbuffer@items=\count289
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
|
|
||||||
File: pgfsysprotocol.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty
|
|
||||||
Package: xcolor 2024/09/29 v3.02 LaTeX color extensions (UK)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
|
||||||
File: color.cfg 2016/01/02 v1.6 sample color configuration
|
|
||||||
)
|
|
||||||
Package xcolor Info: Driver file: pdftex.def on input line 274.
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx)
|
|
||||||
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1349.
|
|
||||||
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1353.
|
|
||||||
Package xcolor Info: Model `RGB' extended on input line 1365.
|
|
||||||
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1367.
|
|
||||||
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1368.
|
|
||||||
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1369.
|
|
||||||
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1370.
|
|
||||||
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1371.
|
|
||||||
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1372.
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
|
|
||||||
Package: pgfcore 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
|
|
||||||
\pgfmath@dimen=\dimen163
|
|
||||||
\pgfmath@count=\count290
|
|
||||||
\pgfmath@box=\box54
|
|
||||||
\pgfmath@toks=\toks25
|
|
||||||
\pgfmath@stack@operand=\toks26
|
|
||||||
\pgfmath@stack@operation=\toks27
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code
|
|
||||||
.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.te
|
|
||||||
x) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics
|
|
||||||
.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex
|
|
||||||
\c@pgfmathroundto@lastzeros=\count291
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfint.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex
|
|
||||||
File: pgfcorepoints.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@picminx=\dimen164
|
|
||||||
\pgf@picmaxx=\dimen165
|
|
||||||
\pgf@picminy=\dimen166
|
|
||||||
\pgf@picmaxy=\dimen167
|
|
||||||
\pgf@pathminx=\dimen168
|
|
||||||
\pgf@pathmaxx=\dimen169
|
|
||||||
\pgf@pathminy=\dimen170
|
|
||||||
\pgf@pathmaxy=\dimen171
|
|
||||||
\pgf@xx=\dimen172
|
|
||||||
\pgf@xy=\dimen173
|
|
||||||
\pgf@yx=\dimen174
|
|
||||||
\pgf@yy=\dimen175
|
|
||||||
\pgf@zx=\dimen176
|
|
||||||
\pgf@zy=\dimen177
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex
|
|
||||||
File: pgfcorepathconstruct.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@path@lastx=\dimen178
|
|
||||||
\pgf@path@lasty=\dimen179
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex
|
|
||||||
File: pgfcorepathusage.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@shorten@end@additional=\dimen180
|
|
||||||
\pgf@shorten@start@additional=\dimen181
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex
|
|
||||||
File: pgfcorescopes.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfpic=\box55
|
|
||||||
\pgf@hbox=\box56
|
|
||||||
\pgf@layerbox@main=\box57
|
|
||||||
\pgf@picture@serial@count=\count292
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex
|
|
||||||
File: pgfcoregraphicstate.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgflinewidth=\dimen182
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.t
|
|
||||||
ex
|
|
||||||
File: pgfcoretransformations.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@pt@x=\dimen183
|
|
||||||
\pgf@pt@y=\dimen184
|
|
||||||
\pgf@pt@temp=\dimen185
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex
|
|
||||||
File: pgfcorequick.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex
|
|
||||||
File: pgfcoreobjects.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.te
|
|
||||||
x
|
|
||||||
File: pgfcorepathprocessing.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex
|
|
||||||
File: pgfcorearrows.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfarrowsep=\dimen186
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex
|
|
||||||
File: pgfcoreshade.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@max=\dimen187
|
|
||||||
\pgf@sys@shading@range@num=\count293
|
|
||||||
\pgf@shadingcount=\count294
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex
|
|
||||||
File: pgfcoreimage.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex
|
|
||||||
File: pgfcoreexternal.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfexternal@startupbox=\box58
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex
|
|
||||||
File: pgfcorelayers.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex
|
|
||||||
File: pgfcoretransparency.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex
|
|
||||||
File: pgfcorepatterns.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex
|
|
||||||
File: pgfcorerdf.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex
|
|
||||||
File: pgfmoduleshapes.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfnodeparttextbox=\box59
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex
|
|
||||||
File: pgfmoduleplot.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty
|
|
||||||
Package: pgfcomp-version-0-65 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@nodesepstart=\dimen188
|
|
||||||
\pgf@nodesepend=\dimen189
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty
|
|
||||||
Package: pgfcomp-version-1-18 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
|
|
||||||
Package: pgffor 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgffor@iter=\dimen190
|
|
||||||
\pgffor@skip=\dimen191
|
|
||||||
\pgffor@stack=\toks28
|
|
||||||
\pgffor@toks=\toks29
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
|
|
||||||
Package: tikz 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.te
|
|
||||||
x
|
|
||||||
File: pgflibraryplothandlers.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@plot@mark@count=\count295
|
|
||||||
\pgfplotmarksize=\dimen192
|
|
||||||
)
|
|
||||||
\tikz@lastx=\dimen193
|
|
||||||
\tikz@lasty=\dimen194
|
|
||||||
\tikz@lastxsaved=\dimen195
|
|
||||||
\tikz@lastysaved=\dimen196
|
|
||||||
\tikz@lastmovetox=\dimen197
|
|
||||||
\tikz@lastmovetoy=\dimen198
|
|
||||||
\tikzleveldistance=\dimen199
|
|
||||||
\tikzsiblingdistance=\dimen256
|
|
||||||
\tikz@figbox=\box60
|
|
||||||
\tikz@figbox@bg=\box61
|
|
||||||
\tikz@tempbox=\box62
|
|
||||||
\tikz@tempbox@bg=\box63
|
|
||||||
\tikztreelevel=\count296
|
|
||||||
\tikznumberofchildren=\count297
|
|
||||||
\tikznumberofcurrentchild=\count298
|
|
||||||
\tikz@fig@count=\count299
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex
|
|
||||||
File: pgfmodulematrix.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfmatrixcurrentrow=\count300
|
|
||||||
\pgfmatrixcurrentcolumn=\count301
|
|
||||||
\pgf@matrix@numberofcolumns=\count302
|
|
||||||
)
|
|
||||||
\tikz@expandcount=\count303
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
topaths.code.tex
|
|
||||||
File: tikzlibrarytopaths.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex
|
|
||||||
\t@pgfplots@toka=\toks30
|
|
||||||
\t@pgfplots@tokb=\toks31
|
|
||||||
\t@pgfplots@tokc=\toks32
|
|
||||||
\pgfplots@tmpa=\dimen257
|
|
||||||
\c@pgfplots@coordindex=\count304
|
|
||||||
\c@pgfplots@scanlineindex=\count305
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_l
|
|
||||||
oader.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_p
|
|
||||||
gfutil-common-lists.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure
|
|
||||||
.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure
|
|
||||||
ext.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.te
|
|
||||||
x
|
|
||||||
\c@pgfplotsarray@tmp=\count306
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.t
|
|
||||||
ex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshared.code.t
|
|
||||||
ex
|
|
||||||
\c@pgfplotstable@counta=\count307
|
|
||||||
\t@pgfplotstable@a=\toks33
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.te
|
|
||||||
x) (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading
|
|
||||||
.code.tex
|
|
||||||
\c@pgfplotslibrarysurf@no=\count308
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.
|
|
||||||
pgfsys-pdftex.def)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
decorations.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex
|
|
||||||
\pgfdecoratedcompleteddistance=\dimen258
|
|
||||||
\pgfdecoratedremainingdistance=\dimen259
|
|
||||||
\pgfdecoratedinputsegmentcompleteddistance=\dimen260
|
|
||||||
\pgfdecoratedinputsegmentremainingdistance=\dimen261
|
|
||||||
\pgf@decorate@distancetomove=\dimen262
|
|
||||||
\pgf@decorate@repeatstate=\count309
|
|
||||||
\pgfdecorationsegmentamplitude=\dimen263
|
|
||||||
\pgfdecorationsegmentlength=\dimen264
|
|
||||||
)
|
|
||||||
\tikz@lib@dec@box=\box64
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
decorations.pathmorphing.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati
|
|
||||||
ons.pathmorphing.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
decorations.pathreplacing.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati
|
|
||||||
ons.pathreplacing.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua
|
|
||||||
.code.tex)
|
|
||||||
\pgfplots@numplots=\count310
|
|
||||||
\pgfplots@xmin@reg=\dimen265
|
|
||||||
\pgfplots@xmax@reg=\dimen266
|
|
||||||
\pgfplots@ymin@reg=\dimen267
|
|
||||||
\pgfplots@ymax@reg=\dimen268
|
|
||||||
\pgfplots@zmin@reg=\dimen269
|
|
||||||
\pgfplots@zmax@reg=\dimen270
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
plotmarks.code.tex
|
|
||||||
File: tikzlibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex
|
|
||||||
File: pgflibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.groupplots
|
|
||||||
.code.tex
|
|
||||||
\pgfplots@group@current@plot=\count311
|
|
||||||
\pgfplots@group@current@row=\count312
|
|
||||||
\pgfplots@group@current@column=\count313
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
calc.code.tex
|
|
||||||
File: tikzlibrarycalc.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)) (/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
|
||||||
File: l3backend-pdftex.def 2025-10-09 L3 backend support: PDF output (pdfTeX)
|
|
||||||
\l__color_backend_stack_int=\count314
|
|
||||||
)
|
|
||||||
No file pgftest2.aux.
|
|
||||||
\openout1 = `pgftest2.aux'.
|
|
||||||
|
|
||||||
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 11.
|
|
||||||
LaTeX Font Info: ... okay on input line 11.
|
|
||||||
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 11.
|
|
||||||
LaTeX Font Info: ... okay on input line 11.
|
|
||||||
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 11.
|
|
||||||
LaTeX Font Info: ... okay on input line 11.
|
|
||||||
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 11.
|
|
||||||
LaTeX Font Info: ... okay on input line 11.
|
|
||||||
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 11.
|
|
||||||
LaTeX Font Info: ... okay on input line 11.
|
|
||||||
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 11.
|
|
||||||
LaTeX Font Info: ... okay on input line 11.
|
|
||||||
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 11.
|
|
||||||
LaTeX Font Info: ... okay on input line 11.
|
|
||||||
(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
|
||||||
[Loading MPS to PDF converter (version 2006.09.02).]
|
|
||||||
\scratchcounter=\count315
|
|
||||||
\scratchdimen=\dimen271
|
|
||||||
\scratchbox=\box65
|
|
||||||
\nofMPsegments=\count316
|
|
||||||
\nofMParguments=\count317
|
|
||||||
\everyMPshowfont=\toks34
|
|
||||||
\MPscratchCnt=\count318
|
|
||||||
\MPscratchDim=\dimen272
|
|
||||||
\MPnumerator=\count319
|
|
||||||
\makeMPintoPDFobject=\count320
|
|
||||||
\everyMPtoPDFconversion=\toks35
|
|
||||||
) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
|
||||||
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
|
|
||||||
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
|
|
||||||
85.
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
|
|
||||||
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
|
|
||||||
e
|
|
||||||
))
|
|
||||||
Package pgfplots notification 'compat/show suggested version=true': document ha
|
|
||||||
s been generated with the most recent feature set (\pgfplotsset{compat=1.18}).
|
|
||||||
|
|
||||||
|
|
||||||
! Package pgfkeys Error: I do not know the key '/pgfplots/bar width', to which
|
|
||||||
you passed '5pt', and I am going to ignore it. Perhaps you misspelled it.
|
|
||||||
|
|
||||||
See the pgfkeys package documentation for explanation.
|
|
||||||
Type H <return> for immediate help.
|
|
||||||
...
|
|
||||||
|
|
||||||
l.13 ...bar, bar width=5pt, width=5cm, height=4cm]
|
|
||||||
|
|
||||||
This error message was generated by an \errmessage
|
|
||||||
command, so I can't give any explicit help.
|
|
||||||
Pretend that you're Hercule Poirot: Examine all clues,
|
|
||||||
and deduce the truth by order and method.
|
|
||||||
|
|
||||||
Package pgfplots info on input line 15: Using 'lua backend=false' for axis: ymo
|
|
||||||
de=log unsupported (yet).
|
|
||||||
Package pgfplots info on input line 15: Using 'lua backend=false' for axis: x c
|
|
||||||
oord trafo unsupported.
|
|
||||||
LaTeX Font Info: External font `cmex10' loaded for size
|
|
||||||
(Font) <7> on input line 17.
|
|
||||||
LaTeX Font Info: External font `cmex10' loaded for size
|
|
||||||
(Font) <5> on input line 17.
|
|
||||||
Package pgfplots info on input line 17: Using 'lua backend=false' for axis: ymo
|
|
||||||
de=log unsupported (yet).
|
|
||||||
Package pgfplots info on input line 17: Using 'lua backend=false' for axis: x c
|
|
||||||
oord trafo unsupported.
|
|
||||||
[1
|
|
||||||
|
|
||||||
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./pgftest2.aux)
|
|
||||||
***********
|
|
||||||
LaTeX2e <2025-11-01>
|
|
||||||
L3 programming layer <2026-01-19>
|
|
||||||
***********
|
|
||||||
)
|
|
||||||
Here is how much of TeX's memory you used:
|
|
||||||
22386 strings out of 469515
|
|
||||||
603412 string characters out of 5470808
|
|
||||||
1122992 words of memory out of 5000000
|
|
||||||
50734 multiletter control sequences out of 15000+600000
|
|
||||||
627721 words of font info for 40 fonts, out of 8000000 for 9000
|
|
||||||
14 hyphenation exceptions out of 8191
|
|
||||||
99i,9n,118p,740b,2308s stack positions out of 10000i,1000n,20000p,200000b,200000s
|
|
||||||
</usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb></usr/share/t
|
|
||||||
exmf-dist/fonts/type1/public/amsfonts/cm/cmr7.pfb>
|
|
||||||
Output written on pgftest2.pdf (1 page, 20631 bytes).
|
|
||||||
PDF statistics:
|
|
||||||
21 PDF objects out of 1000 (max. 8388607)
|
|
||||||
13 compressed objects within 1 object stream
|
|
||||||
0 named destinations out of 1000 (max. 500000)
|
|
||||||
13 words of extra memory for PDF output out of 10000 (max. 10000000)
|
|
||||||
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
\relax
|
|
||||||
\gdef \@abspage@last{1}
|
|
||||||
|
|
@ -1,498 +0,0 @@
|
||||||
This is pdfTeX, Version 3.141592653-2.6-1.40.29 (TeX Live 2026/Arch Linux) (preloaded format=pdflatex 2026.3.6) 4 APR 2026 13:32
|
|
||||||
entering extended mode
|
|
||||||
restricted \write18 enabled.
|
|
||||||
%&-line parsing enabled.
|
|
||||||
**/tmp/pgftest3.tex
|
|
||||||
(/tmp/pgftest3.tex
|
|
||||||
LaTeX2e <2025-11-01>
|
|
||||||
L3 programming layer <2026-01-19>
|
|
||||||
(/usr/share/texmf-dist/tex/latex/base/article.cls
|
|
||||||
Document Class: article 2025/01/22 v1.4n Standard LaTeX document class
|
|
||||||
(/usr/share/texmf-dist/tex/latex/base/size10.clo
|
|
||||||
File: size10.clo 2025/01/22 v1.4n Standard LaTeX file (size option)
|
|
||||||
)
|
|
||||||
\c@part=\count275
|
|
||||||
\c@section=\count276
|
|
||||||
\c@subsection=\count277
|
|
||||||
\c@subsubsection=\count278
|
|
||||||
\c@paragraph=\count279
|
|
||||||
\c@subparagraph=\count280
|
|
||||||
\c@figure=\count281
|
|
||||||
\c@table=\count282
|
|
||||||
\abovecaptionskip=\skip49
|
|
||||||
\belowcaptionskip=\skip50
|
|
||||||
\bibindent=\dimen148
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgfplots/pgfplots.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex)
|
|
||||||
Package: pgfplots 2025/08/14 v1.18.2 Data Visualization (1.18.2)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty
|
|
||||||
Package: graphicx 2024/12/31 v1.2e Enhanced LaTeX Graphics (DPC,SPQR)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/keyval.sty
|
|
||||||
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
|
|
||||||
\KV@toks@=\toks17
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/graphics.sty
|
|
||||||
Package: graphics 2024/08/06 v1.4g Standard LaTeX Graphics (DPC,SPQR)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/trig.sty
|
|
||||||
Package: trig 2023/12/02 v1.11 sin cos tan (DPC)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
|
|
||||||
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
|
|
||||||
)
|
|
||||||
Package graphics Info: Driver file: pdftex.def on input line 106.
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def
|
|
||||||
File: pdftex.def 2025/09/29 v1.2d Graphics/color driver for pdftex
|
|
||||||
))
|
|
||||||
\Gin@req@height=\dimen149
|
|
||||||
\Gin@req@width=\dimen150
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex
|
|
||||||
\pgfutil@everybye=\toks18
|
|
||||||
\pgfutil@tempdima=\dimen151
|
|
||||||
\pgfutil@tempdimb=\dimen152
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
|
|
||||||
\pgfutil@abb=\box53
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/pgf.revision.tex)
|
|
||||||
Package: pgfrcs 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))
|
|
||||||
Package: pgf 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
|
|
||||||
Package: pgfsys 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
|
|
||||||
\pgfkeys@pathtoks=\toks19
|
|
||||||
\pgfkeys@temptoks=\toks20
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.te
|
|
||||||
x
|
|
||||||
\pgfkeys@tmptoks=\toks21
|
|
||||||
))
|
|
||||||
\pgf@x=\dimen153
|
|
||||||
\pgf@y=\dimen154
|
|
||||||
\pgf@xa=\dimen155
|
|
||||||
\pgf@ya=\dimen156
|
|
||||||
\pgf@xb=\dimen157
|
|
||||||
\pgf@yb=\dimen158
|
|
||||||
\pgf@xc=\dimen159
|
|
||||||
\pgf@yc=\dimen160
|
|
||||||
\pgf@xd=\dimen161
|
|
||||||
\pgf@yd=\dimen162
|
|
||||||
\w@pgf@writea=\write3
|
|
||||||
\r@pgf@reada=\read2
|
|
||||||
\c@pgf@counta=\count283
|
|
||||||
\c@pgf@countb=\count284
|
|
||||||
\c@pgf@countc=\count285
|
|
||||||
\c@pgf@countd=\count286
|
|
||||||
\t@pgf@toka=\toks22
|
|
||||||
\t@pgf@tokb=\toks23
|
|
||||||
\t@pgf@tokc=\toks24
|
|
||||||
\pgf@sys@id@count=\count287
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
|
|
||||||
File: pgf.cfg 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
Driver file for pgf: pgfsys-pdftex.def
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def
|
|
||||||
File: pgfsys-pdftex.def 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def
|
|
||||||
File: pgfsys-common-pdf.def 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
|
|
||||||
File: pgfsyssoftpath.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfsyssoftpath@smallbuffer@items=\count288
|
|
||||||
\pgfsyssoftpath@bigbuffer@items=\count289
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
|
|
||||||
File: pgfsysprotocol.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty
|
|
||||||
Package: xcolor 2024/09/29 v3.02 LaTeX color extensions (UK)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
|
||||||
File: color.cfg 2016/01/02 v1.6 sample color configuration
|
|
||||||
)
|
|
||||||
Package xcolor Info: Driver file: pdftex.def on input line 274.
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx)
|
|
||||||
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1349.
|
|
||||||
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1353.
|
|
||||||
Package xcolor Info: Model `RGB' extended on input line 1365.
|
|
||||||
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1367.
|
|
||||||
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1368.
|
|
||||||
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1369.
|
|
||||||
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1370.
|
|
||||||
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1371.
|
|
||||||
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1372.
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
|
|
||||||
Package: pgfcore 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
|
|
||||||
\pgfmath@dimen=\dimen163
|
|
||||||
\pgfmath@count=\count290
|
|
||||||
\pgfmath@box=\box54
|
|
||||||
\pgfmath@toks=\toks25
|
|
||||||
\pgfmath@stack@operand=\toks26
|
|
||||||
\pgfmath@stack@operation=\toks27
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code
|
|
||||||
.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.te
|
|
||||||
x) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics
|
|
||||||
.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex
|
|
||||||
\c@pgfmathroundto@lastzeros=\count291
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfint.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex
|
|
||||||
File: pgfcorepoints.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@picminx=\dimen164
|
|
||||||
\pgf@picmaxx=\dimen165
|
|
||||||
\pgf@picminy=\dimen166
|
|
||||||
\pgf@picmaxy=\dimen167
|
|
||||||
\pgf@pathminx=\dimen168
|
|
||||||
\pgf@pathmaxx=\dimen169
|
|
||||||
\pgf@pathminy=\dimen170
|
|
||||||
\pgf@pathmaxy=\dimen171
|
|
||||||
\pgf@xx=\dimen172
|
|
||||||
\pgf@xy=\dimen173
|
|
||||||
\pgf@yx=\dimen174
|
|
||||||
\pgf@yy=\dimen175
|
|
||||||
\pgf@zx=\dimen176
|
|
||||||
\pgf@zy=\dimen177
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex
|
|
||||||
File: pgfcorepathconstruct.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@path@lastx=\dimen178
|
|
||||||
\pgf@path@lasty=\dimen179
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex
|
|
||||||
File: pgfcorepathusage.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@shorten@end@additional=\dimen180
|
|
||||||
\pgf@shorten@start@additional=\dimen181
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex
|
|
||||||
File: pgfcorescopes.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfpic=\box55
|
|
||||||
\pgf@hbox=\box56
|
|
||||||
\pgf@layerbox@main=\box57
|
|
||||||
\pgf@picture@serial@count=\count292
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex
|
|
||||||
File: pgfcoregraphicstate.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgflinewidth=\dimen182
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.t
|
|
||||||
ex
|
|
||||||
File: pgfcoretransformations.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@pt@x=\dimen183
|
|
||||||
\pgf@pt@y=\dimen184
|
|
||||||
\pgf@pt@temp=\dimen185
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex
|
|
||||||
File: pgfcorequick.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex
|
|
||||||
File: pgfcoreobjects.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.te
|
|
||||||
x
|
|
||||||
File: pgfcorepathprocessing.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex
|
|
||||||
File: pgfcorearrows.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfarrowsep=\dimen186
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex
|
|
||||||
File: pgfcoreshade.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@max=\dimen187
|
|
||||||
\pgf@sys@shading@range@num=\count293
|
|
||||||
\pgf@shadingcount=\count294
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex
|
|
||||||
File: pgfcoreimage.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex
|
|
||||||
File: pgfcoreexternal.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfexternal@startupbox=\box58
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex
|
|
||||||
File: pgfcorelayers.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex
|
|
||||||
File: pgfcoretransparency.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex
|
|
||||||
File: pgfcorepatterns.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex
|
|
||||||
File: pgfcorerdf.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex
|
|
||||||
File: pgfmoduleshapes.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfnodeparttextbox=\box59
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex
|
|
||||||
File: pgfmoduleplot.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty
|
|
||||||
Package: pgfcomp-version-0-65 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@nodesepstart=\dimen188
|
|
||||||
\pgf@nodesepend=\dimen189
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty
|
|
||||||
Package: pgfcomp-version-1-18 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
|
|
||||||
Package: pgffor 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgffor@iter=\dimen190
|
|
||||||
\pgffor@skip=\dimen191
|
|
||||||
\pgffor@stack=\toks28
|
|
||||||
\pgffor@toks=\toks29
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
|
|
||||||
Package: tikz 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.te
|
|
||||||
x
|
|
||||||
File: pgflibraryplothandlers.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@plot@mark@count=\count295
|
|
||||||
\pgfplotmarksize=\dimen192
|
|
||||||
)
|
|
||||||
\tikz@lastx=\dimen193
|
|
||||||
\tikz@lasty=\dimen194
|
|
||||||
\tikz@lastxsaved=\dimen195
|
|
||||||
\tikz@lastysaved=\dimen196
|
|
||||||
\tikz@lastmovetox=\dimen197
|
|
||||||
\tikz@lastmovetoy=\dimen198
|
|
||||||
\tikzleveldistance=\dimen199
|
|
||||||
\tikzsiblingdistance=\dimen256
|
|
||||||
\tikz@figbox=\box60
|
|
||||||
\tikz@figbox@bg=\box61
|
|
||||||
\tikz@tempbox=\box62
|
|
||||||
\tikz@tempbox@bg=\box63
|
|
||||||
\tikztreelevel=\count296
|
|
||||||
\tikznumberofchildren=\count297
|
|
||||||
\tikznumberofcurrentchild=\count298
|
|
||||||
\tikz@fig@count=\count299
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex
|
|
||||||
File: pgfmodulematrix.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfmatrixcurrentrow=\count300
|
|
||||||
\pgfmatrixcurrentcolumn=\count301
|
|
||||||
\pgf@matrix@numberofcolumns=\count302
|
|
||||||
)
|
|
||||||
\tikz@expandcount=\count303
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
topaths.code.tex
|
|
||||||
File: tikzlibrarytopaths.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex
|
|
||||||
\t@pgfplots@toka=\toks30
|
|
||||||
\t@pgfplots@tokb=\toks31
|
|
||||||
\t@pgfplots@tokc=\toks32
|
|
||||||
\pgfplots@tmpa=\dimen257
|
|
||||||
\c@pgfplots@coordindex=\count304
|
|
||||||
\c@pgfplots@scanlineindex=\count305
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_l
|
|
||||||
oader.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_p
|
|
||||||
gfutil-common-lists.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure
|
|
||||||
.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure
|
|
||||||
ext.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.te
|
|
||||||
x
|
|
||||||
\c@pgfplotsarray@tmp=\count306
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.t
|
|
||||||
ex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshared.code.t
|
|
||||||
ex
|
|
||||||
\c@pgfplotstable@counta=\count307
|
|
||||||
\t@pgfplotstable@a=\toks33
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.te
|
|
||||||
x) (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading
|
|
||||||
.code.tex
|
|
||||||
\c@pgfplotslibrarysurf@no=\count308
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.
|
|
||||||
pgfsys-pdftex.def)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
decorations.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex
|
|
||||||
\pgfdecoratedcompleteddistance=\dimen258
|
|
||||||
\pgfdecoratedremainingdistance=\dimen259
|
|
||||||
\pgfdecoratedinputsegmentcompleteddistance=\dimen260
|
|
||||||
\pgfdecoratedinputsegmentremainingdistance=\dimen261
|
|
||||||
\pgf@decorate@distancetomove=\dimen262
|
|
||||||
\pgf@decorate@repeatstate=\count309
|
|
||||||
\pgfdecorationsegmentamplitude=\dimen263
|
|
||||||
\pgfdecorationsegmentlength=\dimen264
|
|
||||||
)
|
|
||||||
\tikz@lib@dec@box=\box64
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
decorations.pathmorphing.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati
|
|
||||||
ons.pathmorphing.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
decorations.pathreplacing.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati
|
|
||||||
ons.pathreplacing.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua
|
|
||||||
.code.tex)
|
|
||||||
\pgfplots@numplots=\count310
|
|
||||||
\pgfplots@xmin@reg=\dimen265
|
|
||||||
\pgfplots@xmax@reg=\dimen266
|
|
||||||
\pgfplots@ymin@reg=\dimen267
|
|
||||||
\pgfplots@ymax@reg=\dimen268
|
|
||||||
\pgfplots@zmin@reg=\dimen269
|
|
||||||
\pgfplots@zmax@reg=\dimen270
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
plotmarks.code.tex
|
|
||||||
File: tikzlibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex
|
|
||||||
File: pgflibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.groupplots
|
|
||||||
.code.tex
|
|
||||||
\pgfplots@group@current@plot=\count311
|
|
||||||
\pgfplots@group@current@row=\count312
|
|
||||||
\pgfplots@group@current@column=\count313
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
calc.code.tex
|
|
||||||
File: tikzlibrarycalc.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)) (/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
|
||||||
File: l3backend-pdftex.def 2025-10-09 L3 backend support: PDF output (pdfTeX)
|
|
||||||
\l__color_backend_stack_int=\count314
|
|
||||||
)
|
|
||||||
No file pgftest3.aux.
|
|
||||||
\openout1 = `pgftest3.aux'.
|
|
||||||
|
|
||||||
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 8.
|
|
||||||
LaTeX Font Info: ... okay on input line 8.
|
|
||||||
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 8.
|
|
||||||
LaTeX Font Info: ... okay on input line 8.
|
|
||||||
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 8.
|
|
||||||
LaTeX Font Info: ... okay on input line 8.
|
|
||||||
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 8.
|
|
||||||
LaTeX Font Info: ... okay on input line 8.
|
|
||||||
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 8.
|
|
||||||
LaTeX Font Info: ... okay on input line 8.
|
|
||||||
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 8.
|
|
||||||
LaTeX Font Info: ... okay on input line 8.
|
|
||||||
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 8.
|
|
||||||
LaTeX Font Info: ... okay on input line 8.
|
|
||||||
(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
|
||||||
[Loading MPS to PDF converter (version 2006.09.02).]
|
|
||||||
\scratchcounter=\count315
|
|
||||||
\scratchdimen=\dimen271
|
|
||||||
\scratchbox=\box65
|
|
||||||
\nofMPsegments=\count316
|
|
||||||
\nofMParguments=\count317
|
|
||||||
\everyMPshowfont=\toks34
|
|
||||||
\MPscratchCnt=\count318
|
|
||||||
\MPscratchDim=\dimen272
|
|
||||||
\MPnumerator=\count319
|
|
||||||
\makeMPintoPDFobject=\count320
|
|
||||||
\everyMPtoPDFconversion=\toks35
|
|
||||||
) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
|
||||||
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
|
|
||||||
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
|
|
||||||
85.
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
|
|
||||||
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
|
|
||||||
e
|
|
||||||
))
|
|
||||||
Package pgfplots notification 'compat/show suggested version=true': document ha
|
|
||||||
s been generated with the most recent feature set (\pgfplotsset{compat=1.18}).
|
|
||||||
|
|
||||||
Package pgfplots info on input line 11: Using 'lua backend=false' for axis: ymo
|
|
||||||
de=log unsupported (yet).
|
|
||||||
Package pgfplots info on input line 11: Using 'lua backend=false' for axis: x c
|
|
||||||
oord trafo unsupported.
|
|
||||||
LaTeX Font Info: External font `cmex10' loaded for size
|
|
||||||
(Font) <7> on input line 13.
|
|
||||||
LaTeX Font Info: External font `cmex10' loaded for size
|
|
||||||
(Font) <5> on input line 13.
|
|
||||||
Package pgfplots info on input line 13: Using 'lua backend=false' for axis: ymo
|
|
||||||
de=log unsupported (yet).
|
|
||||||
Package pgfplots info on input line 13: Using 'lua backend=false' for axis: x c
|
|
||||||
oord trafo unsupported.
|
|
||||||
[1
|
|
||||||
|
|
||||||
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./pgftest3.aux)
|
|
||||||
***********
|
|
||||||
LaTeX2e <2025-11-01>
|
|
||||||
L3 programming layer <2026-01-19>
|
|
||||||
***********
|
|
||||||
)
|
|
||||||
Here is how much of TeX's memory you used:
|
|
||||||
22386 strings out of 469515
|
|
||||||
603412 string characters out of 5470808
|
|
||||||
1122992 words of memory out of 5000000
|
|
||||||
50734 multiletter control sequences out of 15000+600000
|
|
||||||
627721 words of font info for 40 fonts, out of 8000000 for 9000
|
|
||||||
14 hyphenation exceptions out of 8191
|
|
||||||
99i,9n,118p,740b,2310s stack positions out of 10000i,1000n,20000p,200000b,200000s
|
|
||||||
</usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb></usr/share/t
|
|
||||||
exmf-dist/fonts/type1/public/amsfonts/cm/cmr7.pfb>
|
|
||||||
Output written on pgftest3.pdf (1 page, 20634 bytes).
|
|
||||||
PDF statistics:
|
|
||||||
21 PDF objects out of 1000 (max. 8388607)
|
|
||||||
13 compressed objects within 1 object stream
|
|
||||||
0 named destinations out of 1000 (max. 500000)
|
|
||||||
13 words of extra memory for PDF output out of 10000 (max. 10000000)
|
|
||||||
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
\relax
|
|
||||||
\gdef \@abspage@last{1}
|
|
||||||
|
|
@ -1,496 +0,0 @@
|
||||||
This is pdfTeX, Version 3.141592653-2.6-1.40.29 (TeX Live 2026/Arch Linux) (preloaded format=pdflatex 2026.3.6) 4 APR 2026 13:45
|
|
||||||
entering extended mode
|
|
||||||
restricted \write18 enabled.
|
|
||||||
%&-line parsing enabled.
|
|
||||||
**/tmp/pgftest4.tex
|
|
||||||
(/tmp/pgftest4.tex
|
|
||||||
LaTeX2e <2025-11-01>
|
|
||||||
L3 programming layer <2026-01-19>
|
|
||||||
(/usr/share/texmf-dist/tex/latex/base/article.cls
|
|
||||||
Document Class: article 2025/01/22 v1.4n Standard LaTeX document class
|
|
||||||
(/usr/share/texmf-dist/tex/latex/base/size10.clo
|
|
||||||
File: size10.clo 2025/01/22 v1.4n Standard LaTeX file (size option)
|
|
||||||
)
|
|
||||||
\c@part=\count275
|
|
||||||
\c@section=\count276
|
|
||||||
\c@subsection=\count277
|
|
||||||
\c@subsubsection=\count278
|
|
||||||
\c@paragraph=\count279
|
|
||||||
\c@subparagraph=\count280
|
|
||||||
\c@figure=\count281
|
|
||||||
\c@table=\count282
|
|
||||||
\abovecaptionskip=\skip49
|
|
||||||
\belowcaptionskip=\skip50
|
|
||||||
\bibindent=\dimen148
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgfplots/pgfplots.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex)
|
|
||||||
Package: pgfplots 2025/08/14 v1.18.2 Data Visualization (1.18.2)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty
|
|
||||||
Package: graphicx 2024/12/31 v1.2e Enhanced LaTeX Graphics (DPC,SPQR)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/keyval.sty
|
|
||||||
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
|
|
||||||
\KV@toks@=\toks17
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/graphics.sty
|
|
||||||
Package: graphics 2024/08/06 v1.4g Standard LaTeX Graphics (DPC,SPQR)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/trig.sty
|
|
||||||
Package: trig 2023/12/02 v1.11 sin cos tan (DPC)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
|
|
||||||
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
|
|
||||||
)
|
|
||||||
Package graphics Info: Driver file: pdftex.def on input line 106.
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def
|
|
||||||
File: pdftex.def 2025/09/29 v1.2d Graphics/color driver for pdftex
|
|
||||||
))
|
|
||||||
\Gin@req@height=\dimen149
|
|
||||||
\Gin@req@width=\dimen150
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex
|
|
||||||
\pgfutil@everybye=\toks18
|
|
||||||
\pgfutil@tempdima=\dimen151
|
|
||||||
\pgfutil@tempdimb=\dimen152
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
|
|
||||||
\pgfutil@abb=\box53
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/pgf.revision.tex)
|
|
||||||
Package: pgfrcs 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))
|
|
||||||
Package: pgf 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
|
|
||||||
Package: pgfsys 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
|
|
||||||
\pgfkeys@pathtoks=\toks19
|
|
||||||
\pgfkeys@temptoks=\toks20
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.te
|
|
||||||
x
|
|
||||||
\pgfkeys@tmptoks=\toks21
|
|
||||||
))
|
|
||||||
\pgf@x=\dimen153
|
|
||||||
\pgf@y=\dimen154
|
|
||||||
\pgf@xa=\dimen155
|
|
||||||
\pgf@ya=\dimen156
|
|
||||||
\pgf@xb=\dimen157
|
|
||||||
\pgf@yb=\dimen158
|
|
||||||
\pgf@xc=\dimen159
|
|
||||||
\pgf@yc=\dimen160
|
|
||||||
\pgf@xd=\dimen161
|
|
||||||
\pgf@yd=\dimen162
|
|
||||||
\w@pgf@writea=\write3
|
|
||||||
\r@pgf@reada=\read2
|
|
||||||
\c@pgf@counta=\count283
|
|
||||||
\c@pgf@countb=\count284
|
|
||||||
\c@pgf@countc=\count285
|
|
||||||
\c@pgf@countd=\count286
|
|
||||||
\t@pgf@toka=\toks22
|
|
||||||
\t@pgf@tokb=\toks23
|
|
||||||
\t@pgf@tokc=\toks24
|
|
||||||
\pgf@sys@id@count=\count287
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
|
|
||||||
File: pgf.cfg 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
Driver file for pgf: pgfsys-pdftex.def
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def
|
|
||||||
File: pgfsys-pdftex.def 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def
|
|
||||||
File: pgfsys-common-pdf.def 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
|
|
||||||
File: pgfsyssoftpath.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfsyssoftpath@smallbuffer@items=\count288
|
|
||||||
\pgfsyssoftpath@bigbuffer@items=\count289
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
|
|
||||||
File: pgfsysprotocol.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty
|
|
||||||
Package: xcolor 2024/09/29 v3.02 LaTeX color extensions (UK)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
|
||||||
File: color.cfg 2016/01/02 v1.6 sample color configuration
|
|
||||||
)
|
|
||||||
Package xcolor Info: Driver file: pdftex.def on input line 274.
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx)
|
|
||||||
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1349.
|
|
||||||
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1353.
|
|
||||||
Package xcolor Info: Model `RGB' extended on input line 1365.
|
|
||||||
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1367.
|
|
||||||
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1368.
|
|
||||||
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1369.
|
|
||||||
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1370.
|
|
||||||
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1371.
|
|
||||||
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1372.
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
|
|
||||||
Package: pgfcore 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
|
|
||||||
\pgfmath@dimen=\dimen163
|
|
||||||
\pgfmath@count=\count290
|
|
||||||
\pgfmath@box=\box54
|
|
||||||
\pgfmath@toks=\toks25
|
|
||||||
\pgfmath@stack@operand=\toks26
|
|
||||||
\pgfmath@stack@operation=\toks27
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code
|
|
||||||
.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.te
|
|
||||||
x) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics
|
|
||||||
.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex
|
|
||||||
\c@pgfmathroundto@lastzeros=\count291
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfint.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex
|
|
||||||
File: pgfcorepoints.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@picminx=\dimen164
|
|
||||||
\pgf@picmaxx=\dimen165
|
|
||||||
\pgf@picminy=\dimen166
|
|
||||||
\pgf@picmaxy=\dimen167
|
|
||||||
\pgf@pathminx=\dimen168
|
|
||||||
\pgf@pathmaxx=\dimen169
|
|
||||||
\pgf@pathminy=\dimen170
|
|
||||||
\pgf@pathmaxy=\dimen171
|
|
||||||
\pgf@xx=\dimen172
|
|
||||||
\pgf@xy=\dimen173
|
|
||||||
\pgf@yx=\dimen174
|
|
||||||
\pgf@yy=\dimen175
|
|
||||||
\pgf@zx=\dimen176
|
|
||||||
\pgf@zy=\dimen177
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex
|
|
||||||
File: pgfcorepathconstruct.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@path@lastx=\dimen178
|
|
||||||
\pgf@path@lasty=\dimen179
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex
|
|
||||||
File: pgfcorepathusage.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@shorten@end@additional=\dimen180
|
|
||||||
\pgf@shorten@start@additional=\dimen181
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex
|
|
||||||
File: pgfcorescopes.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfpic=\box55
|
|
||||||
\pgf@hbox=\box56
|
|
||||||
\pgf@layerbox@main=\box57
|
|
||||||
\pgf@picture@serial@count=\count292
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex
|
|
||||||
File: pgfcoregraphicstate.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgflinewidth=\dimen182
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.t
|
|
||||||
ex
|
|
||||||
File: pgfcoretransformations.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@pt@x=\dimen183
|
|
||||||
\pgf@pt@y=\dimen184
|
|
||||||
\pgf@pt@temp=\dimen185
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex
|
|
||||||
File: pgfcorequick.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex
|
|
||||||
File: pgfcoreobjects.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.te
|
|
||||||
x
|
|
||||||
File: pgfcorepathprocessing.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex
|
|
||||||
File: pgfcorearrows.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfarrowsep=\dimen186
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex
|
|
||||||
File: pgfcoreshade.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@max=\dimen187
|
|
||||||
\pgf@sys@shading@range@num=\count293
|
|
||||||
\pgf@shadingcount=\count294
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex
|
|
||||||
File: pgfcoreimage.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex
|
|
||||||
File: pgfcoreexternal.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfexternal@startupbox=\box58
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex
|
|
||||||
File: pgfcorelayers.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex
|
|
||||||
File: pgfcoretransparency.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex
|
|
||||||
File: pgfcorepatterns.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex
|
|
||||||
File: pgfcorerdf.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex
|
|
||||||
File: pgfmoduleshapes.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfnodeparttextbox=\box59
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex
|
|
||||||
File: pgfmoduleplot.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty
|
|
||||||
Package: pgfcomp-version-0-65 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@nodesepstart=\dimen188
|
|
||||||
\pgf@nodesepend=\dimen189
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty
|
|
||||||
Package: pgfcomp-version-1-18 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
|
|
||||||
Package: pgffor 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgffor@iter=\dimen190
|
|
||||||
\pgffor@skip=\dimen191
|
|
||||||
\pgffor@stack=\toks28
|
|
||||||
\pgffor@toks=\toks29
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
|
|
||||||
Package: tikz 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.te
|
|
||||||
x
|
|
||||||
File: pgflibraryplothandlers.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@plot@mark@count=\count295
|
|
||||||
\pgfplotmarksize=\dimen192
|
|
||||||
)
|
|
||||||
\tikz@lastx=\dimen193
|
|
||||||
\tikz@lasty=\dimen194
|
|
||||||
\tikz@lastxsaved=\dimen195
|
|
||||||
\tikz@lastysaved=\dimen196
|
|
||||||
\tikz@lastmovetox=\dimen197
|
|
||||||
\tikz@lastmovetoy=\dimen198
|
|
||||||
\tikzleveldistance=\dimen199
|
|
||||||
\tikzsiblingdistance=\dimen256
|
|
||||||
\tikz@figbox=\box60
|
|
||||||
\tikz@figbox@bg=\box61
|
|
||||||
\tikz@tempbox=\box62
|
|
||||||
\tikz@tempbox@bg=\box63
|
|
||||||
\tikztreelevel=\count296
|
|
||||||
\tikznumberofchildren=\count297
|
|
||||||
\tikznumberofcurrentchild=\count298
|
|
||||||
\tikz@fig@count=\count299
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex
|
|
||||||
File: pgfmodulematrix.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfmatrixcurrentrow=\count300
|
|
||||||
\pgfmatrixcurrentcolumn=\count301
|
|
||||||
\pgf@matrix@numberofcolumns=\count302
|
|
||||||
)
|
|
||||||
\tikz@expandcount=\count303
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
topaths.code.tex
|
|
||||||
File: tikzlibrarytopaths.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex
|
|
||||||
\t@pgfplots@toka=\toks30
|
|
||||||
\t@pgfplots@tokb=\toks31
|
|
||||||
\t@pgfplots@tokc=\toks32
|
|
||||||
\pgfplots@tmpa=\dimen257
|
|
||||||
\c@pgfplots@coordindex=\count304
|
|
||||||
\c@pgfplots@scanlineindex=\count305
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_l
|
|
||||||
oader.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_p
|
|
||||||
gfutil-common-lists.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure
|
|
||||||
.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure
|
|
||||||
ext.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.te
|
|
||||||
x
|
|
||||||
\c@pgfplotsarray@tmp=\count306
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.t
|
|
||||||
ex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshared.code.t
|
|
||||||
ex
|
|
||||||
\c@pgfplotstable@counta=\count307
|
|
||||||
\t@pgfplotstable@a=\toks33
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.te
|
|
||||||
x) (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading
|
|
||||||
.code.tex
|
|
||||||
\c@pgfplotslibrarysurf@no=\count308
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.
|
|
||||||
pgfsys-pdftex.def)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
decorations.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex
|
|
||||||
\pgfdecoratedcompleteddistance=\dimen258
|
|
||||||
\pgfdecoratedremainingdistance=\dimen259
|
|
||||||
\pgfdecoratedinputsegmentcompleteddistance=\dimen260
|
|
||||||
\pgfdecoratedinputsegmentremainingdistance=\dimen261
|
|
||||||
\pgf@decorate@distancetomove=\dimen262
|
|
||||||
\pgf@decorate@repeatstate=\count309
|
|
||||||
\pgfdecorationsegmentamplitude=\dimen263
|
|
||||||
\pgfdecorationsegmentlength=\dimen264
|
|
||||||
)
|
|
||||||
\tikz@lib@dec@box=\box64
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
decorations.pathmorphing.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati
|
|
||||||
ons.pathmorphing.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
decorations.pathreplacing.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati
|
|
||||||
ons.pathreplacing.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua
|
|
||||||
.code.tex)
|
|
||||||
\pgfplots@numplots=\count310
|
|
||||||
\pgfplots@xmin@reg=\dimen265
|
|
||||||
\pgfplots@xmax@reg=\dimen266
|
|
||||||
\pgfplots@ymin@reg=\dimen267
|
|
||||||
\pgfplots@ymax@reg=\dimen268
|
|
||||||
\pgfplots@zmin@reg=\dimen269
|
|
||||||
\pgfplots@zmax@reg=\dimen270
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
plotmarks.code.tex
|
|
||||||
File: tikzlibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex
|
|
||||||
File: pgflibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))) (/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
|
||||||
File: l3backend-pdftex.def 2025-10-09 L3 backend support: PDF output (pdfTeX)
|
|
||||||
\l__color_backend_stack_int=\count311
|
|
||||||
)
|
|
||||||
No file pgftest4.aux.
|
|
||||||
\openout1 = `pgftest4.aux'.
|
|
||||||
|
|
||||||
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 8.
|
|
||||||
LaTeX Font Info: ... okay on input line 8.
|
|
||||||
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 8.
|
|
||||||
LaTeX Font Info: ... okay on input line 8.
|
|
||||||
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 8.
|
|
||||||
LaTeX Font Info: ... okay on input line 8.
|
|
||||||
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 8.
|
|
||||||
LaTeX Font Info: ... okay on input line 8.
|
|
||||||
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 8.
|
|
||||||
LaTeX Font Info: ... okay on input line 8.
|
|
||||||
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 8.
|
|
||||||
LaTeX Font Info: ... okay on input line 8.
|
|
||||||
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 8.
|
|
||||||
LaTeX Font Info: ... okay on input line 8.
|
|
||||||
(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
|
||||||
[Loading MPS to PDF converter (version 2006.09.02).]
|
|
||||||
\scratchcounter=\count312
|
|
||||||
\scratchdimen=\dimen271
|
|
||||||
\scratchbox=\box65
|
|
||||||
\nofMPsegments=\count313
|
|
||||||
\nofMParguments=\count314
|
|
||||||
\everyMPshowfont=\toks34
|
|
||||||
\MPscratchCnt=\count315
|
|
||||||
\MPscratchDim=\dimen272
|
|
||||||
\MPnumerator=\count316
|
|
||||||
\makeMPintoPDFobject=\count317
|
|
||||||
\everyMPtoPDFconversion=\toks35
|
|
||||||
) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
|
||||||
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
|
|
||||||
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
|
|
||||||
85.
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
|
|
||||||
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
|
|
||||||
e
|
|
||||||
))
|
|
||||||
Package pgfplots notification 'compat/show suggested version=true': document ha
|
|
||||||
s been generated with the most recent feature set (\pgfplotsset{compat=1.18}).
|
|
||||||
|
|
||||||
Package pgfplots info on input line 11: Using 'lua backend=false' for axis: x c
|
|
||||||
oord trafo unsupported.
|
|
||||||
|
|
||||||
! Package pgfkeys Error: I do not know the key '/tikz/ymode', to which you pass
|
|
||||||
ed 'log', and I am going to ignore it. Perhaps you misspelled it.
|
|
||||||
|
|
||||||
See the pgfkeys package documentation for explanation.
|
|
||||||
Type H <return> for immediate help.
|
|
||||||
...
|
|
||||||
|
|
||||||
l.13 \end{axis}
|
|
||||||
|
|
||||||
This error message was generated by an \errmessage
|
|
||||||
command, so I can't give any explicit help.
|
|
||||||
Pretend that you're Hercule Poirot: Examine all clues,
|
|
||||||
and deduce the truth by order and method.
|
|
||||||
|
|
||||||
LaTeX Font Info: External font `cmex10' loaded for size
|
|
||||||
(Font) <7> on input line 13.
|
|
||||||
LaTeX Font Info: External font `cmex10' loaded for size
|
|
||||||
(Font) <5> on input line 13.
|
|
||||||
[1
|
|
||||||
|
|
||||||
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./pgftest4.aux)
|
|
||||||
***********
|
|
||||||
LaTeX2e <2025-11-01>
|
|
||||||
L3 programming layer <2026-01-19>
|
|
||||||
***********
|
|
||||||
)
|
|
||||||
Here is how much of TeX's memory you used:
|
|
||||||
22165 strings out of 469515
|
|
||||||
595598 string characters out of 5470808
|
|
||||||
1118992 words of memory out of 5000000
|
|
||||||
50519 multiletter control sequences out of 15000+600000
|
|
||||||
627721 words of font info for 40 fonts, out of 8000000 for 9000
|
|
||||||
14 hyphenation exceptions out of 8191
|
|
||||||
99i,9n,118p,734b,2073s stack positions out of 10000i,1000n,20000p,200000b,200000s
|
|
||||||
</usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb>
|
|
||||||
Output written on pgftest4.pdf (1 page, 11971 bytes).
|
|
||||||
PDF statistics:
|
|
||||||
16 PDF objects out of 1000 (max. 8388607)
|
|
||||||
10 compressed objects within 1 object stream
|
|
||||||
0 named destinations out of 1000 (max. 500000)
|
|
||||||
13 words of extra memory for PDF output out of 10000 (max. 10000000)
|
|
||||||
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
\relax
|
|
||||||
\gdef \@abspage@last{1}
|
|
||||||
|
|
@ -1,497 +0,0 @@
|
||||||
This is pdfTeX, Version 3.141592653-2.6-1.40.29 (TeX Live 2026/Arch Linux) (preloaded format=pdflatex 2026.3.6) 4 APR 2026 13:45
|
|
||||||
entering extended mode
|
|
||||||
restricted \write18 enabled.
|
|
||||||
%&-line parsing enabled.
|
|
||||||
**/tmp/pgftest5.tex
|
|
||||||
(/tmp/pgftest5.tex
|
|
||||||
LaTeX2e <2025-11-01>
|
|
||||||
L3 programming layer <2026-01-19>
|
|
||||||
(/usr/share/texmf-dist/tex/latex/base/article.cls
|
|
||||||
Document Class: article 2025/01/22 v1.4n Standard LaTeX document class
|
|
||||||
(/usr/share/texmf-dist/tex/latex/base/size10.clo
|
|
||||||
File: size10.clo 2025/01/22 v1.4n Standard LaTeX file (size option)
|
|
||||||
)
|
|
||||||
\c@part=\count275
|
|
||||||
\c@section=\count276
|
|
||||||
\c@subsection=\count277
|
|
||||||
\c@subsubsection=\count278
|
|
||||||
\c@paragraph=\count279
|
|
||||||
\c@subparagraph=\count280
|
|
||||||
\c@figure=\count281
|
|
||||||
\c@table=\count282
|
|
||||||
\abovecaptionskip=\skip49
|
|
||||||
\belowcaptionskip=\skip50
|
|
||||||
\bibindent=\dimen148
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgfplots/pgfplots.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex)
|
|
||||||
Package: pgfplots 2025/08/14 v1.18.2 Data Visualization (1.18.2)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty
|
|
||||||
Package: graphicx 2024/12/31 v1.2e Enhanced LaTeX Graphics (DPC,SPQR)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/keyval.sty
|
|
||||||
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
|
|
||||||
\KV@toks@=\toks17
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/graphics.sty
|
|
||||||
Package: graphics 2024/08/06 v1.4g Standard LaTeX Graphics (DPC,SPQR)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/trig.sty
|
|
||||||
Package: trig 2023/12/02 v1.11 sin cos tan (DPC)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
|
|
||||||
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
|
|
||||||
)
|
|
||||||
Package graphics Info: Driver file: pdftex.def on input line 106.
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def
|
|
||||||
File: pdftex.def 2025/09/29 v1.2d Graphics/color driver for pdftex
|
|
||||||
))
|
|
||||||
\Gin@req@height=\dimen149
|
|
||||||
\Gin@req@width=\dimen150
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex
|
|
||||||
\pgfutil@everybye=\toks18
|
|
||||||
\pgfutil@tempdima=\dimen151
|
|
||||||
\pgfutil@tempdimb=\dimen152
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
|
|
||||||
\pgfutil@abb=\box53
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/pgf.revision.tex)
|
|
||||||
Package: pgfrcs 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))
|
|
||||||
Package: pgf 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
|
|
||||||
Package: pgfsys 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
|
|
||||||
\pgfkeys@pathtoks=\toks19
|
|
||||||
\pgfkeys@temptoks=\toks20
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.te
|
|
||||||
x
|
|
||||||
\pgfkeys@tmptoks=\toks21
|
|
||||||
))
|
|
||||||
\pgf@x=\dimen153
|
|
||||||
\pgf@y=\dimen154
|
|
||||||
\pgf@xa=\dimen155
|
|
||||||
\pgf@ya=\dimen156
|
|
||||||
\pgf@xb=\dimen157
|
|
||||||
\pgf@yb=\dimen158
|
|
||||||
\pgf@xc=\dimen159
|
|
||||||
\pgf@yc=\dimen160
|
|
||||||
\pgf@xd=\dimen161
|
|
||||||
\pgf@yd=\dimen162
|
|
||||||
\w@pgf@writea=\write3
|
|
||||||
\r@pgf@reada=\read2
|
|
||||||
\c@pgf@counta=\count283
|
|
||||||
\c@pgf@countb=\count284
|
|
||||||
\c@pgf@countc=\count285
|
|
||||||
\c@pgf@countd=\count286
|
|
||||||
\t@pgf@toka=\toks22
|
|
||||||
\t@pgf@tokb=\toks23
|
|
||||||
\t@pgf@tokc=\toks24
|
|
||||||
\pgf@sys@id@count=\count287
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
|
|
||||||
File: pgf.cfg 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
Driver file for pgf: pgfsys-pdftex.def
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def
|
|
||||||
File: pgfsys-pdftex.def 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def
|
|
||||||
File: pgfsys-common-pdf.def 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
|
|
||||||
File: pgfsyssoftpath.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfsyssoftpath@smallbuffer@items=\count288
|
|
||||||
\pgfsyssoftpath@bigbuffer@items=\count289
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
|
|
||||||
File: pgfsysprotocol.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty
|
|
||||||
Package: xcolor 2024/09/29 v3.02 LaTeX color extensions (UK)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
|
||||||
File: color.cfg 2016/01/02 v1.6 sample color configuration
|
|
||||||
)
|
|
||||||
Package xcolor Info: Driver file: pdftex.def on input line 274.
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx)
|
|
||||||
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1349.
|
|
||||||
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1353.
|
|
||||||
Package xcolor Info: Model `RGB' extended on input line 1365.
|
|
||||||
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1367.
|
|
||||||
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1368.
|
|
||||||
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1369.
|
|
||||||
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1370.
|
|
||||||
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1371.
|
|
||||||
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1372.
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
|
|
||||||
Package: pgfcore 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
|
|
||||||
\pgfmath@dimen=\dimen163
|
|
||||||
\pgfmath@count=\count290
|
|
||||||
\pgfmath@box=\box54
|
|
||||||
\pgfmath@toks=\toks25
|
|
||||||
\pgfmath@stack@operand=\toks26
|
|
||||||
\pgfmath@stack@operation=\toks27
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code
|
|
||||||
.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.te
|
|
||||||
x) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics
|
|
||||||
.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex
|
|
||||||
\c@pgfmathroundto@lastzeros=\count291
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfint.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex
|
|
||||||
File: pgfcorepoints.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@picminx=\dimen164
|
|
||||||
\pgf@picmaxx=\dimen165
|
|
||||||
\pgf@picminy=\dimen166
|
|
||||||
\pgf@picmaxy=\dimen167
|
|
||||||
\pgf@pathminx=\dimen168
|
|
||||||
\pgf@pathmaxx=\dimen169
|
|
||||||
\pgf@pathminy=\dimen170
|
|
||||||
\pgf@pathmaxy=\dimen171
|
|
||||||
\pgf@xx=\dimen172
|
|
||||||
\pgf@xy=\dimen173
|
|
||||||
\pgf@yx=\dimen174
|
|
||||||
\pgf@yy=\dimen175
|
|
||||||
\pgf@zx=\dimen176
|
|
||||||
\pgf@zy=\dimen177
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex
|
|
||||||
File: pgfcorepathconstruct.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@path@lastx=\dimen178
|
|
||||||
\pgf@path@lasty=\dimen179
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex
|
|
||||||
File: pgfcorepathusage.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@shorten@end@additional=\dimen180
|
|
||||||
\pgf@shorten@start@additional=\dimen181
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex
|
|
||||||
File: pgfcorescopes.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfpic=\box55
|
|
||||||
\pgf@hbox=\box56
|
|
||||||
\pgf@layerbox@main=\box57
|
|
||||||
\pgf@picture@serial@count=\count292
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex
|
|
||||||
File: pgfcoregraphicstate.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgflinewidth=\dimen182
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.t
|
|
||||||
ex
|
|
||||||
File: pgfcoretransformations.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@pt@x=\dimen183
|
|
||||||
\pgf@pt@y=\dimen184
|
|
||||||
\pgf@pt@temp=\dimen185
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex
|
|
||||||
File: pgfcorequick.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex
|
|
||||||
File: pgfcoreobjects.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.te
|
|
||||||
x
|
|
||||||
File: pgfcorepathprocessing.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex
|
|
||||||
File: pgfcorearrows.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfarrowsep=\dimen186
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex
|
|
||||||
File: pgfcoreshade.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@max=\dimen187
|
|
||||||
\pgf@sys@shading@range@num=\count293
|
|
||||||
\pgf@shadingcount=\count294
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex
|
|
||||||
File: pgfcoreimage.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex
|
|
||||||
File: pgfcoreexternal.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfexternal@startupbox=\box58
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex
|
|
||||||
File: pgfcorelayers.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex
|
|
||||||
File: pgfcoretransparency.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex
|
|
||||||
File: pgfcorepatterns.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex
|
|
||||||
File: pgfcorerdf.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex
|
|
||||||
File: pgfmoduleshapes.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfnodeparttextbox=\box59
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex
|
|
||||||
File: pgfmoduleplot.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty
|
|
||||||
Package: pgfcomp-version-0-65 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@nodesepstart=\dimen188
|
|
||||||
\pgf@nodesepend=\dimen189
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty
|
|
||||||
Package: pgfcomp-version-1-18 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
|
|
||||||
Package: pgffor 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgffor@iter=\dimen190
|
|
||||||
\pgffor@skip=\dimen191
|
|
||||||
\pgffor@stack=\toks28
|
|
||||||
\pgffor@toks=\toks29
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
|
|
||||||
Package: tikz 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.te
|
|
||||||
x
|
|
||||||
File: pgflibraryplothandlers.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@plot@mark@count=\count295
|
|
||||||
\pgfplotmarksize=\dimen192
|
|
||||||
)
|
|
||||||
\tikz@lastx=\dimen193
|
|
||||||
\tikz@lasty=\dimen194
|
|
||||||
\tikz@lastxsaved=\dimen195
|
|
||||||
\tikz@lastysaved=\dimen196
|
|
||||||
\tikz@lastmovetox=\dimen197
|
|
||||||
\tikz@lastmovetoy=\dimen198
|
|
||||||
\tikzleveldistance=\dimen199
|
|
||||||
\tikzsiblingdistance=\dimen256
|
|
||||||
\tikz@figbox=\box60
|
|
||||||
\tikz@figbox@bg=\box61
|
|
||||||
\tikz@tempbox=\box62
|
|
||||||
\tikz@tempbox@bg=\box63
|
|
||||||
\tikztreelevel=\count296
|
|
||||||
\tikznumberofchildren=\count297
|
|
||||||
\tikznumberofcurrentchild=\count298
|
|
||||||
\tikz@fig@count=\count299
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex
|
|
||||||
File: pgfmodulematrix.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfmatrixcurrentrow=\count300
|
|
||||||
\pgfmatrixcurrentcolumn=\count301
|
|
||||||
\pgf@matrix@numberofcolumns=\count302
|
|
||||||
)
|
|
||||||
\tikz@expandcount=\count303
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
topaths.code.tex
|
|
||||||
File: tikzlibrarytopaths.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex
|
|
||||||
\t@pgfplots@toka=\toks30
|
|
||||||
\t@pgfplots@tokb=\toks31
|
|
||||||
\t@pgfplots@tokc=\toks32
|
|
||||||
\pgfplots@tmpa=\dimen257
|
|
||||||
\c@pgfplots@coordindex=\count304
|
|
||||||
\c@pgfplots@scanlineindex=\count305
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_l
|
|
||||||
oader.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_p
|
|
||||||
gfutil-common-lists.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure
|
|
||||||
.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure
|
|
||||||
ext.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.te
|
|
||||||
x
|
|
||||||
\c@pgfplotsarray@tmp=\count306
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.t
|
|
||||||
ex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshared.code.t
|
|
||||||
ex
|
|
||||||
\c@pgfplotstable@counta=\count307
|
|
||||||
\t@pgfplotstable@a=\toks33
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.te
|
|
||||||
x) (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading
|
|
||||||
.code.tex
|
|
||||||
\c@pgfplotslibrarysurf@no=\count308
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.
|
|
||||||
pgfsys-pdftex.def)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
decorations.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex
|
|
||||||
\pgfdecoratedcompleteddistance=\dimen258
|
|
||||||
\pgfdecoratedremainingdistance=\dimen259
|
|
||||||
\pgfdecoratedinputsegmentcompleteddistance=\dimen260
|
|
||||||
\pgfdecoratedinputsegmentremainingdistance=\dimen261
|
|
||||||
\pgf@decorate@distancetomove=\dimen262
|
|
||||||
\pgf@decorate@repeatstate=\count309
|
|
||||||
\pgfdecorationsegmentamplitude=\dimen263
|
|
||||||
\pgfdecorationsegmentlength=\dimen264
|
|
||||||
)
|
|
||||||
\tikz@lib@dec@box=\box64
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
decorations.pathmorphing.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati
|
|
||||||
ons.pathmorphing.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
decorations.pathreplacing.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati
|
|
||||||
ons.pathreplacing.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua
|
|
||||||
.code.tex)
|
|
||||||
\pgfplots@numplots=\count310
|
|
||||||
\pgfplots@xmin@reg=\dimen265
|
|
||||||
\pgfplots@xmax@reg=\dimen266
|
|
||||||
\pgfplots@ymin@reg=\dimen267
|
|
||||||
\pgfplots@ymax@reg=\dimen268
|
|
||||||
\pgfplots@zmin@reg=\dimen269
|
|
||||||
\pgfplots@zmax@reg=\dimen270
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
plotmarks.code.tex
|
|
||||||
File: tikzlibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex
|
|
||||||
File: pgflibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))) (/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
|
||||||
File: l3backend-pdftex.def 2025-10-09 L3 backend support: PDF output (pdfTeX)
|
|
||||||
\l__color_backend_stack_int=\count311
|
|
||||||
)
|
|
||||||
No file pgftest5.aux.
|
|
||||||
\openout1 = `pgftest5.aux'.
|
|
||||||
|
|
||||||
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 13.
|
|
||||||
LaTeX Font Info: ... okay on input line 13.
|
|
||||||
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 13.
|
|
||||||
LaTeX Font Info: ... okay on input line 13.
|
|
||||||
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 13.
|
|
||||||
LaTeX Font Info: ... okay on input line 13.
|
|
||||||
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 13.
|
|
||||||
LaTeX Font Info: ... okay on input line 13.
|
|
||||||
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 13.
|
|
||||||
LaTeX Font Info: ... okay on input line 13.
|
|
||||||
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 13.
|
|
||||||
LaTeX Font Info: ... okay on input line 13.
|
|
||||||
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 13.
|
|
||||||
LaTeX Font Info: ... okay on input line 13.
|
|
||||||
(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
|
||||||
[Loading MPS to PDF converter (version 2006.09.02).]
|
|
||||||
\scratchcounter=\count312
|
|
||||||
\scratchdimen=\dimen271
|
|
||||||
\scratchbox=\box65
|
|
||||||
\nofMPsegments=\count313
|
|
||||||
\nofMParguments=\count314
|
|
||||||
\everyMPshowfont=\toks34
|
|
||||||
\MPscratchCnt=\count315
|
|
||||||
\MPscratchDim=\dimen272
|
|
||||||
\MPnumerator=\count316
|
|
||||||
\makeMPintoPDFobject=\count317
|
|
||||||
\everyMPtoPDFconversion=\toks35
|
|
||||||
) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
|
||||||
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
|
|
||||||
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
|
|
||||||
85.
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
|
|
||||||
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
|
|
||||||
e
|
|
||||||
))
|
|
||||||
Package pgfplots notification 'compat/show suggested version=true': document ha
|
|
||||||
s been generated with the most recent feature set (\pgfplotsset{compat=1.18}).
|
|
||||||
|
|
||||||
Package pgfplots info on input line 16: Using 'lua backend=false' for axis: x c
|
|
||||||
oord trafo unsupported.
|
|
||||||
|
|
||||||
! Package pgfkeys Error: I do not know the key '/tikz/ymode', to which you pass
|
|
||||||
ed 'log', and I am going to ignore it. Perhaps you misspelled it.
|
|
||||||
|
|
||||||
See the pgfkeys package documentation for explanation.
|
|
||||||
Type H <return> for immediate help.
|
|
||||||
...
|
|
||||||
|
|
||||||
l.18 \end{axis}
|
|
||||||
|
|
||||||
This error message was generated by an \errmessage
|
|
||||||
command, so I can't give any explicit help.
|
|
||||||
Pretend that you're Hercule Poirot: Examine all clues,
|
|
||||||
and deduce the truth by order and method.
|
|
||||||
|
|
||||||
LaTeX Font Info: External font `cmex10' loaded for size
|
|
||||||
(Font) <7> on input line 18.
|
|
||||||
LaTeX Font Info: External font `cmex10' loaded for size
|
|
||||||
(Font) <5> on input line 18.
|
|
||||||
[1
|
|
||||||
|
|
||||||
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./pgftest5.aux)
|
|
||||||
***********
|
|
||||||
LaTeX2e <2025-11-01>
|
|
||||||
L3 programming layer <2026-01-19>
|
|
||||||
***********
|
|
||||||
)
|
|
||||||
Here is how much of TeX's memory you used:
|
|
||||||
22168 strings out of 469515
|
|
||||||
595556 string characters out of 5470808
|
|
||||||
1118992 words of memory out of 5000000
|
|
||||||
50521 multiletter control sequences out of 15000+600000
|
|
||||||
628020 words of font info for 41 fonts, out of 8000000 for 9000
|
|
||||||
14 hyphenation exceptions out of 8191
|
|
||||||
99i,9n,118p,734b,2077s stack positions out of 10000i,1000n,20000p,200000b,200000s
|
|
||||||
</usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb></usr/share/t
|
|
||||||
exmf-dist/fonts/type1/public/amsfonts/cm/cmr9.pfb>
|
|
||||||
Output written on pgftest5.pdf (1 page, 19832 bytes).
|
|
||||||
PDF statistics:
|
|
||||||
21 PDF objects out of 1000 (max. 8388607)
|
|
||||||
13 compressed objects within 1 object stream
|
|
||||||
0 named destinations out of 1000 (max. 500000)
|
|
||||||
13 words of extra memory for PDF output out of 10000 (max. 10000000)
|
|
||||||
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
\relax
|
|
||||||
\gdef \@abspage@last{1}
|
|
||||||
|
|
@ -1,496 +0,0 @@
|
||||||
This is pdfTeX, Version 3.141592653-2.6-1.40.29 (TeX Live 2026/Arch Linux) (preloaded format=pdflatex 2026.3.6) 4 APR 2026 13:46
|
|
||||||
entering extended mode
|
|
||||||
restricted \write18 enabled.
|
|
||||||
%&-line parsing enabled.
|
|
||||||
**/tmp/pgftest6.tex
|
|
||||||
(/tmp/pgftest6.tex
|
|
||||||
LaTeX2e <2025-11-01>
|
|
||||||
L3 programming layer <2026-01-19>
|
|
||||||
(/usr/share/texmf-dist/tex/latex/base/article.cls
|
|
||||||
Document Class: article 2025/01/22 v1.4n Standard LaTeX document class
|
|
||||||
(/usr/share/texmf-dist/tex/latex/base/size10.clo
|
|
||||||
File: size10.clo 2025/01/22 v1.4n Standard LaTeX file (size option)
|
|
||||||
)
|
|
||||||
\c@part=\count275
|
|
||||||
\c@section=\count276
|
|
||||||
\c@subsection=\count277
|
|
||||||
\c@subsubsection=\count278
|
|
||||||
\c@paragraph=\count279
|
|
||||||
\c@subparagraph=\count280
|
|
||||||
\c@figure=\count281
|
|
||||||
\c@table=\count282
|
|
||||||
\abovecaptionskip=\skip49
|
|
||||||
\belowcaptionskip=\skip50
|
|
||||||
\bibindent=\dimen148
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgfplots/pgfplots.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex)
|
|
||||||
Package: pgfplots 2025/08/14 v1.18.2 Data Visualization (1.18.2)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty
|
|
||||||
Package: graphicx 2024/12/31 v1.2e Enhanced LaTeX Graphics (DPC,SPQR)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/keyval.sty
|
|
||||||
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
|
|
||||||
\KV@toks@=\toks17
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/graphics.sty
|
|
||||||
Package: graphics 2024/08/06 v1.4g Standard LaTeX Graphics (DPC,SPQR)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/trig.sty
|
|
||||||
Package: trig 2023/12/02 v1.11 sin cos tan (DPC)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
|
|
||||||
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
|
|
||||||
)
|
|
||||||
Package graphics Info: Driver file: pdftex.def on input line 106.
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def
|
|
||||||
File: pdftex.def 2025/09/29 v1.2d Graphics/color driver for pdftex
|
|
||||||
))
|
|
||||||
\Gin@req@height=\dimen149
|
|
||||||
\Gin@req@width=\dimen150
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex
|
|
||||||
\pgfutil@everybye=\toks18
|
|
||||||
\pgfutil@tempdima=\dimen151
|
|
||||||
\pgfutil@tempdimb=\dimen152
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
|
|
||||||
\pgfutil@abb=\box53
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/pgf.revision.tex)
|
|
||||||
Package: pgfrcs 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))
|
|
||||||
Package: pgf 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
|
|
||||||
Package: pgfsys 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
|
|
||||||
\pgfkeys@pathtoks=\toks19
|
|
||||||
\pgfkeys@temptoks=\toks20
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.te
|
|
||||||
x
|
|
||||||
\pgfkeys@tmptoks=\toks21
|
|
||||||
))
|
|
||||||
\pgf@x=\dimen153
|
|
||||||
\pgf@y=\dimen154
|
|
||||||
\pgf@xa=\dimen155
|
|
||||||
\pgf@ya=\dimen156
|
|
||||||
\pgf@xb=\dimen157
|
|
||||||
\pgf@yb=\dimen158
|
|
||||||
\pgf@xc=\dimen159
|
|
||||||
\pgf@yc=\dimen160
|
|
||||||
\pgf@xd=\dimen161
|
|
||||||
\pgf@yd=\dimen162
|
|
||||||
\w@pgf@writea=\write3
|
|
||||||
\r@pgf@reada=\read2
|
|
||||||
\c@pgf@counta=\count283
|
|
||||||
\c@pgf@countb=\count284
|
|
||||||
\c@pgf@countc=\count285
|
|
||||||
\c@pgf@countd=\count286
|
|
||||||
\t@pgf@toka=\toks22
|
|
||||||
\t@pgf@tokb=\toks23
|
|
||||||
\t@pgf@tokc=\toks24
|
|
||||||
\pgf@sys@id@count=\count287
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
|
|
||||||
File: pgf.cfg 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
Driver file for pgf: pgfsys-pdftex.def
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def
|
|
||||||
File: pgfsys-pdftex.def 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def
|
|
||||||
File: pgfsys-common-pdf.def 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
|
|
||||||
File: pgfsyssoftpath.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfsyssoftpath@smallbuffer@items=\count288
|
|
||||||
\pgfsyssoftpath@bigbuffer@items=\count289
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
|
|
||||||
File: pgfsysprotocol.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty
|
|
||||||
Package: xcolor 2024/09/29 v3.02 LaTeX color extensions (UK)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
|
||||||
File: color.cfg 2016/01/02 v1.6 sample color configuration
|
|
||||||
)
|
|
||||||
Package xcolor Info: Driver file: pdftex.def on input line 274.
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx)
|
|
||||||
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1349.
|
|
||||||
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1353.
|
|
||||||
Package xcolor Info: Model `RGB' extended on input line 1365.
|
|
||||||
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1367.
|
|
||||||
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1368.
|
|
||||||
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1369.
|
|
||||||
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1370.
|
|
||||||
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1371.
|
|
||||||
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1372.
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
|
|
||||||
Package: pgfcore 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
|
|
||||||
\pgfmath@dimen=\dimen163
|
|
||||||
\pgfmath@count=\count290
|
|
||||||
\pgfmath@box=\box54
|
|
||||||
\pgfmath@toks=\toks25
|
|
||||||
\pgfmath@stack@operand=\toks26
|
|
||||||
\pgfmath@stack@operation=\toks27
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code
|
|
||||||
.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.te
|
|
||||||
x) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics
|
|
||||||
.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex
|
|
||||||
\c@pgfmathroundto@lastzeros=\count291
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfint.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex
|
|
||||||
File: pgfcorepoints.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@picminx=\dimen164
|
|
||||||
\pgf@picmaxx=\dimen165
|
|
||||||
\pgf@picminy=\dimen166
|
|
||||||
\pgf@picmaxy=\dimen167
|
|
||||||
\pgf@pathminx=\dimen168
|
|
||||||
\pgf@pathmaxx=\dimen169
|
|
||||||
\pgf@pathminy=\dimen170
|
|
||||||
\pgf@pathmaxy=\dimen171
|
|
||||||
\pgf@xx=\dimen172
|
|
||||||
\pgf@xy=\dimen173
|
|
||||||
\pgf@yx=\dimen174
|
|
||||||
\pgf@yy=\dimen175
|
|
||||||
\pgf@zx=\dimen176
|
|
||||||
\pgf@zy=\dimen177
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex
|
|
||||||
File: pgfcorepathconstruct.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@path@lastx=\dimen178
|
|
||||||
\pgf@path@lasty=\dimen179
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex
|
|
||||||
File: pgfcorepathusage.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@shorten@end@additional=\dimen180
|
|
||||||
\pgf@shorten@start@additional=\dimen181
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex
|
|
||||||
File: pgfcorescopes.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfpic=\box55
|
|
||||||
\pgf@hbox=\box56
|
|
||||||
\pgf@layerbox@main=\box57
|
|
||||||
\pgf@picture@serial@count=\count292
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex
|
|
||||||
File: pgfcoregraphicstate.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgflinewidth=\dimen182
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.t
|
|
||||||
ex
|
|
||||||
File: pgfcoretransformations.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@pt@x=\dimen183
|
|
||||||
\pgf@pt@y=\dimen184
|
|
||||||
\pgf@pt@temp=\dimen185
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex
|
|
||||||
File: pgfcorequick.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex
|
|
||||||
File: pgfcoreobjects.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.te
|
|
||||||
x
|
|
||||||
File: pgfcorepathprocessing.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex
|
|
||||||
File: pgfcorearrows.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfarrowsep=\dimen186
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex
|
|
||||||
File: pgfcoreshade.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@max=\dimen187
|
|
||||||
\pgf@sys@shading@range@num=\count293
|
|
||||||
\pgf@shadingcount=\count294
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex
|
|
||||||
File: pgfcoreimage.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex
|
|
||||||
File: pgfcoreexternal.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfexternal@startupbox=\box58
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex
|
|
||||||
File: pgfcorelayers.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex
|
|
||||||
File: pgfcoretransparency.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex
|
|
||||||
File: pgfcorepatterns.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex
|
|
||||||
File: pgfcorerdf.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex
|
|
||||||
File: pgfmoduleshapes.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfnodeparttextbox=\box59
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex
|
|
||||||
File: pgfmoduleplot.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty
|
|
||||||
Package: pgfcomp-version-0-65 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@nodesepstart=\dimen188
|
|
||||||
\pgf@nodesepend=\dimen189
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty
|
|
||||||
Package: pgfcomp-version-1-18 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
|
|
||||||
Package: pgffor 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgffor@iter=\dimen190
|
|
||||||
\pgffor@skip=\dimen191
|
|
||||||
\pgffor@stack=\toks28
|
|
||||||
\pgffor@toks=\toks29
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
|
|
||||||
Package: tikz 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.te
|
|
||||||
x
|
|
||||||
File: pgflibraryplothandlers.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@plot@mark@count=\count295
|
|
||||||
\pgfplotmarksize=\dimen192
|
|
||||||
)
|
|
||||||
\tikz@lastx=\dimen193
|
|
||||||
\tikz@lasty=\dimen194
|
|
||||||
\tikz@lastxsaved=\dimen195
|
|
||||||
\tikz@lastysaved=\dimen196
|
|
||||||
\tikz@lastmovetox=\dimen197
|
|
||||||
\tikz@lastmovetoy=\dimen198
|
|
||||||
\tikzleveldistance=\dimen199
|
|
||||||
\tikzsiblingdistance=\dimen256
|
|
||||||
\tikz@figbox=\box60
|
|
||||||
\tikz@figbox@bg=\box61
|
|
||||||
\tikz@tempbox=\box62
|
|
||||||
\tikz@tempbox@bg=\box63
|
|
||||||
\tikztreelevel=\count296
|
|
||||||
\tikznumberofchildren=\count297
|
|
||||||
\tikznumberofcurrentchild=\count298
|
|
||||||
\tikz@fig@count=\count299
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex
|
|
||||||
File: pgfmodulematrix.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfmatrixcurrentrow=\count300
|
|
||||||
\pgfmatrixcurrentcolumn=\count301
|
|
||||||
\pgf@matrix@numberofcolumns=\count302
|
|
||||||
)
|
|
||||||
\tikz@expandcount=\count303
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
topaths.code.tex
|
|
||||||
File: tikzlibrarytopaths.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex
|
|
||||||
\t@pgfplots@toka=\toks30
|
|
||||||
\t@pgfplots@tokb=\toks31
|
|
||||||
\t@pgfplots@tokc=\toks32
|
|
||||||
\pgfplots@tmpa=\dimen257
|
|
||||||
\c@pgfplots@coordindex=\count304
|
|
||||||
\c@pgfplots@scanlineindex=\count305
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_l
|
|
||||||
oader.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_p
|
|
||||||
gfutil-common-lists.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure
|
|
||||||
.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure
|
|
||||||
ext.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.te
|
|
||||||
x
|
|
||||||
\c@pgfplotsarray@tmp=\count306
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.t
|
|
||||||
ex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshared.code.t
|
|
||||||
ex
|
|
||||||
\c@pgfplotstable@counta=\count307
|
|
||||||
\t@pgfplotstable@a=\toks33
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.te
|
|
||||||
x) (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading
|
|
||||||
.code.tex
|
|
||||||
\c@pgfplotslibrarysurf@no=\count308
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.
|
|
||||||
pgfsys-pdftex.def)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
decorations.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex
|
|
||||||
\pgfdecoratedcompleteddistance=\dimen258
|
|
||||||
\pgfdecoratedremainingdistance=\dimen259
|
|
||||||
\pgfdecoratedinputsegmentcompleteddistance=\dimen260
|
|
||||||
\pgfdecoratedinputsegmentremainingdistance=\dimen261
|
|
||||||
\pgf@decorate@distancetomove=\dimen262
|
|
||||||
\pgf@decorate@repeatstate=\count309
|
|
||||||
\pgfdecorationsegmentamplitude=\dimen263
|
|
||||||
\pgfdecorationsegmentlength=\dimen264
|
|
||||||
)
|
|
||||||
\tikz@lib@dec@box=\box64
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
decorations.pathmorphing.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati
|
|
||||||
ons.pathmorphing.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
decorations.pathreplacing.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati
|
|
||||||
ons.pathreplacing.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua
|
|
||||||
.code.tex)
|
|
||||||
\pgfplots@numplots=\count310
|
|
||||||
\pgfplots@xmin@reg=\dimen265
|
|
||||||
\pgfplots@xmax@reg=\dimen266
|
|
||||||
\pgfplots@ymin@reg=\dimen267
|
|
||||||
\pgfplots@ymax@reg=\dimen268
|
|
||||||
\pgfplots@zmin@reg=\dimen269
|
|
||||||
\pgfplots@zmax@reg=\dimen270
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
plotmarks.code.tex
|
|
||||||
File: tikzlibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex
|
|
||||||
File: pgflibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))) (/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
|
||||||
File: l3backend-pdftex.def 2025-10-09 L3 backend support: PDF output (pdfTeX)
|
|
||||||
\l__color_backend_stack_int=\count311
|
|
||||||
)
|
|
||||||
No file pgftest6.aux.
|
|
||||||
\openout1 = `pgftest6.aux'.
|
|
||||||
|
|
||||||
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 7.
|
|
||||||
LaTeX Font Info: ... okay on input line 7.
|
|
||||||
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 7.
|
|
||||||
LaTeX Font Info: ... okay on input line 7.
|
|
||||||
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 7.
|
|
||||||
LaTeX Font Info: ... okay on input line 7.
|
|
||||||
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 7.
|
|
||||||
LaTeX Font Info: ... okay on input line 7.
|
|
||||||
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 7.
|
|
||||||
LaTeX Font Info: ... okay on input line 7.
|
|
||||||
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 7.
|
|
||||||
LaTeX Font Info: ... okay on input line 7.
|
|
||||||
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 7.
|
|
||||||
LaTeX Font Info: ... okay on input line 7.
|
|
||||||
(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
|
||||||
[Loading MPS to PDF converter (version 2006.09.02).]
|
|
||||||
\scratchcounter=\count312
|
|
||||||
\scratchdimen=\dimen271
|
|
||||||
\scratchbox=\box65
|
|
||||||
\nofMPsegments=\count313
|
|
||||||
\nofMParguments=\count314
|
|
||||||
\everyMPshowfont=\toks34
|
|
||||||
\MPscratchCnt=\count315
|
|
||||||
\MPscratchDim=\dimen272
|
|
||||||
\MPnumerator=\count316
|
|
||||||
\makeMPintoPDFobject=\count317
|
|
||||||
\everyMPtoPDFconversion=\toks35
|
|
||||||
) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
|
||||||
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
|
|
||||||
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
|
|
||||||
85.
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
|
|
||||||
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
|
|
||||||
e
|
|
||||||
))
|
|
||||||
Package pgfplots notification 'compat/show suggested version=true': document ha
|
|
||||||
s been generated with the most recent feature set (\pgfplotsset{compat=1.18}).
|
|
||||||
|
|
||||||
Package pgfplots info on input line 10: Using 'lua backend=false' for axis: x c
|
|
||||||
oord trafo unsupported.
|
|
||||||
|
|
||||||
! Package pgfkeys Error: I do not know the key '/tikz/ymode', to which you pass
|
|
||||||
ed 'log', and I am going to ignore it. Perhaps you misspelled it.
|
|
||||||
|
|
||||||
See the pgfkeys package documentation for explanation.
|
|
||||||
Type H <return> for immediate help.
|
|
||||||
...
|
|
||||||
|
|
||||||
l.12 \end{axis}
|
|
||||||
|
|
||||||
This error message was generated by an \errmessage
|
|
||||||
command, so I can't give any explicit help.
|
|
||||||
Pretend that you're Hercule Poirot: Examine all clues,
|
|
||||||
and deduce the truth by order and method.
|
|
||||||
|
|
||||||
LaTeX Font Info: External font `cmex10' loaded for size
|
|
||||||
(Font) <7> on input line 12.
|
|
||||||
LaTeX Font Info: External font `cmex10' loaded for size
|
|
||||||
(Font) <5> on input line 12.
|
|
||||||
[1
|
|
||||||
|
|
||||||
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./pgftest6.aux)
|
|
||||||
***********
|
|
||||||
LaTeX2e <2025-11-01>
|
|
||||||
L3 programming layer <2026-01-19>
|
|
||||||
***********
|
|
||||||
)
|
|
||||||
Here is how much of TeX's memory you used:
|
|
||||||
22165 strings out of 469515
|
|
||||||
595570 string characters out of 5470808
|
|
||||||
1119992 words of memory out of 5000000
|
|
||||||
50519 multiletter control sequences out of 15000+600000
|
|
||||||
627721 words of font info for 40 fonts, out of 8000000 for 9000
|
|
||||||
14 hyphenation exceptions out of 8191
|
|
||||||
99i,9n,118p,734b,2075s stack positions out of 10000i,1000n,20000p,200000b,200000s
|
|
||||||
</usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb>
|
|
||||||
Output written on pgftest6.pdf (1 page, 11993 bytes).
|
|
||||||
PDF statistics:
|
|
||||||
16 PDF objects out of 1000 (max. 8388607)
|
|
||||||
10 compressed objects within 1 object stream
|
|
||||||
0 named destinations out of 1000 (max. 500000)
|
|
||||||
13 words of extra memory for PDF output out of 10000 (max. 10000000)
|
|
||||||
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
\relax
|
|
||||||
\gdef \@abspage@last{1}
|
|
||||||
|
|
@ -1,484 +0,0 @@
|
||||||
This is pdfTeX, Version 3.141592653-2.6-1.40.29 (TeX Live 2026/Arch Linux) (preloaded format=pdflatex 2026.3.6) 4 APR 2026 13:46
|
|
||||||
entering extended mode
|
|
||||||
restricted \write18 enabled.
|
|
||||||
%&-line parsing enabled.
|
|
||||||
**/tmp/pgftest7.tex
|
|
||||||
(/tmp/pgftest7.tex
|
|
||||||
LaTeX2e <2025-11-01>
|
|
||||||
L3 programming layer <2026-01-19>
|
|
||||||
(/usr/share/texmf-dist/tex/latex/base/article.cls
|
|
||||||
Document Class: article 2025/01/22 v1.4n Standard LaTeX document class
|
|
||||||
(/usr/share/texmf-dist/tex/latex/base/size10.clo
|
|
||||||
File: size10.clo 2025/01/22 v1.4n Standard LaTeX file (size option)
|
|
||||||
)
|
|
||||||
\c@part=\count275
|
|
||||||
\c@section=\count276
|
|
||||||
\c@subsection=\count277
|
|
||||||
\c@subsubsection=\count278
|
|
||||||
\c@paragraph=\count279
|
|
||||||
\c@subparagraph=\count280
|
|
||||||
\c@figure=\count281
|
|
||||||
\c@table=\count282
|
|
||||||
\abovecaptionskip=\skip49
|
|
||||||
\belowcaptionskip=\skip50
|
|
||||||
\bibindent=\dimen148
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgfplots/pgfplots.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex)
|
|
||||||
Package: pgfplots 2025/08/14 v1.18.2 Data Visualization (1.18.2)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty
|
|
||||||
Package: graphicx 2024/12/31 v1.2e Enhanced LaTeX Graphics (DPC,SPQR)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/keyval.sty
|
|
||||||
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
|
|
||||||
\KV@toks@=\toks17
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/graphics.sty
|
|
||||||
Package: graphics 2024/08/06 v1.4g Standard LaTeX Graphics (DPC,SPQR)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/trig.sty
|
|
||||||
Package: trig 2023/12/02 v1.11 sin cos tan (DPC)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
|
|
||||||
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
|
|
||||||
)
|
|
||||||
Package graphics Info: Driver file: pdftex.def on input line 106.
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def
|
|
||||||
File: pdftex.def 2025/09/29 v1.2d Graphics/color driver for pdftex
|
|
||||||
))
|
|
||||||
\Gin@req@height=\dimen149
|
|
||||||
\Gin@req@width=\dimen150
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex
|
|
||||||
\pgfutil@everybye=\toks18
|
|
||||||
\pgfutil@tempdima=\dimen151
|
|
||||||
\pgfutil@tempdimb=\dimen152
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
|
|
||||||
\pgfutil@abb=\box53
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/pgf.revision.tex)
|
|
||||||
Package: pgfrcs 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))
|
|
||||||
Package: pgf 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
|
|
||||||
Package: pgfsys 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
|
|
||||||
\pgfkeys@pathtoks=\toks19
|
|
||||||
\pgfkeys@temptoks=\toks20
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.te
|
|
||||||
x
|
|
||||||
\pgfkeys@tmptoks=\toks21
|
|
||||||
))
|
|
||||||
\pgf@x=\dimen153
|
|
||||||
\pgf@y=\dimen154
|
|
||||||
\pgf@xa=\dimen155
|
|
||||||
\pgf@ya=\dimen156
|
|
||||||
\pgf@xb=\dimen157
|
|
||||||
\pgf@yb=\dimen158
|
|
||||||
\pgf@xc=\dimen159
|
|
||||||
\pgf@yc=\dimen160
|
|
||||||
\pgf@xd=\dimen161
|
|
||||||
\pgf@yd=\dimen162
|
|
||||||
\w@pgf@writea=\write3
|
|
||||||
\r@pgf@reada=\read2
|
|
||||||
\c@pgf@counta=\count283
|
|
||||||
\c@pgf@countb=\count284
|
|
||||||
\c@pgf@countc=\count285
|
|
||||||
\c@pgf@countd=\count286
|
|
||||||
\t@pgf@toka=\toks22
|
|
||||||
\t@pgf@tokb=\toks23
|
|
||||||
\t@pgf@tokc=\toks24
|
|
||||||
\pgf@sys@id@count=\count287
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
|
|
||||||
File: pgf.cfg 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
Driver file for pgf: pgfsys-pdftex.def
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def
|
|
||||||
File: pgfsys-pdftex.def 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def
|
|
||||||
File: pgfsys-common-pdf.def 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
|
|
||||||
File: pgfsyssoftpath.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfsyssoftpath@smallbuffer@items=\count288
|
|
||||||
\pgfsyssoftpath@bigbuffer@items=\count289
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
|
|
||||||
File: pgfsysprotocol.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty
|
|
||||||
Package: xcolor 2024/09/29 v3.02 LaTeX color extensions (UK)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
|
||||||
File: color.cfg 2016/01/02 v1.6 sample color configuration
|
|
||||||
)
|
|
||||||
Package xcolor Info: Driver file: pdftex.def on input line 274.
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx)
|
|
||||||
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1349.
|
|
||||||
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1353.
|
|
||||||
Package xcolor Info: Model `RGB' extended on input line 1365.
|
|
||||||
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1367.
|
|
||||||
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1368.
|
|
||||||
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1369.
|
|
||||||
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1370.
|
|
||||||
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1371.
|
|
||||||
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1372.
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
|
|
||||||
Package: pgfcore 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
|
|
||||||
\pgfmath@dimen=\dimen163
|
|
||||||
\pgfmath@count=\count290
|
|
||||||
\pgfmath@box=\box54
|
|
||||||
\pgfmath@toks=\toks25
|
|
||||||
\pgfmath@stack@operand=\toks26
|
|
||||||
\pgfmath@stack@operation=\toks27
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code
|
|
||||||
.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.te
|
|
||||||
x) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics
|
|
||||||
.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex
|
|
||||||
\c@pgfmathroundto@lastzeros=\count291
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfint.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex
|
|
||||||
File: pgfcorepoints.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@picminx=\dimen164
|
|
||||||
\pgf@picmaxx=\dimen165
|
|
||||||
\pgf@picminy=\dimen166
|
|
||||||
\pgf@picmaxy=\dimen167
|
|
||||||
\pgf@pathminx=\dimen168
|
|
||||||
\pgf@pathmaxx=\dimen169
|
|
||||||
\pgf@pathminy=\dimen170
|
|
||||||
\pgf@pathmaxy=\dimen171
|
|
||||||
\pgf@xx=\dimen172
|
|
||||||
\pgf@xy=\dimen173
|
|
||||||
\pgf@yx=\dimen174
|
|
||||||
\pgf@yy=\dimen175
|
|
||||||
\pgf@zx=\dimen176
|
|
||||||
\pgf@zy=\dimen177
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex
|
|
||||||
File: pgfcorepathconstruct.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@path@lastx=\dimen178
|
|
||||||
\pgf@path@lasty=\dimen179
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex
|
|
||||||
File: pgfcorepathusage.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@shorten@end@additional=\dimen180
|
|
||||||
\pgf@shorten@start@additional=\dimen181
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex
|
|
||||||
File: pgfcorescopes.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfpic=\box55
|
|
||||||
\pgf@hbox=\box56
|
|
||||||
\pgf@layerbox@main=\box57
|
|
||||||
\pgf@picture@serial@count=\count292
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex
|
|
||||||
File: pgfcoregraphicstate.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgflinewidth=\dimen182
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.t
|
|
||||||
ex
|
|
||||||
File: pgfcoretransformations.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@pt@x=\dimen183
|
|
||||||
\pgf@pt@y=\dimen184
|
|
||||||
\pgf@pt@temp=\dimen185
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex
|
|
||||||
File: pgfcorequick.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex
|
|
||||||
File: pgfcoreobjects.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.te
|
|
||||||
x
|
|
||||||
File: pgfcorepathprocessing.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex
|
|
||||||
File: pgfcorearrows.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfarrowsep=\dimen186
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex
|
|
||||||
File: pgfcoreshade.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@max=\dimen187
|
|
||||||
\pgf@sys@shading@range@num=\count293
|
|
||||||
\pgf@shadingcount=\count294
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex
|
|
||||||
File: pgfcoreimage.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex
|
|
||||||
File: pgfcoreexternal.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfexternal@startupbox=\box58
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex
|
|
||||||
File: pgfcorelayers.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex
|
|
||||||
File: pgfcoretransparency.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex
|
|
||||||
File: pgfcorepatterns.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex
|
|
||||||
File: pgfcorerdf.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex
|
|
||||||
File: pgfmoduleshapes.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfnodeparttextbox=\box59
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex
|
|
||||||
File: pgfmoduleplot.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty
|
|
||||||
Package: pgfcomp-version-0-65 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@nodesepstart=\dimen188
|
|
||||||
\pgf@nodesepend=\dimen189
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty
|
|
||||||
Package: pgfcomp-version-1-18 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
|
|
||||||
Package: pgffor 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgffor@iter=\dimen190
|
|
||||||
\pgffor@skip=\dimen191
|
|
||||||
\pgffor@stack=\toks28
|
|
||||||
\pgffor@toks=\toks29
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
|
|
||||||
Package: tikz 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.te
|
|
||||||
x
|
|
||||||
File: pgflibraryplothandlers.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@plot@mark@count=\count295
|
|
||||||
\pgfplotmarksize=\dimen192
|
|
||||||
)
|
|
||||||
\tikz@lastx=\dimen193
|
|
||||||
\tikz@lasty=\dimen194
|
|
||||||
\tikz@lastxsaved=\dimen195
|
|
||||||
\tikz@lastysaved=\dimen196
|
|
||||||
\tikz@lastmovetox=\dimen197
|
|
||||||
\tikz@lastmovetoy=\dimen198
|
|
||||||
\tikzleveldistance=\dimen199
|
|
||||||
\tikzsiblingdistance=\dimen256
|
|
||||||
\tikz@figbox=\box60
|
|
||||||
\tikz@figbox@bg=\box61
|
|
||||||
\tikz@tempbox=\box62
|
|
||||||
\tikz@tempbox@bg=\box63
|
|
||||||
\tikztreelevel=\count296
|
|
||||||
\tikznumberofchildren=\count297
|
|
||||||
\tikznumberofcurrentchild=\count298
|
|
||||||
\tikz@fig@count=\count299
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex
|
|
||||||
File: pgfmodulematrix.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfmatrixcurrentrow=\count300
|
|
||||||
\pgfmatrixcurrentcolumn=\count301
|
|
||||||
\pgf@matrix@numberofcolumns=\count302
|
|
||||||
)
|
|
||||||
\tikz@expandcount=\count303
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
topaths.code.tex
|
|
||||||
File: tikzlibrarytopaths.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex
|
|
||||||
\t@pgfplots@toka=\toks30
|
|
||||||
\t@pgfplots@tokb=\toks31
|
|
||||||
\t@pgfplots@tokc=\toks32
|
|
||||||
\pgfplots@tmpa=\dimen257
|
|
||||||
\c@pgfplots@coordindex=\count304
|
|
||||||
\c@pgfplots@scanlineindex=\count305
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_l
|
|
||||||
oader.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_p
|
|
||||||
gfutil-common-lists.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure
|
|
||||||
.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure
|
|
||||||
ext.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.te
|
|
||||||
x
|
|
||||||
\c@pgfplotsarray@tmp=\count306
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.t
|
|
||||||
ex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshared.code.t
|
|
||||||
ex
|
|
||||||
\c@pgfplotstable@counta=\count307
|
|
||||||
\t@pgfplotstable@a=\toks33
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.te
|
|
||||||
x) (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading
|
|
||||||
.code.tex
|
|
||||||
\c@pgfplotslibrarysurf@no=\count308
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.
|
|
||||||
pgfsys-pdftex.def)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
decorations.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex
|
|
||||||
\pgfdecoratedcompleteddistance=\dimen258
|
|
||||||
\pgfdecoratedremainingdistance=\dimen259
|
|
||||||
\pgfdecoratedinputsegmentcompleteddistance=\dimen260
|
|
||||||
\pgfdecoratedinputsegmentremainingdistance=\dimen261
|
|
||||||
\pgf@decorate@distancetomove=\dimen262
|
|
||||||
\pgf@decorate@repeatstate=\count309
|
|
||||||
\pgfdecorationsegmentamplitude=\dimen263
|
|
||||||
\pgfdecorationsegmentlength=\dimen264
|
|
||||||
)
|
|
||||||
\tikz@lib@dec@box=\box64
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
decorations.pathmorphing.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati
|
|
||||||
ons.pathmorphing.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
decorations.pathreplacing.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati
|
|
||||||
ons.pathreplacing.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua
|
|
||||||
.code.tex)
|
|
||||||
\pgfplots@numplots=\count310
|
|
||||||
\pgfplots@xmin@reg=\dimen265
|
|
||||||
\pgfplots@xmax@reg=\dimen266
|
|
||||||
\pgfplots@ymin@reg=\dimen267
|
|
||||||
\pgfplots@ymax@reg=\dimen268
|
|
||||||
\pgfplots@zmin@reg=\dimen269
|
|
||||||
\pgfplots@zmax@reg=\dimen270
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
plotmarks.code.tex
|
|
||||||
File: tikzlibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex
|
|
||||||
File: pgflibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))) (/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
|
||||||
File: l3backend-pdftex.def 2025-10-09 L3 backend support: PDF output (pdfTeX)
|
|
||||||
\l__color_backend_stack_int=\count311
|
|
||||||
)
|
|
||||||
No file pgftest7.aux.
|
|
||||||
\openout1 = `pgftest7.aux'.
|
|
||||||
|
|
||||||
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 4.
|
|
||||||
LaTeX Font Info: ... okay on input line 4.
|
|
||||||
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 4.
|
|
||||||
LaTeX Font Info: ... okay on input line 4.
|
|
||||||
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 4.
|
|
||||||
LaTeX Font Info: ... okay on input line 4.
|
|
||||||
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 4.
|
|
||||||
LaTeX Font Info: ... okay on input line 4.
|
|
||||||
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 4.
|
|
||||||
LaTeX Font Info: ... okay on input line 4.
|
|
||||||
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 4.
|
|
||||||
LaTeX Font Info: ... okay on input line 4.
|
|
||||||
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 4.
|
|
||||||
LaTeX Font Info: ... okay on input line 4.
|
|
||||||
(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
|
||||||
[Loading MPS to PDF converter (version 2006.09.02).]
|
|
||||||
\scratchcounter=\count312
|
|
||||||
\scratchdimen=\dimen271
|
|
||||||
\scratchbox=\box65
|
|
||||||
\nofMPsegments=\count313
|
|
||||||
\nofMParguments=\count314
|
|
||||||
\everyMPshowfont=\toks34
|
|
||||||
\MPscratchCnt=\count315
|
|
||||||
\MPscratchDim=\dimen272
|
|
||||||
\MPnumerator=\count316
|
|
||||||
\makeMPintoPDFobject=\count317
|
|
||||||
\everyMPtoPDFconversion=\toks35
|
|
||||||
) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
|
||||||
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
|
|
||||||
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
|
|
||||||
85.
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
|
|
||||||
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
|
|
||||||
e
|
|
||||||
))
|
|
||||||
Package pgfplots notification 'compat/show suggested version=true': document ha
|
|
||||||
s been generated with the most recent feature set (\pgfplotsset{compat=1.18}).
|
|
||||||
|
|
||||||
Package pgfplots info on input line 7: Using 'lua backend=false' for axis: ymod
|
|
||||||
e=log unsupported (yet).
|
|
||||||
Package pgfplots info on input line 7: Using 'lua backend=false' for axis: x co
|
|
||||||
ord trafo unsupported.
|
|
||||||
LaTeX Font Info: External font `cmex10' loaded for size
|
|
||||||
(Font) <7> on input line 9.
|
|
||||||
LaTeX Font Info: External font `cmex10' loaded for size
|
|
||||||
(Font) <5> on input line 9.
|
|
||||||
[1
|
|
||||||
|
|
||||||
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./pgftest7.aux)
|
|
||||||
***********
|
|
||||||
LaTeX2e <2025-11-01>
|
|
||||||
L3 programming layer <2026-01-19>
|
|
||||||
***********
|
|
||||||
)
|
|
||||||
Here is how much of TeX's memory you used:
|
|
||||||
22155 strings out of 469515
|
|
||||||
595347 string characters out of 5470808
|
|
||||||
1118992 words of memory out of 5000000
|
|
||||||
50509 multiletter control sequences out of 15000+600000
|
|
||||||
627721 words of font info for 40 fonts, out of 8000000 for 9000
|
|
||||||
14 hyphenation exceptions out of 8191
|
|
||||||
99i,9n,118p,734b,2054s stack positions out of 10000i,1000n,20000p,200000b,200000s
|
|
||||||
</usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb></usr/share/t
|
|
||||||
exmf-dist/fonts/type1/public/amsfonts/cm/cmr7.pfb>
|
|
||||||
Output written on pgftest7.pdf (1 page, 20071 bytes).
|
|
||||||
PDF statistics:
|
|
||||||
21 PDF objects out of 1000 (max. 8388607)
|
|
||||||
13 compressed objects within 1 object stream
|
|
||||||
0 named destinations out of 1000 (max. 500000)
|
|
||||||
13 words of extra memory for PDF output out of 10000 (max. 10000000)
|
|
||||||
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
\relax
|
|
||||||
\gdef \@abspage@last{1}
|
|
||||||
478
paper/pgfver.log
478
paper/pgfver.log
|
|
@ -1,478 +0,0 @@
|
||||||
This is pdfTeX, Version 3.141592653-2.6-1.40.29 (TeX Live 2026/Arch Linux) (preloaded format=pdflatex 2026.3.6) 4 APR 2026 13:30
|
|
||||||
entering extended mode
|
|
||||||
restricted \write18 enabled.
|
|
||||||
%&-line parsing enabled.
|
|
||||||
**/tmp/pgfver.tex
|
|
||||||
(/tmp/pgfver.tex
|
|
||||||
LaTeX2e <2025-11-01>
|
|
||||||
L3 programming layer <2026-01-19>
|
|
||||||
(/usr/share/texmf-dist/tex/latex/base/article.cls
|
|
||||||
Document Class: article 2025/01/22 v1.4n Standard LaTeX document class
|
|
||||||
(/usr/share/texmf-dist/tex/latex/base/size10.clo
|
|
||||||
File: size10.clo 2025/01/22 v1.4n Standard LaTeX file (size option)
|
|
||||||
)
|
|
||||||
\c@part=\count275
|
|
||||||
\c@section=\count276
|
|
||||||
\c@subsection=\count277
|
|
||||||
\c@subsubsection=\count278
|
|
||||||
\c@paragraph=\count279
|
|
||||||
\c@subparagraph=\count280
|
|
||||||
\c@figure=\count281
|
|
||||||
\c@table=\count282
|
|
||||||
\abovecaptionskip=\skip49
|
|
||||||
\belowcaptionskip=\skip50
|
|
||||||
\bibindent=\dimen148
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgfplots/pgfplots.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex)
|
|
||||||
Package: pgfplots 2025/08/14 v1.18.2 Data Visualization (1.18.2)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty
|
|
||||||
Package: graphicx 2024/12/31 v1.2e Enhanced LaTeX Graphics (DPC,SPQR)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/keyval.sty
|
|
||||||
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
|
|
||||||
\KV@toks@=\toks17
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/graphics.sty
|
|
||||||
Package: graphics 2024/08/06 v1.4g Standard LaTeX Graphics (DPC,SPQR)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/trig.sty
|
|
||||||
Package: trig 2023/12/02 v1.11 sin cos tan (DPC)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
|
|
||||||
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
|
|
||||||
)
|
|
||||||
Package graphics Info: Driver file: pdftex.def on input line 106.
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def
|
|
||||||
File: pdftex.def 2025/09/29 v1.2d Graphics/color driver for pdftex
|
|
||||||
))
|
|
||||||
\Gin@req@height=\dimen149
|
|
||||||
\Gin@req@width=\dimen150
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex
|
|
||||||
\pgfutil@everybye=\toks18
|
|
||||||
\pgfutil@tempdima=\dimen151
|
|
||||||
\pgfutil@tempdimb=\dimen152
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
|
|
||||||
\pgfutil@abb=\box53
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/pgf.revision.tex)
|
|
||||||
Package: pgfrcs 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))
|
|
||||||
Package: pgf 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
|
|
||||||
Package: pgfsys 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
|
|
||||||
\pgfkeys@pathtoks=\toks19
|
|
||||||
\pgfkeys@temptoks=\toks20
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.te
|
|
||||||
x
|
|
||||||
\pgfkeys@tmptoks=\toks21
|
|
||||||
))
|
|
||||||
\pgf@x=\dimen153
|
|
||||||
\pgf@y=\dimen154
|
|
||||||
\pgf@xa=\dimen155
|
|
||||||
\pgf@ya=\dimen156
|
|
||||||
\pgf@xb=\dimen157
|
|
||||||
\pgf@yb=\dimen158
|
|
||||||
\pgf@xc=\dimen159
|
|
||||||
\pgf@yc=\dimen160
|
|
||||||
\pgf@xd=\dimen161
|
|
||||||
\pgf@yd=\dimen162
|
|
||||||
\w@pgf@writea=\write3
|
|
||||||
\r@pgf@reada=\read2
|
|
||||||
\c@pgf@counta=\count283
|
|
||||||
\c@pgf@countb=\count284
|
|
||||||
\c@pgf@countc=\count285
|
|
||||||
\c@pgf@countd=\count286
|
|
||||||
\t@pgf@toka=\toks22
|
|
||||||
\t@pgf@tokb=\toks23
|
|
||||||
\t@pgf@tokc=\toks24
|
|
||||||
\pgf@sys@id@count=\count287
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
|
|
||||||
File: pgf.cfg 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
Driver file for pgf: pgfsys-pdftex.def
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def
|
|
||||||
File: pgfsys-pdftex.def 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def
|
|
||||||
File: pgfsys-common-pdf.def 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
|
|
||||||
File: pgfsyssoftpath.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfsyssoftpath@smallbuffer@items=\count288
|
|
||||||
\pgfsyssoftpath@bigbuffer@items=\count289
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
|
|
||||||
File: pgfsysprotocol.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty
|
|
||||||
Package: xcolor 2024/09/29 v3.02 LaTeX color extensions (UK)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
|
||||||
File: color.cfg 2016/01/02 v1.6 sample color configuration
|
|
||||||
)
|
|
||||||
Package xcolor Info: Driver file: pdftex.def on input line 274.
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx)
|
|
||||||
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1349.
|
|
||||||
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1353.
|
|
||||||
Package xcolor Info: Model `RGB' extended on input line 1365.
|
|
||||||
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1367.
|
|
||||||
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1368.
|
|
||||||
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1369.
|
|
||||||
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1370.
|
|
||||||
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1371.
|
|
||||||
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1372.
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
|
|
||||||
Package: pgfcore 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
|
|
||||||
\pgfmath@dimen=\dimen163
|
|
||||||
\pgfmath@count=\count290
|
|
||||||
\pgfmath@box=\box54
|
|
||||||
\pgfmath@toks=\toks25
|
|
||||||
\pgfmath@stack@operand=\toks26
|
|
||||||
\pgfmath@stack@operation=\toks27
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code
|
|
||||||
.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.te
|
|
||||||
x) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics
|
|
||||||
.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex
|
|
||||||
\c@pgfmathroundto@lastzeros=\count291
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfint.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex
|
|
||||||
File: pgfcorepoints.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@picminx=\dimen164
|
|
||||||
\pgf@picmaxx=\dimen165
|
|
||||||
\pgf@picminy=\dimen166
|
|
||||||
\pgf@picmaxy=\dimen167
|
|
||||||
\pgf@pathminx=\dimen168
|
|
||||||
\pgf@pathmaxx=\dimen169
|
|
||||||
\pgf@pathminy=\dimen170
|
|
||||||
\pgf@pathmaxy=\dimen171
|
|
||||||
\pgf@xx=\dimen172
|
|
||||||
\pgf@xy=\dimen173
|
|
||||||
\pgf@yx=\dimen174
|
|
||||||
\pgf@yy=\dimen175
|
|
||||||
\pgf@zx=\dimen176
|
|
||||||
\pgf@zy=\dimen177
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex
|
|
||||||
File: pgfcorepathconstruct.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@path@lastx=\dimen178
|
|
||||||
\pgf@path@lasty=\dimen179
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex
|
|
||||||
File: pgfcorepathusage.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@shorten@end@additional=\dimen180
|
|
||||||
\pgf@shorten@start@additional=\dimen181
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex
|
|
||||||
File: pgfcorescopes.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfpic=\box55
|
|
||||||
\pgf@hbox=\box56
|
|
||||||
\pgf@layerbox@main=\box57
|
|
||||||
\pgf@picture@serial@count=\count292
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex
|
|
||||||
File: pgfcoregraphicstate.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgflinewidth=\dimen182
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.t
|
|
||||||
ex
|
|
||||||
File: pgfcoretransformations.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@pt@x=\dimen183
|
|
||||||
\pgf@pt@y=\dimen184
|
|
||||||
\pgf@pt@temp=\dimen185
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex
|
|
||||||
File: pgfcorequick.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex
|
|
||||||
File: pgfcoreobjects.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.te
|
|
||||||
x
|
|
||||||
File: pgfcorepathprocessing.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex
|
|
||||||
File: pgfcorearrows.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfarrowsep=\dimen186
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex
|
|
||||||
File: pgfcoreshade.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@max=\dimen187
|
|
||||||
\pgf@sys@shading@range@num=\count293
|
|
||||||
\pgf@shadingcount=\count294
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex
|
|
||||||
File: pgfcoreimage.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex
|
|
||||||
File: pgfcoreexternal.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfexternal@startupbox=\box58
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex
|
|
||||||
File: pgfcorelayers.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex
|
|
||||||
File: pgfcoretransparency.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex
|
|
||||||
File: pgfcorepatterns.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex
|
|
||||||
File: pgfcorerdf.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex
|
|
||||||
File: pgfmoduleshapes.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfnodeparttextbox=\box59
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex
|
|
||||||
File: pgfmoduleplot.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty
|
|
||||||
Package: pgfcomp-version-0-65 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@nodesepstart=\dimen188
|
|
||||||
\pgf@nodesepend=\dimen189
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty
|
|
||||||
Package: pgfcomp-version-1-18 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
|
|
||||||
Package: pgffor 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgffor@iter=\dimen190
|
|
||||||
\pgffor@skip=\dimen191
|
|
||||||
\pgffor@stack=\toks28
|
|
||||||
\pgffor@toks=\toks29
|
|
||||||
))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
|
|
||||||
Package: tikz 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.te
|
|
||||||
x
|
|
||||||
File: pgflibraryplothandlers.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgf@plot@mark@count=\count295
|
|
||||||
\pgfplotmarksize=\dimen192
|
|
||||||
)
|
|
||||||
\tikz@lastx=\dimen193
|
|
||||||
\tikz@lasty=\dimen194
|
|
||||||
\tikz@lastxsaved=\dimen195
|
|
||||||
\tikz@lastysaved=\dimen196
|
|
||||||
\tikz@lastmovetox=\dimen197
|
|
||||||
\tikz@lastmovetoy=\dimen198
|
|
||||||
\tikzleveldistance=\dimen199
|
|
||||||
\tikzsiblingdistance=\dimen256
|
|
||||||
\tikz@figbox=\box60
|
|
||||||
\tikz@figbox@bg=\box61
|
|
||||||
\tikz@tempbox=\box62
|
|
||||||
\tikz@tempbox@bg=\box63
|
|
||||||
\tikztreelevel=\count296
|
|
||||||
\tikznumberofchildren=\count297
|
|
||||||
\tikznumberofcurrentchild=\count298
|
|
||||||
\tikz@fig@count=\count299
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex
|
|
||||||
File: pgfmodulematrix.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
\pgfmatrixcurrentrow=\count300
|
|
||||||
\pgfmatrixcurrentcolumn=\count301
|
|
||||||
\pgf@matrix@numberofcolumns=\count302
|
|
||||||
)
|
|
||||||
\tikz@expandcount=\count303
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
topaths.code.tex
|
|
||||||
File: tikzlibrarytopaths.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex
|
|
||||||
\t@pgfplots@toka=\toks30
|
|
||||||
\t@pgfplots@tokb=\toks31
|
|
||||||
\t@pgfplots@tokc=\toks32
|
|
||||||
\pgfplots@tmpa=\dimen257
|
|
||||||
\c@pgfplots@coordindex=\count304
|
|
||||||
\c@pgfplots@scanlineindex=\count305
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_l
|
|
||||||
oader.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_p
|
|
||||||
gfutil-common-lists.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure
|
|
||||||
.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure
|
|
||||||
ext.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.te
|
|
||||||
x
|
|
||||||
\c@pgfplotsarray@tmp=\count306
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.t
|
|
||||||
ex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshared.code.t
|
|
||||||
ex
|
|
||||||
\c@pgfplotstable@counta=\count307
|
|
||||||
\t@pgfplotstable@a=\toks33
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.te
|
|
||||||
x) (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading
|
|
||||||
.code.tex
|
|
||||||
\c@pgfplotslibrarysurf@no=\count308
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.
|
|
||||||
pgfsys-pdftex.def)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex)))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
decorations.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex
|
|
||||||
\pgfdecoratedcompleteddistance=\dimen258
|
|
||||||
\pgfdecoratedremainingdistance=\dimen259
|
|
||||||
\pgfdecoratedinputsegmentcompleteddistance=\dimen260
|
|
||||||
\pgfdecoratedinputsegmentremainingdistance=\dimen261
|
|
||||||
\pgf@decorate@distancetomove=\dimen262
|
|
||||||
\pgf@decorate@repeatstate=\count309
|
|
||||||
\pgfdecorationsegmentamplitude=\dimen263
|
|
||||||
\pgfdecorationsegmentlength=\dimen264
|
|
||||||
)
|
|
||||||
\tikz@lib@dec@box=\box64
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
decorations.pathmorphing.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati
|
|
||||||
ons.pathmorphing.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
decorations.pathreplacing.code.tex
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati
|
|
||||||
ons.pathreplacing.code.tex))
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua
|
|
||||||
.code.tex)
|
|
||||||
\pgfplots@numplots=\count310
|
|
||||||
\pgfplots@xmin@reg=\dimen265
|
|
||||||
\pgfplots@xmax@reg=\dimen266
|
|
||||||
\pgfplots@ymin@reg=\dimen267
|
|
||||||
\pgfplots@ymax@reg=\dimen268
|
|
||||||
\pgfplots@zmin@reg=\dimen269
|
|
||||||
\pgfplots@zmax@reg=\dimen270
|
|
||||||
)
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary
|
|
||||||
plotmarks.code.tex
|
|
||||||
File: tikzlibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex
|
|
||||||
File: pgflibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a)
|
|
||||||
))) (/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
|
||||||
File: l3backend-pdftex.def 2025-10-09 L3 backend support: PDF output (pdfTeX)
|
|
||||||
\l__color_backend_stack_int=\count311
|
|
||||||
)
|
|
||||||
No file pgfver.aux.
|
|
||||||
\openout1 = `pgfver.aux'.
|
|
||||||
|
|
||||||
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 3.
|
|
||||||
LaTeX Font Info: ... okay on input line 3.
|
|
||||||
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 3.
|
|
||||||
LaTeX Font Info: ... okay on input line 3.
|
|
||||||
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 3.
|
|
||||||
LaTeX Font Info: ... okay on input line 3.
|
|
||||||
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 3.
|
|
||||||
LaTeX Font Info: ... okay on input line 3.
|
|
||||||
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 3.
|
|
||||||
LaTeX Font Info: ... okay on input line 3.
|
|
||||||
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 3.
|
|
||||||
LaTeX Font Info: ... okay on input line 3.
|
|
||||||
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 3.
|
|
||||||
LaTeX Font Info: ... okay on input line 3.
|
|
||||||
(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
|
||||||
[Loading MPS to PDF converter (version 2006.09.02).]
|
|
||||||
\scratchcounter=\count312
|
|
||||||
\scratchdimen=\dimen271
|
|
||||||
\scratchbox=\box65
|
|
||||||
\nofMPsegments=\count313
|
|
||||||
\nofMParguments=\count314
|
|
||||||
\everyMPshowfont=\toks34
|
|
||||||
\MPscratchCnt=\count315
|
|
||||||
\MPscratchDim=\dimen272
|
|
||||||
\MPnumerator=\count316
|
|
||||||
\makeMPintoPDFobject=\count317
|
|
||||||
\everyMPtoPDFconversion=\toks35
|
|
||||||
) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
|
||||||
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
|
|
||||||
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
|
|
||||||
85.
|
|
||||||
|
|
||||||
(/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
|
|
||||||
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
|
|
||||||
e
|
|
||||||
))
|
|
||||||
|
|
||||||
Package pgfplots Warning: running in backwards compatibility mode (unsuitable t
|
|
||||||
ick labels; missing features). Consider writing \pgfplotsset{compat=1.18} into
|
|
||||||
your preamble.
|
|
||||||
on input line 3.
|
|
||||||
|
|
||||||
[1
|
|
||||||
|
|
||||||
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./pgfver.aux)
|
|
||||||
***********
|
|
||||||
LaTeX2e <2025-11-01>
|
|
||||||
L3 programming layer <2026-01-19>
|
|
||||||
***********
|
|
||||||
)
|
|
||||||
Here is how much of TeX's memory you used:
|
|
||||||
21675 strings out of 469515
|
|
||||||
581684 string characters out of 5470808
|
|
||||||
1115990 words of memory out of 5000000
|
|
||||||
50029 multiletter control sequences out of 15000+600000
|
|
||||||
627721 words of font info for 40 fonts, out of 8000000 for 9000
|
|
||||||
14 hyphenation exceptions out of 8191
|
|
||||||
99i,5n,118p,723b,273s stack positions out of 10000i,1000n,20000p,200000b,200000s
|
|
||||||
</usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb>
|
|
||||||
Output written on pgfver.pdf (1 page, 14227 bytes).
|
|
||||||
PDF statistics:
|
|
||||||
16 PDF objects out of 1000 (max. 8388607)
|
|
||||||
10 compressed objects within 1 object stream
|
|
||||||
0 named destinations out of 1000 (max. 500000)
|
|
||||||
13 words of extra memory for PDF output out of 10000 (max. 10000000)
|
|
||||||
|
|
||||||
|
|
@ -5,16 +5,19 @@ description = "Build-time tooling for levineuwirth.org"
|
||||||
requires-python = ">=3.12"
|
requires-python = ">=3.12"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
# Visualization
|
# Visualization
|
||||||
"matplotlib>=3.9",
|
"matplotlib>=3.9,<4",
|
||||||
"altair>=5.4",
|
"altair>=5.4,<6",
|
||||||
|
|
||||||
# Embedding pipeline
|
# Embedding pipeline
|
||||||
"sentence-transformers>=3.4",
|
# Upper bounds are intentionally generous (next major) but always
|
||||||
"faiss-cpu>=1.9",
|
# present so that an unrelated `uv sync` upgrade can't silently pull
|
||||||
"numpy>=2.0",
|
# an API-breaking 4.x release. Bump deliberately when validating.
|
||||||
"beautifulsoup4>=4.12",
|
"sentence-transformers>=3.4,<4",
|
||||||
|
"faiss-cpu>=1.9,<2",
|
||||||
|
"numpy>=2.0,<3",
|
||||||
|
"beautifulsoup4>=4.12,<5",
|
||||||
# CPU-only torch — avoids pulling ~3 GB of CUDA libraries
|
# CPU-only torch — avoids pulling ~3 GB of CUDA libraries
|
||||||
"torch>=2.5",
|
"torch>=2.5,<3",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[tool.uv.index]]
|
[[tool.uv.index]]
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
|
|
@ -25,7 +25,7 @@ skipped=0
|
||||||
|
|
||||||
while IFS= read -r -d '' img; do
|
while IFS= read -r -d '' img; do
|
||||||
webp="${img%.*}.webp"
|
webp="${img%.*}.webp"
|
||||||
if [ -f "$webp" ]; then
|
if [ -f "$webp" ] && [ ! "$img" -nt "$webp" ]; then
|
||||||
skipped=$((skipped + 1))
|
skipped=$((skipped + 1))
|
||||||
else
|
else
|
||||||
echo " webp ${img#"$REPO_ROOT/"}"
|
echo " webp ${img#"$REPO_ROOT/"}"
|
||||||
|
|
|
||||||
|
|
@ -7,25 +7,76 @@
|
||||||
#
|
#
|
||||||
# Run once before deploying. Files are gitignored (binary artifacts).
|
# Run once before deploying. Files are gitignored (binary artifacts).
|
||||||
# Re-running is safe — existing files are skipped.
|
# Re-running is safe — existing files are skipped.
|
||||||
|
#
|
||||||
|
# Supply chain hardening: each downloaded file is verified against
|
||||||
|
# tools/model-checksums.sha256 if that file is present. The checksums
|
||||||
|
# file is committed to git so a HuggingFace compromise (or a
|
||||||
|
# transparently rebuilt model) cannot silently land in the deployed
|
||||||
|
# site. To pin a new model version, run `tools/download-model.sh`,
|
||||||
|
# verify the model out-of-band, then commit the generated checksums:
|
||||||
|
#
|
||||||
|
# (cd static/models/all-MiniLM-L6-v2 && \
|
||||||
|
# sha256sum config.json tokenizer.json tokenizer_config.json \
|
||||||
|
# special_tokens_map.json onnx/model_quantized.onnx) \
|
||||||
|
# > tools/model-checksums.sha256
|
||||||
|
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
REPO_ROOT="$(cd "$(dirname "$0")/.." && pwd)"
|
REPO_ROOT="$(cd "$(dirname "$0")/.." && pwd)"
|
||||||
MODEL_DIR="$REPO_ROOT/static/models/all-MiniLM-L6-v2"
|
MODEL_DIR="$REPO_ROOT/static/models/all-MiniLM-L6-v2"
|
||||||
BASE_URL="https://huggingface.co/Xenova/all-MiniLM-L6-v2/resolve/main"
|
BASE_URL="https://huggingface.co/Xenova/all-MiniLM-L6-v2/resolve/main"
|
||||||
|
CHECKSUMS="$REPO_ROOT/tools/model-checksums.sha256"
|
||||||
|
|
||||||
mkdir -p "$MODEL_DIR/onnx"
|
mkdir -p "$MODEL_DIR/onnx"
|
||||||
|
|
||||||
|
# Look up the expected SHA-256 for a relative path, or empty string if
|
||||||
|
# no checksums file is present (or the path isn't pinned yet).
|
||||||
|
expected_sha() {
|
||||||
|
local rel="$1"
|
||||||
|
if [ ! -f "$CHECKSUMS" ]; then
|
||||||
|
echo ""
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
# Match lines of the form "<sha> <relative-path>"
|
||||||
|
awk -v p="$rel" '$2 == p { print $1; exit }' "$CHECKSUMS"
|
||||||
|
}
|
||||||
|
|
||||||
|
verify_sha() {
|
||||||
|
local rel="$1" dst="$2"
|
||||||
|
local want
|
||||||
|
want=$(expected_sha "$rel")
|
||||||
|
if [ -z "$want" ]; then
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
local got
|
||||||
|
got=$(sha256sum "$dst" | awk '{ print $1 }')
|
||||||
|
if [ "$got" != "$want" ]; then
|
||||||
|
echo " ERROR sha256 mismatch for $rel" >&2
|
||||||
|
echo " expected $want" >&2
|
||||||
|
echo " got $got" >&2
|
||||||
|
rm -f "$dst"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo " ok sha256 verified for $rel"
|
||||||
|
}
|
||||||
|
|
||||||
fetch() {
|
fetch() {
|
||||||
local src="$1" dst="$2"
|
local src="$1" dst="$2"
|
||||||
if [ -f "$dst" ]; then
|
if [ -f "$dst" ]; then
|
||||||
echo " skip $src (already present)"
|
echo " skip $src (already present)"
|
||||||
|
verify_sha "$src" "$dst"
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
echo " fetch $src"
|
echo " fetch $src"
|
||||||
curl -fsSL --progress-bar "$BASE_URL/$src" -o "$dst"
|
curl -fsSL --progress-bar "$BASE_URL/$src" -o "$dst"
|
||||||
|
verify_sha "$src" "$dst"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if [ ! -f "$CHECKSUMS" ]; then
|
||||||
|
echo "Note: $CHECKSUMS not found — downloads will not be SHA-verified." >&2
|
||||||
|
echo " See the comment in tools/download-model.sh to pin checksums." >&2
|
||||||
|
fi
|
||||||
|
|
||||||
echo "Downloading all-MiniLM-L6-v2 to $MODEL_DIR ..."
|
echo "Downloading all-MiniLM-L6-v2 to $MODEL_DIR ..."
|
||||||
|
|
||||||
fetch "config.json" "$MODEL_DIR/config.json"
|
fetch "config.json" "$MODEL_DIR/config.json"
|
||||||
|
|
|
||||||
|
|
@ -68,8 +68,10 @@ def needs_update() -> bool:
|
||||||
def _url_from_path(html_path: Path) -> str:
|
def _url_from_path(html_path: Path) -> str:
|
||||||
rel = html_path.relative_to(SITE_DIR)
|
rel = html_path.relative_to(SITE_DIR)
|
||||||
if rel.name == "index.html":
|
if rel.name == "index.html":
|
||||||
url = "/" + str(rel.parent) + "/"
|
parent = str(rel.parent)
|
||||||
return url.replace("//", "/")
|
if parent in (".", ""):
|
||||||
|
return "/"
|
||||||
|
return "/" + parent + "/"
|
||||||
return "/" + str(rel)
|
return "/" + str(rel)
|
||||||
|
|
||||||
def _clean_soup(soup: BeautifulSoup) -> None:
|
def _clean_soup(soup: BeautifulSoup) -> None:
|
||||||
|
|
|
||||||
|
|
@ -44,9 +44,11 @@ _ROMAN_VALS = [
|
||||||
|
|
||||||
def roman_to_int(s: str) -> Optional[int]:
|
def roman_to_int(s: str) -> Optional[int]:
|
||||||
s = s.upper().strip()
|
s = s.upper().strip()
|
||||||
|
if not s:
|
||||||
|
return None
|
||||||
i, result = 0, 0
|
i, result = 0, 0
|
||||||
for numeral, value in _ROMAN_VALS:
|
for numeral, value in _ROMAN_VALS:
|
||||||
while s[i : i + len(numeral)] == numeral:
|
while i < len(s) and s[i : i + len(numeral)] == numeral:
|
||||||
result += value
|
result += value
|
||||||
i += len(numeral)
|
i += len(numeral)
|
||||||
return result if i == len(s) and result > 0 else None
|
return result if i == len(s) and result > 0 else None
|
||||||
|
|
@ -191,15 +193,28 @@ def first_content_line(lines: list[str]) -> str:
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
def yaml_str(s: str) -> str:
|
def yaml_str(s: str) -> str:
|
||||||
"""Quote a string for YAML if it needs it."""
|
"""Quote a string for YAML if it needs it.
|
||||||
|
|
||||||
|
Always quote (and escape) when the string contains characters that
|
||||||
|
can break YAML parsing — including newlines, carriage returns, and
|
||||||
|
YAML's reserved indicators. Newlines and carriage returns are escaped
|
||||||
|
using YAML's double-quoted backslash escapes.
|
||||||
|
"""
|
||||||
needs_quote = (
|
needs_quote = (
|
||||||
not s
|
not s
|
||||||
or s[0] in " \t"
|
or s[0] in " \t"
|
||||||
or s[-1] in " \t"
|
or s[-1] in " \t"
|
||||||
or any(c in s for c in ':{}[]|>&*!,#?@`\'"')
|
or any(c in s for c in ':{}[]|>&*!,#?@`\'"\n\r\t')
|
||||||
)
|
)
|
||||||
if needs_quote:
|
if needs_quote:
|
||||||
return '"' + s.replace("\\", "\\\\").replace('"', '\\"') + '"'
|
escaped = (
|
||||||
|
s.replace("\\", "\\\\")
|
||||||
|
.replace('"', '\\"')
|
||||||
|
.replace("\n", "\\n")
|
||||||
|
.replace("\r", "\\r")
|
||||||
|
.replace("\t", "\\t")
|
||||||
|
)
|
||||||
|
return '"' + escaped + '"'
|
||||||
return s
|
return s
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
|
|
@ -324,9 +339,39 @@ def main() -> None:
|
||||||
print(f"error: file not found: {source}", file=sys.stderr)
|
print(f"error: file not found: {source}", file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
# Validate publication year — flows into YAML unchanged so it must be
|
||||||
|
# well-formed and within a sane range.
|
||||||
|
try:
|
||||||
|
year = int(args.date)
|
||||||
|
except ValueError:
|
||||||
|
print(
|
||||||
|
f"error: --date must be an integer year, got {args.date!r}",
|
||||||
|
file=sys.stderr,
|
||||||
|
)
|
||||||
|
sys.exit(1)
|
||||||
|
if not (1 <= year <= 2100):
|
||||||
|
print(
|
||||||
|
f"error: --date {year} out of plausible range (1..2100)",
|
||||||
|
file=sys.stderr,
|
||||||
|
)
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
# Defaults
|
# Defaults
|
||||||
title_prefix = args.title_prefix or args.collection.rstrip("s")
|
title_prefix = args.title_prefix or args.collection.rstrip("s")
|
||||||
|
if not title_prefix.strip():
|
||||||
|
print(
|
||||||
|
"error: title prefix is empty (check --title-prefix or --collection)",
|
||||||
|
file=sys.stderr,
|
||||||
|
)
|
||||||
|
sys.exit(1)
|
||||||
collection_slug = args.slug or slugify(f"{args.poet}-{args.collection}")
|
collection_slug = args.slug or slugify(f"{args.poet}-{args.collection}")
|
||||||
|
if not collection_slug or collection_slug == "-":
|
||||||
|
print(
|
||||||
|
f"error: collection slug is empty "
|
||||||
|
f"(check --slug, --collection={args.collection!r}, --poet={args.poet!r})",
|
||||||
|
file=sys.stderr,
|
||||||
|
)
|
||||||
|
sys.exit(1)
|
||||||
tags = [t.strip() for t in args.tags.split(",")]
|
tags = [t.strip() for t in args.tags.split(",")]
|
||||||
out_dir = POETRY_DIR / collection_slug
|
out_dir = POETRY_DIR / collection_slug
|
||||||
|
|
||||||
|
|
@ -389,7 +434,7 @@ def main() -> None:
|
||||||
print(f" skip {path.name}")
|
print(f" skip {path.name}")
|
||||||
skipped += 1
|
skipped += 1
|
||||||
else:
|
else:
|
||||||
path.write_text(content, encoding="utf-8")
|
path.write_text(content, encoding="utf-8", errors="strict")
|
||||||
print(f" write {path.name}")
|
print(f" write {path.name}")
|
||||||
written += 1
|
written += 1
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -40,18 +40,15 @@ if ! GNUPGHOME="$GNUPGHOME" gpg \
|
||||||
fi
|
fi
|
||||||
echo "sign-site: pre-flight OK — signing $SITE_DIR..." >&2
|
echo "sign-site: pre-flight OK — signing $SITE_DIR..." >&2
|
||||||
|
|
||||||
count=0
|
find "$SITE_DIR" -name "*.html" -print0 | xargs -0 -I {} -P $(nproc) \
|
||||||
while IFS= read -r -d '' html; do
|
gpg --homedir "$GNUPGHOME" \
|
||||||
GNUPGHOME="$GNUPGHOME" gpg \
|
|
||||||
--homedir "$GNUPGHOME" \
|
|
||||||
--batch \
|
--batch \
|
||||||
--yes \
|
--yes \
|
||||||
--detach-sign \
|
--detach-sign \
|
||||||
--armor \
|
--armor \
|
||||||
--local-user "$SIGNING_KEY" \
|
--local-user "$SIGNING_KEY" \
|
||||||
--output "${html}.sig" \
|
--output "{}.sig" \
|
||||||
"$html"
|
"{}"
|
||||||
count=$((count + 1))
|
|
||||||
done < <(find "$SITE_DIR" -name "*.html" -print0)
|
|
||||||
|
|
||||||
|
count=$(find "$SITE_DIR" -name "*.html" -printf '.' | wc -c)
|
||||||
echo "Signed $count HTML files in $SITE_DIR."
|
echo "Signed $count HTML files in $SITE_DIR."
|
||||||
|
|
|
||||||
334
uv.lock
334
uv.lock
|
|
@ -8,40 +8,18 @@ resolution-markers = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "altair"
|
name = "altair"
|
||||||
version = "6.0.0"
|
version = "5.5.0"
|
||||||
source = { registry = "https://pypi.org/simple" }
|
source = { registry = "https://pypi.org/simple" }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ name = "jinja2" },
|
{ name = "jinja2" },
|
||||||
{ name = "jsonschema" },
|
{ name = "jsonschema" },
|
||||||
{ name = "narwhals" },
|
{ name = "narwhals" },
|
||||||
{ name = "packaging" },
|
{ name = "packaging" },
|
||||||
{ name = "typing-extensions", marker = "python_full_version < '3.15'" },
|
{ name = "typing-extensions", marker = "python_full_version < '3.14'" },
|
||||||
]
|
]
|
||||||
sdist = { url = "https://files.pythonhosted.org/packages/f7/c0/184a89bd5feba14ff3c41cfaf1dd8a82c05f5ceedbc92145e17042eb08a4/altair-6.0.0.tar.gz", hash = "sha256:614bf5ecbe2337347b590afb111929aa9c16c9527c4887d96c9bc7f6640756b4", size = 763834, upload-time = "2025-11-12T08:59:11.519Z" }
|
sdist = { url = "https://files.pythonhosted.org/packages/16/b1/f2969c7bdb8ad8bbdda031687defdce2c19afba2aa2c8e1d2a17f78376d8/altair-5.5.0.tar.gz", hash = "sha256:d960ebe6178c56de3855a68c47b516be38640b73fb3b5111c2a9ca90546dd73d", size = 705305, upload-time = "2024-11-23T23:39:58.542Z" }
|
||||||
wheels = [
|
wheels = [
|
||||||
{ url = "https://files.pythonhosted.org/packages/db/33/ef2f2409450ef6daa61459d5de5c08128e7d3edb773fefd0a324d1310238/altair-6.0.0-py3-none-any.whl", hash = "sha256:09ae95b53d5fe5b16987dccc785a7af8588f2dca50de1e7a156efa8a461515f8", size = 795410, upload-time = "2025-11-12T08:59:09.804Z" },
|
{ url = "https://files.pythonhosted.org/packages/aa/f3/0b6ced594e51cc95d8c1fc1640d3623770d01e4969d29c0bd09945fafefa/altair-5.5.0-py3-none-any.whl", hash = "sha256:91a310b926508d560fe0148d02a194f38b824122641ef528113d029fcd129f8c", size = 731200, upload-time = "2024-11-23T23:39:56.4Z" },
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "annotated-doc"
|
|
||||||
version = "0.0.4"
|
|
||||||
source = { registry = "https://pypi.org/simple" }
|
|
||||||
sdist = { url = "https://files.pythonhosted.org/packages/57/ba/046ceea27344560984e26a590f90bc7f4a75b06701f653222458922b558c/annotated_doc-0.0.4.tar.gz", hash = "sha256:fbcda96e87e9c92ad167c2e53839e57503ecfda18804ea28102353485033faa4", size = 7288, upload-time = "2025-11-10T22:07:42.062Z" }
|
|
||||||
wheels = [
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/1e/d3/26bf1008eb3d2daa8ef4cacc7f3bfdc11818d111f7e2d0201bc6e3b49d45/annotated_doc-0.0.4-py3-none-any.whl", hash = "sha256:571ac1dc6991c450b25a9c2d84a3705e2ae7a53467b5d111c24fa8baabbed320", size = 5303, upload-time = "2025-11-10T22:07:40.673Z" },
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "anyio"
|
|
||||||
version = "4.12.1"
|
|
||||||
source = { registry = "https://pypi.org/simple" }
|
|
||||||
dependencies = [
|
|
||||||
{ name = "idna" },
|
|
||||||
{ name = "typing-extensions", marker = "python_full_version < '3.13'" },
|
|
||||||
]
|
|
||||||
sdist = { url = "https://files.pythonhosted.org/packages/96/f0/5eb65b2bb0d09ac6776f2eb54adee6abe8228ea05b20a5ad0e4945de8aac/anyio-4.12.1.tar.gz", hash = "sha256:41cfcc3a4c85d3f05c932da7c26d0201ac36f72abd4435ba90d0464a3ffed703", size = 228685, upload-time = "2026-01-06T11:45:21.246Z" }
|
|
||||||
wheels = [
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/38/0e/27be9fdef66e72d64c0cdc3cc2823101b80585f8119b5c112c2e8f5f7dab/anyio-4.12.1-py3-none-any.whl", hash = "sha256:d405828884fc140aa80a3c667b8beed277f1dfedec42ba031bd6ac3db606ab6c", size = 113592, upload-time = "2026-01-06T11:45:19.497Z" },
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|
@ -76,15 +54,76 @@ wheels = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "click"
|
name = "charset-normalizer"
|
||||||
version = "8.3.1"
|
version = "3.4.7"
|
||||||
source = { registry = "https://pypi.org/simple" }
|
source = { registry = "https://pypi.org/simple" }
|
||||||
dependencies = [
|
sdist = { url = "https://files.pythonhosted.org/packages/e7/a1/67fe25fac3c7642725500a3f6cfe5821ad557c3abb11c9d20d12c7008d3e/charset_normalizer-3.4.7.tar.gz", hash = "sha256:ae89db9e5f98a11a4bf50407d4363e7b09b31e55bc117b4f7d80aab97ba009e5", size = 144271, upload-time = "2026-04-02T09:28:39.342Z" }
|
||||||
{ name = "colorama", marker = "sys_platform == 'win32'" },
|
|
||||||
]
|
|
||||||
sdist = { url = "https://files.pythonhosted.org/packages/3d/fa/656b739db8587d7b5dfa22e22ed02566950fbfbcdc20311993483657a5c0/click-8.3.1.tar.gz", hash = "sha256:12ff4785d337a1bb490bb7e9c2b1ee5da3112e94a8622f26a6c77f5d2fc6842a", size = 295065, upload-time = "2025-11-15T20:45:42.706Z" }
|
|
||||||
wheels = [
|
wheels = [
|
||||||
{ url = "https://files.pythonhosted.org/packages/98/78/01c019cdb5d6498122777c1a43056ebb3ebfeef2076d9d026bfe15583b2b/click-8.3.1-py3-none-any.whl", hash = "sha256:981153a64e25f12d547d3426c367a4857371575ee7ad18df2a6183ab0545b2a6", size = 108274, upload-time = "2025-11-15T20:45:41.139Z" },
|
{ url = "https://files.pythonhosted.org/packages/0c/eb/4fc8d0a7110eb5fc9cc161723a34a8a6c200ce3b4fbf681bc86feee22308/charset_normalizer-3.4.7-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:eca9705049ad3c7345d574e3510665cb2cf844c2f2dcfe675332677f081cbd46", size = 311328, upload-time = "2026-04-02T09:26:24.331Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/f8/e3/0fadc706008ac9d7b9b5be6dc767c05f9d3e5df51744ce4cc9605de7b9f4/charset_normalizer-3.4.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6178f72c5508bfc5fd446a5905e698c6212932f25bcdd4b47a757a50605a90e2", size = 208061, upload-time = "2026-04-02T09:26:25.568Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/42/f0/3dd1045c47f4a4604df85ec18ad093912ae1344ac706993aff91d38773a2/charset_normalizer-3.4.7-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e1421b502d83040e6d7fb2fb18dff63957f720da3d77b2fbd3187ceb63755d7b", size = 229031, upload-time = "2026-04-02T09:26:26.865Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/dc/67/675a46eb016118a2fbde5a277a5d15f4f69d5f3f5f338e5ee2f8948fcf43/charset_normalizer-3.4.7-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:edac0f1ab77644605be2cbba52e6b7f630731fc42b34cb0f634be1a6eface56a", size = 225239, upload-time = "2026-04-02T09:26:28.044Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/4b/f8/d0118a2f5f23b02cd166fa385c60f9b0d4f9194f574e2b31cef350ad7223/charset_normalizer-3.4.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5649fd1c7bade02f320a462fdefd0b4bd3ce036065836d4f42e0de958038e116", size = 216589, upload-time = "2026-04-02T09:26:29.239Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/b1/f1/6d2b0b261b6c4ceef0fcb0d17a01cc5bc53586c2d4796fa04b5c540bc13d/charset_normalizer-3.4.7-cp312-cp312-manylinux_2_31_armv7l.whl", hash = "sha256:203104ed3e428044fd943bc4bf45fa73c0730391f9621e37fe39ecf477b128cb", size = 202733, upload-time = "2026-04-02T09:26:30.5Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/6f/c0/7b1f943f7e87cc3db9626ba17807d042c38645f0a1d4415c7a14afb5591f/charset_normalizer-3.4.7-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:298930cec56029e05497a76988377cbd7457ba864beeea92ad7e844fe74cd1f1", size = 212652, upload-time = "2026-04-02T09:26:31.709Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/38/dd/5a9ab159fe45c6e72079398f277b7d2b523e7f716acc489726115a910097/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:708838739abf24b2ceb208d0e22403dd018faeef86ddac04319a62ae884c4f15", size = 211229, upload-time = "2026-04-02T09:26:33.282Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/d5/ff/531a1cad5ca855d1c1a8b69cb71abfd6d85c0291580146fda7c82857caa1/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:0f7eb884681e3938906ed0434f20c63046eacd0111c4ba96f27b76084cd679f5", size = 203552, upload-time = "2026-04-02T09:26:34.845Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/c1/4c/a5fb52d528a8ca41f7598cb619409ece30a169fbdf9cdce592e53b46c3a6/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4dc1e73c36828f982bfe79fadf5919923f8a6f4df2860804db9a98c48824ce8d", size = 230806, upload-time = "2026-04-02T09:26:36.152Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/59/7a/071feed8124111a32b316b33ae4de83d36923039ef8cf48120266844285b/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:aed52fea0513bac0ccde438c188c8a471c4e0f457c2dd20cdbf6ea7a450046c7", size = 212316, upload-time = "2026-04-02T09:26:37.672Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/fd/35/f7dba3994312d7ba508e041eaac39a36b120f32d4c8662b8814dab876431/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:fea24543955a6a729c45a73fe90e08c743f0b3334bbf3201e6c4bc1b0c7fa464", size = 227274, upload-time = "2026-04-02T09:26:38.93Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/8a/2d/a572df5c9204ab7688ec1edc895a73ebded3b023bb07364710b05dd1c9be/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:bb6d88045545b26da47aa879dd4a89a71d1dce0f0e549b1abcb31dfe4a8eac49", size = 218468, upload-time = "2026-04-02T09:26:40.17Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/86/eb/890922a8b03a568ca2f336c36585a4713c55d4d67bf0f0c78924be6315ca/charset_normalizer-3.4.7-cp312-cp312-win32.whl", hash = "sha256:2257141f39fe65a3fdf38aeccae4b953e5f3b3324f4ff0daf9f15b8518666a2c", size = 148460, upload-time = "2026-04-02T09:26:41.416Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/35/d9/0e7dffa06c5ab081f75b1b786f0aefc88365825dfcd0ac544bdb7b2b6853/charset_normalizer-3.4.7-cp312-cp312-win_amd64.whl", hash = "sha256:5ed6ab538499c8644b8a3e18debabcd7ce684f3fa91cf867521a7a0279cab2d6", size = 159330, upload-time = "2026-04-02T09:26:42.554Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/9e/5d/481bcc2a7c88ea6b0878c299547843b2521ccbc40980cb406267088bc701/charset_normalizer-3.4.7-cp312-cp312-win_arm64.whl", hash = "sha256:56be790f86bfb2c98fb742ce566dfb4816e5a83384616ab59c49e0604d49c51d", size = 147828, upload-time = "2026-04-02T09:26:44.075Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/c1/3b/66777e39d3ae1ddc77ee606be4ec6d8cbd4c801f65e5a1b6f2b11b8346dd/charset_normalizer-3.4.7-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:f496c9c3cc02230093d8330875c4c3cdfc3b73612a5fd921c65d39cbcef08063", size = 309627, upload-time = "2026-04-02T09:26:45.198Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/2e/4e/b7f84e617b4854ade48a1b7915c8ccfadeba444d2a18c291f696e37f0d3b/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0ea948db76d31190bf08bd371623927ee1339d5f2a0b4b1b4a4439a65298703c", size = 207008, upload-time = "2026-04-02T09:26:46.824Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/c4/bb/ec73c0257c9e11b268f018f068f5d00aa0ef8c8b09f7753ebd5f2880e248/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a277ab8928b9f299723bc1a2dabb1265911b1a76341f90a510368ca44ad9ab66", size = 228303, upload-time = "2026-04-02T09:26:48.397Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/85/fb/32d1f5033484494619f701e719429c69b766bfc4dbc61aa9e9c8c166528b/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:3bec022aec2c514d9cf199522a802bd007cd588ab17ab2525f20f9c34d067c18", size = 224282, upload-time = "2026-04-02T09:26:49.684Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/fa/07/330e3a0dda4c404d6da83b327270906e9654a24f6c546dc886a0eb0ffb23/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e044c39e41b92c845bc815e5ae4230804e8e7bc29e399b0437d64222d92809dd", size = 215595, upload-time = "2026-04-02T09:26:50.915Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/e3/7c/fc890655786e423f02556e0216d4b8c6bcb6bdfa890160dc66bf52dee468/charset_normalizer-3.4.7-cp313-cp313-manylinux_2_31_armv7l.whl", hash = "sha256:f495a1652cf3fbab2eb0639776dad966c2fb874d79d87ca07f9d5f059b8bd215", size = 201986, upload-time = "2026-04-02T09:26:52.197Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/d8/97/bfb18b3db2aed3b90cf54dc292ad79fdd5ad65c4eae454099475cbeadd0d/charset_normalizer-3.4.7-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e712b419df8ba5e42b226c510472b37bd57b38e897d3eca5e8cfd410a29fa859", size = 211711, upload-time = "2026-04-02T09:26:53.49Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/6f/a5/a581c13798546a7fd557c82614a5c65a13df2157e9ad6373166d2a3e645d/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:7804338df6fcc08105c7745f1502ba68d900f45fd770d5bdd5288ddccb8a42d8", size = 210036, upload-time = "2026-04-02T09:26:54.975Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/8c/bf/b3ab5bcb478e4193d517644b0fb2bf5497fbceeaa7a1bc0f4d5b50953861/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:481551899c856c704d58119b5025793fa6730adda3571971af568f66d2424bb5", size = 202998, upload-time = "2026-04-02T09:26:56.303Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/e7/4e/23efd79b65d314fa320ec6017b4b5834d5c12a58ba4610aa353af2e2f577/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:f59099f9b66f0d7145115e6f80dd8b1d847176df89b234a5a6b3f00437aa0832", size = 230056, upload-time = "2026-04-02T09:26:57.554Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/b9/9f/1e1941bc3f0e01df116e68dc37a55c4d249df5e6fa77f008841aef68264f/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:f59ad4c0e8f6bba240a9bb85504faa1ab438237199d4cce5f622761507b8f6a6", size = 211537, upload-time = "2026-04-02T09:26:58.843Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/80/0f/088cbb3020d44428964a6c97fe1edfb1b9550396bf6d278330281e8b709c/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:3dedcc22d73ec993f42055eff4fcfed9318d1eeb9a6606c55892a26964964e48", size = 226176, upload-time = "2026-04-02T09:27:00.437Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/6a/9f/130394f9bbe06f4f63e22641d32fc9b202b7e251c9aef4db044324dac493/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:64f02c6841d7d83f832cd97ccf8eb8a906d06eb95d5276069175c696b024b60a", size = 217723, upload-time = "2026-04-02T09:27:02.021Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/73/55/c469897448a06e49f8fa03f6caae97074fde823f432a98f979cc42b90e69/charset_normalizer-3.4.7-cp313-cp313-win32.whl", hash = "sha256:4042d5c8f957e15221d423ba781e85d553722fc4113f523f2feb7b188cc34c5e", size = 148085, upload-time = "2026-04-02T09:27:03.192Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/5d/78/1b74c5bbb3f99b77a1715c91b3e0b5bdb6fe302d95ace4f5b1bec37b0167/charset_normalizer-3.4.7-cp313-cp313-win_amd64.whl", hash = "sha256:3946fa46a0cf3e4c8cb1cc52f56bb536310d34f25f01ca9b6c16afa767dab110", size = 158819, upload-time = "2026-04-02T09:27:04.454Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/68/86/46bd42279d323deb8687c4a5a811fd548cb7d1de10cf6535d099877a9a9f/charset_normalizer-3.4.7-cp313-cp313-win_arm64.whl", hash = "sha256:80d04837f55fc81da168b98de4f4b797ef007fc8a79ab71c6ec9bc4dd662b15b", size = 147915, upload-time = "2026-04-02T09:27:05.971Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/97/c8/c67cb8c70e19ef1960b97b22ed2a1567711de46c4ddf19799923adc836c2/charset_normalizer-3.4.7-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:c36c333c39be2dbca264d7803333c896ab8fa7d4d6f0ab7edb7dfd7aea6e98c0", size = 309234, upload-time = "2026-04-02T09:27:07.194Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/99/85/c091fdee33f20de70d6c8b522743b6f831a2f1cd3ff86de4c6a827c48a76/charset_normalizer-3.4.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1c2aed2e5e41f24ea8ef1590b8e848a79b56f3a5564a65ceec43c9d692dc7d8a", size = 208042, upload-time = "2026-04-02T09:27:08.749Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/87/1c/ab2ce611b984d2fd5d86a5a8a19c1ae26acac6bad967da4967562c75114d/charset_normalizer-3.4.7-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:54523e136b8948060c0fa0bc7b1b50c32c186f2fceee897a495406bb6e311d2b", size = 228706, upload-time = "2026-04-02T09:27:09.951Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/a8/29/2b1d2cb00bf085f59d29eb773ce58ec2d325430f8c216804a0a5cd83cbca/charset_normalizer-3.4.7-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:715479b9a2802ecac752a3b0efa2b0b60285cf962ee38414211abdfccc233b41", size = 224727, upload-time = "2026-04-02T09:27:11.175Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/47/5c/032c2d5a07fe4d4855fea851209cca2b6f03ebeb6d4e3afdb3358386a684/charset_normalizer-3.4.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bd6c2a1c7573c64738d716488d2cdd3c00e340e4835707d8fdb8dc1a66ef164e", size = 215882, upload-time = "2026-04-02T09:27:12.446Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/2c/c2/356065d5a8b78ed04499cae5f339f091946a6a74f91e03476c33f0ab7100/charset_normalizer-3.4.7-cp314-cp314-manylinux_2_31_armv7l.whl", hash = "sha256:c45e9440fb78f8ddabcf714b68f936737a121355bf59f3907f4e17721b9d1aae", size = 200860, upload-time = "2026-04-02T09:27:13.721Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/0c/cd/a32a84217ced5039f53b29f460962abb2d4420def55afabe45b1c3c7483d/charset_normalizer-3.4.7-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:3534e7dcbdcf757da6b85a0bbf5b6868786d5982dd959b065e65481644817a18", size = 211564, upload-time = "2026-04-02T09:27:15.272Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/44/86/58e6f13ce26cc3b8f4a36b94a0f22ae2f00a72534520f4ae6857c4b81f89/charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:e8ac484bf18ce6975760921bb6148041faa8fef0547200386ea0b52b5d27bf7b", size = 211276, upload-time = "2026-04-02T09:27:16.834Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/8f/fe/d17c32dc72e17e155e06883efa84514ca375f8a528ba2546bee73fc4df81/charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:a5fe03b42827c13cdccd08e6c0247b6a6d4b5e3cdc53fd1749f5896adcdc2356", size = 201238, upload-time = "2026-04-02T09:27:18.229Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/6a/29/f33daa50b06525a237451cdb6c69da366c381a3dadcd833fa5676bc468b3/charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:2d6eb928e13016cea4f1f21d1e10c1cebd5a421bc57ddf5b1142ae3f86824fab", size = 230189, upload-time = "2026-04-02T09:27:19.445Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/b6/6e/52c84015394a6a0bdcd435210a7e944c5f94ea1055f5cc5d56c5fe368e7b/charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:e74327fb75de8986940def6e8dee4f127cc9752bee7355bb323cc5b2659b6d46", size = 211352, upload-time = "2026-04-02T09:27:20.79Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/8c/d7/4353be581b373033fb9198bf1da3cf8f09c1082561e8e922aa7b39bf9fe8/charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:d6038d37043bced98a66e68d3aa2b6a35505dc01328cd65217cefe82f25def44", size = 227024, upload-time = "2026-04-02T09:27:22.063Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/30/45/99d18aa925bd1740098ccd3060e238e21115fffbfdcb8f3ece837d0ace6c/charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:7579e913a5339fb8fa133f6bbcfd8e6749696206cf05acdbdca71a1b436d8e72", size = 217869, upload-time = "2026-04-02T09:27:23.486Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/5c/05/5ee478aa53f4bb7996482153d4bfe1b89e0f087f0ab6b294fcf92d595873/charset_normalizer-3.4.7-cp314-cp314-win32.whl", hash = "sha256:5b77459df20e08151cd6f8b9ef8ef1f961ef73d85c21a555c7eed5b79410ec10", size = 148541, upload-time = "2026-04-02T09:27:25.146Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/48/77/72dcb0921b2ce86420b2d79d454c7022bf5be40202a2a07906b9f2a35c97/charset_normalizer-3.4.7-cp314-cp314-win_amd64.whl", hash = "sha256:92a0a01ead5e668468e952e4238cccd7c537364eb7d851ab144ab6627dbbe12f", size = 159634, upload-time = "2026-04-02T09:27:26.642Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/c6/a3/c2369911cd72f02386e4e340770f6e158c7980267da16af8f668217abaa0/charset_normalizer-3.4.7-cp314-cp314-win_arm64.whl", hash = "sha256:67f6279d125ca0046a7fd386d01b311c6363844deac3e5b069b514ba3e63c246", size = 148384, upload-time = "2026-04-02T09:27:28.271Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/94/09/7e8a7f73d24dba1f0035fbbf014d2c36828fc1bf9c88f84093e57d315935/charset_normalizer-3.4.7-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:effc3f449787117233702311a1b7d8f59cba9ced946ba727bdc329ec69028e24", size = 330133, upload-time = "2026-04-02T09:27:29.474Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/8d/da/96975ddb11f8e977f706f45cddd8540fd8242f71ecdb5d18a80723dcf62c/charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fbccdc05410c9ee21bbf16a35f4c1d16123dcdeb8a1d38f33654fa21d0234f79", size = 216257, upload-time = "2026-04-02T09:27:30.793Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/e5/e8/1d63bf8ef2d388e95c64b2098f45f84758f6d102a087552da1485912637b/charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:733784b6d6def852c814bce5f318d25da2ee65dd4839a0718641c696e09a2960", size = 234851, upload-time = "2026-04-02T09:27:32.44Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/9b/40/e5ff04233e70da2681fa43969ad6f66ca5611d7e669be0246c4c7aaf6dc8/charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a89c23ef8d2c6b27fd200a42aa4ac72786e7c60d40efdc76e6011260b6e949c4", size = 233393, upload-time = "2026-04-02T09:27:34.03Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/be/c1/06c6c49d5a5450f76899992f1ee40b41d076aee9279b49cf9974d2f313d5/charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6c114670c45346afedc0d947faf3c7f701051d2518b943679c8ff88befe14f8e", size = 223251, upload-time = "2026-04-02T09:27:35.369Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/2b/9f/f2ff16fb050946169e3e1f82134d107e5d4ae72647ec8a1b1446c148480f/charset_normalizer-3.4.7-cp314-cp314t-manylinux_2_31_armv7l.whl", hash = "sha256:a180c5e59792af262bf263b21a3c49353f25945d8d9f70628e73de370d55e1e1", size = 206609, upload-time = "2026-04-02T09:27:36.661Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/69/d5/a527c0cd8d64d2eab7459784fb4169a0ac76e5a6fc5237337982fd61347e/charset_normalizer-3.4.7-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:3c9a494bc5ec77d43cea229c4f6db1e4d8fe7e1bbffa8b6f0f0032430ff8ab44", size = 220014, upload-time = "2026-04-02T09:27:38.019Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/7e/80/8a7b8104a3e203074dc9aa2c613d4b726c0e136bad1cc734594b02867972/charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:8d828b6667a32a728a1ad1d93957cdf37489c57b97ae6c4de2860fa749b8fc1e", size = 218979, upload-time = "2026-04-02T09:27:39.37Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/02/9a/b759b503d507f375b2b5c153e4d2ee0a75aa215b7f2489cf314f4541f2c0/charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:cf1493cd8607bec4d8a7b9b004e699fcf8f9103a9284cc94962cb73d20f9d4a3", size = 209238, upload-time = "2026-04-02T09:27:40.722Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/c2/4e/0f3f5d47b86bdb79256e7290b26ac847a2832d9a4033f7eb2cd4bcf4bb5b/charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:0c96c3b819b5c3e9e165495db84d41914d6894d55181d2d108cc1a69bfc9cce0", size = 236110, upload-time = "2026-04-02T09:27:42.33Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/96/23/bce28734eb3ed2c91dcf93abeb8a5cf393a7b2749725030bb630e554fdd8/charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:752a45dc4a6934060b3b0dab47e04edc3326575f82be64bc4fc293914566503e", size = 219824, upload-time = "2026-04-02T09:27:43.924Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/2c/6f/6e897c6984cc4d41af319b077f2f600fc8214eb2fe2d6bcb79141b882400/charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:8778f0c7a52e56f75d12dae53ae320fae900a8b9b4164b981b9c5ce059cd1fcb", size = 233103, upload-time = "2026-04-02T09:27:45.348Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/76/22/ef7bd0fe480a0ae9b656189ec00744b60933f68b4f42a7bb06589f6f576a/charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:ce3412fbe1e31eb81ea42f4169ed94861c56e643189e1e75f0041f3fe7020abe", size = 225194, upload-time = "2026-04-02T09:27:46.706Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/c5/a7/0e0ab3e0b5bc1219bd80a6a0d4d72ca74d9250cb2382b7c699c147e06017/charset_normalizer-3.4.7-cp314-cp314t-win32.whl", hash = "sha256:c03a41a8784091e67a39648f70c5f97b5b6a37f216896d44d2cdcb82615339a0", size = 159827, upload-time = "2026-04-02T09:27:48.053Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/7a/1d/29d32e0fb40864b1f878c7f5a0b343ae676c6e2b271a2d55cc3a152391da/charset_normalizer-3.4.7-cp314-cp314t-win_amd64.whl", hash = "sha256:03853ed82eeebbce3c2abfdbc98c96dc205f32a79627688ac9a27370ea61a49c", size = 174168, upload-time = "2026-04-02T09:27:49.795Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/de/32/d92444ad05c7a6e41fb2036749777c163baf7a0301a040cb672d6b2b1ae9/charset_normalizer-3.4.7-cp314-cp314t-win_arm64.whl", hash = "sha256:c35abb8bfff0185efac5878da64c45dafd2b37fb0383add1be155a763c1f083d", size = 153018, upload-time = "2026-04-02T09:27:51.116Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/db/8f/61959034484a4a7c527811f4721e75d02d653a35afb0b6054474d8185d4c/charset_normalizer-3.4.7-py3-none-any.whl", hash = "sha256:3dce51d0f5e7951f8bb4900c257dad282f49190fdbebecd4ba99bcc41fef404d", size = 61958, upload-time = "2026-04-02T09:28:37.794Z" },
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|
@ -253,15 +292,6 @@ wheels = [
|
||||||
{ url = "https://files.pythonhosted.org/packages/e6/ab/fb21f4c939bb440104cc2b396d3be1d9b7a9fd3c6c2a53d98c45b3d7c954/fsspec-2026.2.0-py3-none-any.whl", hash = "sha256:98de475b5cb3bd66bedd5c4679e87b4fdfe1a3bf4d707b151b3c07e58c9a2437", size = 202505, upload-time = "2026-02-05T21:50:51.819Z" },
|
{ url = "https://files.pythonhosted.org/packages/e6/ab/fb21f4c939bb440104cc2b396d3be1d9b7a9fd3c6c2a53d98c45b3d7c954/fsspec-2026.2.0-py3-none-any.whl", hash = "sha256:98de475b5cb3bd66bedd5c4679e87b4fdfe1a3bf4d707b151b3c07e58c9a2437", size = 202505, upload-time = "2026-02-05T21:50:51.819Z" },
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "h11"
|
|
||||||
version = "0.16.0"
|
|
||||||
source = { registry = "https://pypi.org/simple" }
|
|
||||||
sdist = { url = "https://files.pythonhosted.org/packages/01/ee/02a2c011bdab74c6fb3c75474d40b3052059d95df7e73351460c8588d963/h11-0.16.0.tar.gz", hash = "sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1", size = 101250, upload-time = "2025-04-24T03:35:25.427Z" }
|
|
||||||
wheels = [
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl", hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86", size = 37515, upload-time = "2025-04-24T03:35:24.344Z" },
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "hf-xet"
|
name = "hf-xet"
|
||||||
version = "1.4.2"
|
version = "1.4.2"
|
||||||
|
|
@ -294,52 +324,23 @@ wheels = [
|
||||||
{ url = "https://files.pythonhosted.org/packages/b4/7e/ccf239da366b37ba7f0b36095450efae4a64980bdc7ec2f51354205fdf39/hf_xet-1.4.2-cp37-abi3-win_arm64.whl", hash = "sha256:32c012286b581f783653e718c1862aea5b9eb140631685bb0c5e7012c8719a87", size = 3533426, upload-time = "2026-03-13T06:58:55.46Z" },
|
{ url = "https://files.pythonhosted.org/packages/b4/7e/ccf239da366b37ba7f0b36095450efae4a64980bdc7ec2f51354205fdf39/hf_xet-1.4.2-cp37-abi3-win_arm64.whl", hash = "sha256:32c012286b581f783653e718c1862aea5b9eb140631685bb0c5e7012c8719a87", size = 3533426, upload-time = "2026-03-13T06:58:55.46Z" },
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "httpcore"
|
|
||||||
version = "1.0.9"
|
|
||||||
source = { registry = "https://pypi.org/simple" }
|
|
||||||
dependencies = [
|
|
||||||
{ name = "certifi" },
|
|
||||||
{ name = "h11" },
|
|
||||||
]
|
|
||||||
sdist = { url = "https://files.pythonhosted.org/packages/06/94/82699a10bca87a5556c9c59b5963f2d039dbd239f25bc2a63907a05a14cb/httpcore-1.0.9.tar.gz", hash = "sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8", size = 85484, upload-time = "2025-04-24T22:06:22.219Z" }
|
|
||||||
wheels = [
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl", hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55", size = 78784, upload-time = "2025-04-24T22:06:20.566Z" },
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "httpx"
|
|
||||||
version = "0.28.1"
|
|
||||||
source = { registry = "https://pypi.org/simple" }
|
|
||||||
dependencies = [
|
|
||||||
{ name = "anyio" },
|
|
||||||
{ name = "certifi" },
|
|
||||||
{ name = "httpcore" },
|
|
||||||
{ name = "idna" },
|
|
||||||
]
|
|
||||||
sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406, upload-time = "2024-12-06T15:37:23.222Z" }
|
|
||||||
wheels = [
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517, upload-time = "2024-12-06T15:37:21.509Z" },
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "huggingface-hub"
|
name = "huggingface-hub"
|
||||||
version = "1.7.2"
|
version = "0.36.2"
|
||||||
source = { registry = "https://pypi.org/simple" }
|
source = { registry = "https://pypi.org/simple" }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ name = "filelock" },
|
{ name = "filelock" },
|
||||||
{ name = "fsspec" },
|
{ name = "fsspec" },
|
||||||
{ name = "hf-xet", marker = "platform_machine == 'AMD64' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64'" },
|
{ name = "hf-xet", marker = "platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64'" },
|
||||||
{ name = "httpx" },
|
|
||||||
{ name = "packaging" },
|
{ name = "packaging" },
|
||||||
{ name = "pyyaml" },
|
{ name = "pyyaml" },
|
||||||
|
{ name = "requests" },
|
||||||
{ name = "tqdm" },
|
{ name = "tqdm" },
|
||||||
{ name = "typer" },
|
|
||||||
{ name = "typing-extensions" },
|
{ name = "typing-extensions" },
|
||||||
]
|
]
|
||||||
sdist = { url = "https://files.pythonhosted.org/packages/19/15/eafc1c57bf0f8afffb243dcd4c0cceb785e956acc17bba4d9bf2ae21fc9c/huggingface_hub-1.7.2.tar.gz", hash = "sha256:7f7e294e9bbb822e025bdb2ada025fa4344d978175a7f78e824d86e35f7ab43b", size = 724684, upload-time = "2026-03-20T10:36:08.767Z" }
|
sdist = { url = "https://files.pythonhosted.org/packages/7c/b7/8cb61d2eece5fb05a83271da168186721c450eb74e3c31f7ef3169fa475b/huggingface_hub-0.36.2.tar.gz", hash = "sha256:1934304d2fb224f8afa3b87007d58501acfda9215b334eed53072dd5e815ff7a", size = 649782, upload-time = "2026-02-06T09:24:13.098Z" }
|
||||||
wheels = [
|
wheels = [
|
||||||
{ url = "https://files.pythonhosted.org/packages/08/de/3ad061a05f74728927ded48c90b73521b9a9328c85d841bdefb30e01fb85/huggingface_hub-1.7.2-py3-none-any.whl", hash = "sha256:288f33a0a17b2a73a1359e2a5fd28d1becb2c121748c6173ab8643fb342c850e", size = 618036, upload-time = "2026-03-20T10:36:06.824Z" },
|
{ url = "https://files.pythonhosted.org/packages/a8/af/48ac8483240de756d2438c380746e7130d1c6f75802ef22f3c6d49982787/huggingface_hub-0.36.2-py3-none-any.whl", hash = "sha256:48f0c8eac16145dfce371e9d2d7772854a4f591bcb56c9cf548accf531d54270", size = 566395, upload-time = "2026-02-06T09:24:11.133Z" },
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|
@ -502,25 +503,13 @@ dependencies = [
|
||||||
|
|
||||||
[package.metadata]
|
[package.metadata]
|
||||||
requires-dist = [
|
requires-dist = [
|
||||||
{ name = "altair", specifier = ">=5.4" },
|
{ name = "altair", specifier = ">=5.4,<6" },
|
||||||
{ name = "beautifulsoup4", specifier = ">=4.12" },
|
{ name = "beautifulsoup4", specifier = ">=4.12,<5" },
|
||||||
{ name = "faiss-cpu", specifier = ">=1.9" },
|
{ name = "faiss-cpu", specifier = ">=1.9,<2" },
|
||||||
{ name = "matplotlib", specifier = ">=3.9" },
|
{ name = "matplotlib", specifier = ">=3.9,<4" },
|
||||||
{ name = "numpy", specifier = ">=2.0" },
|
{ name = "numpy", specifier = ">=2.0,<3" },
|
||||||
{ name = "sentence-transformers", specifier = ">=3.4" },
|
{ name = "sentence-transformers", specifier = ">=3.4,<4" },
|
||||||
{ name = "torch", specifier = ">=2.5", index = "https://download.pytorch.org/whl/cpu" },
|
{ name = "torch", specifier = ">=2.5,<3", index = "https://download.pytorch.org/whl/cpu" },
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "markdown-it-py"
|
|
||||||
version = "4.0.0"
|
|
||||||
source = { registry = "https://pypi.org/simple" }
|
|
||||||
dependencies = [
|
|
||||||
{ name = "mdurl" },
|
|
||||||
]
|
|
||||||
sdist = { url = "https://files.pythonhosted.org/packages/5b/f5/4ec618ed16cc4f8fb3b701563655a69816155e79e24a17b651541804721d/markdown_it_py-4.0.0.tar.gz", hash = "sha256:cb0a2b4aa34f932c007117b194e945bd74e0ec24133ceb5bac59009cda1cb9f3", size = 73070, upload-time = "2025-08-11T12:57:52.854Z" }
|
|
||||||
wheels = [
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl", hash = "sha256:87327c59b172c5011896038353a81343b6754500a08cd7a4973bb48c6d578147", size = 87321, upload-time = "2025-08-11T12:57:51.923Z" },
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|
@ -640,15 +629,6 @@ wheels = [
|
||||||
{ url = "https://files.pythonhosted.org/packages/5d/49/d651878698a0b67f23aa28e17f45a6d6dd3d3f933fa29087fa4ce5947b5a/matplotlib-3.10.8-cp314-cp314t-win_arm64.whl", hash = "sha256:113bb52413ea508ce954a02c10ffd0d565f9c3bc7f2eddc27dfe1731e71c7b5f", size = 8192560, upload-time = "2025-12-10T22:56:38.008Z" },
|
{ url = "https://files.pythonhosted.org/packages/5d/49/d651878698a0b67f23aa28e17f45a6d6dd3d3f933fa29087fa4ce5947b5a/matplotlib-3.10.8-cp314-cp314t-win_arm64.whl", hash = "sha256:113bb52413ea508ce954a02c10ffd0d565f9c3bc7f2eddc27dfe1731e71c7b5f", size = 8192560, upload-time = "2025-12-10T22:56:38.008Z" },
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "mdurl"
|
|
||||||
version = "0.1.2"
|
|
||||||
source = { registry = "https://pypi.org/simple" }
|
|
||||||
sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729, upload-time = "2022-08-14T12:40:10.846Z" }
|
|
||||||
wheels = [
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979, upload-time = "2022-08-14T12:40:09.779Z" },
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mpmath"
|
name = "mpmath"
|
||||||
version = "1.3.0"
|
version = "1.3.0"
|
||||||
|
|
@ -815,15 +795,6 @@ wheels = [
|
||||||
{ url = "https://files.pythonhosted.org/packages/ec/d2/de599c95ba0a973b94410477f8bf0b6f0b5e67360eb89bcb1ad365258beb/pillow-12.1.1-cp314-cp314t-win_arm64.whl", hash = "sha256:7b03048319bfc6170e93bd60728a1af51d3dd7704935feb228c4d4faab35d334", size = 2546446, upload-time = "2026-02-11T04:22:50.342Z" },
|
{ url = "https://files.pythonhosted.org/packages/ec/d2/de599c95ba0a973b94410477f8bf0b6f0b5e67360eb89bcb1ad365258beb/pillow-12.1.1-cp314-cp314t-win_arm64.whl", hash = "sha256:7b03048319bfc6170e93bd60728a1af51d3dd7704935feb228c4d4faab35d334", size = 2546446, upload-time = "2026-02-11T04:22:50.342Z" },
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "pygments"
|
|
||||||
version = "2.19.2"
|
|
||||||
source = { registry = "https://pypi.org/simple" }
|
|
||||||
sdist = { url = "https://files.pythonhosted.org/packages/b0/77/a5b8c569bf593b0140bde72ea885a803b82086995367bf2037de0159d924/pygments-2.19.2.tar.gz", hash = "sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887", size = 4968631, upload-time = "2025-06-21T13:39:12.283Z" }
|
|
||||||
wheels = [
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/c7/21/705964c7812476f378728bdf590ca4b771ec72385c533964653c68e86bdc/pygments-2.19.2-py3-none-any.whl", hash = "sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b", size = 1225217, upload-time = "2025-06-21T13:39:07.939Z" },
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pyparsing"
|
name = "pyparsing"
|
||||||
version = "3.3.2"
|
version = "3.3.2"
|
||||||
|
|
@ -994,16 +965,18 @@ wheels = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rich"
|
name = "requests"
|
||||||
version = "14.3.3"
|
version = "2.33.1"
|
||||||
source = { registry = "https://pypi.org/simple" }
|
source = { registry = "https://pypi.org/simple" }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ name = "markdown-it-py" },
|
{ name = "certifi" },
|
||||||
{ name = "pygments" },
|
{ name = "charset-normalizer" },
|
||||||
|
{ name = "idna" },
|
||||||
|
{ name = "urllib3" },
|
||||||
]
|
]
|
||||||
sdist = { url = "https://files.pythonhosted.org/packages/b3/c6/f3b320c27991c46f43ee9d856302c70dc2d0fb2dba4842ff739d5f46b393/rich-14.3.3.tar.gz", hash = "sha256:b8daa0b9e4eef54dd8cf7c86c03713f53241884e814f4e2f5fb342fe520f639b", size = 230582, upload-time = "2026-02-19T17:23:12.474Z" }
|
sdist = { url = "https://files.pythonhosted.org/packages/5f/a4/98b9c7c6428a668bf7e42ebb7c79d576a1c3c1e3ae2d47e674b468388871/requests-2.33.1.tar.gz", hash = "sha256:18817f8c57c6263968bc123d237e3b8b08ac046f5456bd1e307ee8f4250d3517", size = 134120, upload-time = "2026-03-30T16:09:15.531Z" }
|
||||||
wheels = [
|
wheels = [
|
||||||
{ url = "https://files.pythonhosted.org/packages/14/25/b208c5683343959b670dc001595f2f3737e051da617f66c31f7c4fa93abc/rich-14.3.3-py3-none-any.whl", hash = "sha256:793431c1f8619afa7d3b52b2cdec859562b950ea0d4b6b505397612db8d5362d", size = 310458, upload-time = "2026-02-19T17:23:13.732Z" },
|
{ url = "https://files.pythonhosted.org/packages/d7/8e/7540e8a2036f79a125c1d2ebadf69ed7901608859186c856fa0388ef4197/requests-2.33.1-py3-none-any.whl", hash = "sha256:4e6d1ef462f3626a1f0a0a9c42dd93c63bad33f9f1c1937509b8c5c8718ab56a", size = 64947, upload-time = "2026-03-30T16:09:13.83Z" },
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|
@ -1216,22 +1189,21 @@ wheels = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "sentence-transformers"
|
name = "sentence-transformers"
|
||||||
version = "5.3.0"
|
version = "3.4.1"
|
||||||
source = { registry = "https://pypi.org/simple" }
|
source = { registry = "https://pypi.org/simple" }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ name = "huggingface-hub" },
|
{ name = "huggingface-hub" },
|
||||||
{ name = "numpy" },
|
{ name = "pillow" },
|
||||||
{ name = "scikit-learn" },
|
{ name = "scikit-learn" },
|
||||||
{ name = "scipy" },
|
{ name = "scipy" },
|
||||||
{ name = "torch", version = "2.10.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "sys_platform == 'darwin'" },
|
{ name = "torch", version = "2.10.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "sys_platform == 'darwin'" },
|
||||||
{ name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "sys_platform != 'darwin'" },
|
{ name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "sys_platform != 'darwin'" },
|
||||||
{ name = "tqdm" },
|
{ name = "tqdm" },
|
||||||
{ name = "transformers" },
|
{ name = "transformers" },
|
||||||
{ name = "typing-extensions" },
|
|
||||||
]
|
]
|
||||||
sdist = { url = "https://files.pythonhosted.org/packages/fe/26/448453925b6ce0c29d8b54327caa71ee4835511aef02070467402273079c/sentence_transformers-5.3.0.tar.gz", hash = "sha256:414a0a881f53a4df0e6cbace75f823bfcb6b94d674c42a384b498959b7c065e2", size = 403330, upload-time = "2026-03-12T14:53:40.778Z" }
|
sdist = { url = "https://files.pythonhosted.org/packages/16/74/aca6f8a2b8d62b4daf8c9a0c49d2aa573381caf47dc35cbb343389229376/sentence_transformers-3.4.1.tar.gz", hash = "sha256:68daa57504ff548340e54ff117bd86c1d2f784b21e0fb2689cf3272b8937b24b", size = 223898, upload-time = "2025-01-29T14:25:55.982Z" }
|
||||||
wheels = [
|
wheels = [
|
||||||
{ url = "https://files.pythonhosted.org/packages/e2/9c/2fa7224058cad8df68d84bafee21716f30892cecc7ad1ad73bde61d23754/sentence_transformers-5.3.0-py3-none-any.whl", hash = "sha256:dca6b98db790274a68185d27a65801b58b4caf653a4e556b5f62827509347c7d", size = 512390, upload-time = "2026-03-12T14:53:39.035Z" },
|
{ url = "https://files.pythonhosted.org/packages/05/89/7eb147a37b7f31d3c815543df539d8b8d0425e93296c875cc87719d65232/sentence_transformers-3.4.1-py3-none-any.whl", hash = "sha256:e026dc6d56801fd83f74ad29a30263f401b4b522165c19386d8bc10dcca805da", size = 275896, upload-time = "2025-01-29T14:25:53.614Z" },
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|
@ -1243,15 +1215,6 @@ wheels = [
|
||||||
{ url = "https://files.pythonhosted.org/packages/9d/76/f789f7a86709c6b087c5a2f52f911838cad707cc613162401badc665acfe/setuptools-82.0.1-py3-none-any.whl", hash = "sha256:a59e362652f08dcd477c78bb6e7bd9d80a7995bc73ce773050228a348ce2e5bb", size = 1006223, upload-time = "2026-03-09T12:47:15.026Z" },
|
{ url = "https://files.pythonhosted.org/packages/9d/76/f789f7a86709c6b087c5a2f52f911838cad707cc613162401badc665acfe/setuptools-82.0.1-py3-none-any.whl", hash = "sha256:a59e362652f08dcd477c78bb6e7bd9d80a7995bc73ce773050228a348ce2e5bb", size = 1006223, upload-time = "2026-03-09T12:47:15.026Z" },
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "shellingham"
|
|
||||||
version = "1.5.4"
|
|
||||||
source = { registry = "https://pypi.org/simple" }
|
|
||||||
sdist = { url = "https://files.pythonhosted.org/packages/58/15/8b3609fd3830ef7b27b655beb4b4e9c62313a4e8da8c676e142cc210d58e/shellingham-1.5.4.tar.gz", hash = "sha256:8dbca0739d487e5bd35ab3ca4b36e11c4078f3a234bfce294b0a0291363404de", size = 10310, upload-time = "2023-10-24T04:13:40.426Z" }
|
|
||||||
wheels = [
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/e0/f9/0595336914c5619e5f28a1fb793285925a8cd4b432c9da0a987836c7f822/shellingham-1.5.4-py2.py3-none-any.whl", hash = "sha256:7ecfff8f2fd72616f7481040475a65b2bf8af90a56c89140852d1120324e8686", size = 9755, upload-time = "2023-10-24T04:13:38.866Z" },
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "six"
|
name = "six"
|
||||||
version = "1.17.0"
|
version = "1.17.0"
|
||||||
|
|
@ -1334,15 +1297,15 @@ dependencies = [
|
||||||
{ name = "typing-extensions", marker = "sys_platform == 'darwin'" },
|
{ name = "typing-extensions", marker = "sys_platform == 'darwin'" },
|
||||||
]
|
]
|
||||||
wheels = [
|
wheels = [
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0-1-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:7fbbf409143a4fe0812a40c0b46a436030a7e1d14fe8c5234dfbe44df47f617e" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0-1-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:7fbbf409143a4fe0812a40c0b46a436030a7e1d14fe8c5234dfbe44df47f617e" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0-1-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:b39cafff7229699f9d6e172cac74d85fd71b568268e439e08d9c540e54732a3e" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0-1-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:b39cafff7229699f9d6e172cac74d85fd71b568268e439e08d9c540e54732a3e" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0-2-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:358bd7125cbec6e692d60618a5eec7f55a51b29e3652a849fd42af021d818023" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0-2-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:358bd7125cbec6e692d60618a5eec7f55a51b29e3652a849fd42af021d818023" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0-2-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:470de4176007c2700735e003a830828a88d27129032a3add07291da07e2a94e8" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0-2-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:470de4176007c2700735e003a830828a88d27129032a3add07291da07e2a94e8" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:45a1c5057629444aeb1c452c18298fa7f30f2f7aeadd4dc41f9d340980294407" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:45a1c5057629444aeb1c452c18298fa7f30f2f7aeadd4dc41f9d340980294407" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:339e05502b6c839db40e88720cb700f5a3b50cda332284873e851772d41b2c1e" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:339e05502b6c839db40e88720cb700f5a3b50cda332284873e851772d41b2c1e" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:840351da59cedb7bcbc51981880050813c19ef6b898a7fecf73a3afc71aff3fe" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:840351da59cedb7bcbc51981880050813c19ef6b898a7fecf73a3afc71aff3fe" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:c88b1129fd4e14f0f882963c6728315caae35d2f47374d17edeed1edc7697497" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:c88b1129fd4e14f0f882963c6728315caae35d2f47374d17edeed1edc7697497" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:f4bea7dc451267c028593751612ad559299589304e68df54ae7672427893ff2c" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:f4bea7dc451267c028593751612ad559299589304e68df54ae7672427893ff2c" },
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|
@ -1362,33 +1325,33 @@ dependencies = [
|
||||||
{ name = "typing-extensions", marker = "sys_platform != 'darwin'" },
|
{ name = "typing-extensions", marker = "sys_platform != 'darwin'" },
|
||||||
]
|
]
|
||||||
wheels = [
|
wheels = [
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-linux_aarch64.whl", hash = "sha256:8de5a36371b775e2d4881ed12cc7f2de400b1ad3d728aa74a281f649f87c9b8c" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-linux_aarch64.whl", hash = "sha256:8de5a36371b775e2d4881ed12cc7f2de400b1ad3d728aa74a281f649f87c9b8c" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-linux_s390x.whl", hash = "sha256:9accc30b56cb6756d4a9d04fcb8ebc0bb68c7d55c1ed31a8657397d316d31596" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-linux_s390x.whl", hash = "sha256:9accc30b56cb6756d4a9d04fcb8ebc0bb68c7d55c1ed31a8657397d316d31596" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:179451716487f8cb09b56459667fa1f5c4c0946c1e75fbeae77cfc40a5768d87" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:179451716487f8cb09b56459667fa1f5c4c0946c1e75fbeae77cfc40a5768d87" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:ee40b8a4b4b2cf0670c6fd4f35a7ef23871af956fecb238fbf5da15a72650b1d" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:ee40b8a4b4b2cf0670c6fd4f35a7ef23871af956fecb238fbf5da15a72650b1d" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-win_amd64.whl", hash = "sha256:21cb5436978ef47c823b7a813ff0f8c2892e266cfe0f1d944879b5fba81bf4e1" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-win_amd64.whl", hash = "sha256:21cb5436978ef47c823b7a813ff0f8c2892e266cfe0f1d944879b5fba81bf4e1" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-win_arm64.whl", hash = "sha256:3eaa727e6a73affa61564d86b9d03191df45c8650d0666bd3d57c8597ef61e78" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-win_arm64.whl", hash = "sha256:3eaa727e6a73affa61564d86b9d03191df45c8650d0666bd3d57c8597ef61e78" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-linux_aarch64.whl", hash = "sha256:fd215f3d0f681905c5b56b0630a3d666900a37fcc3ca5b937f95275c66f9fd9c" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-linux_aarch64.whl", hash = "sha256:fd215f3d0f681905c5b56b0630a3d666900a37fcc3ca5b937f95275c66f9fd9c" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-linux_s390x.whl", hash = "sha256:170a0623108055be5199370335cf9b41ba6875b3cb6f086db4aee583331a4899" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-linux_s390x.whl", hash = "sha256:170a0623108055be5199370335cf9b41ba6875b3cb6f086db4aee583331a4899" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:e51994492cdb76edce29da88de3672a3022f9ef0ffd90345436948d4992be2c7" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:e51994492cdb76edce29da88de3672a3022f9ef0ffd90345436948d4992be2c7" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:8d316e5bf121f1eab1147e49ad0511a9d92e4c45cc357d1ab0bee440da71a095" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:8d316e5bf121f1eab1147e49ad0511a9d92e4c45cc357d1ab0bee440da71a095" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-win_amd64.whl", hash = "sha256:b719da5af01b59126ac13eefd6ba3dd12d002dc0e8e79b8b365e55267a8189d3" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-win_amd64.whl", hash = "sha256:b719da5af01b59126ac13eefd6ba3dd12d002dc0e8e79b8b365e55267a8189d3" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-win_arm64.whl", hash = "sha256:b67d91326e4ed9eccbd6b7d84ed7ffa43f93103aa3f0b24145f3001f3b11b714" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-win_arm64.whl", hash = "sha256:b67d91326e4ed9eccbd6b7d84ed7ffa43f93103aa3f0b24145f3001f3b11b714" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-linux_aarch64.whl", hash = "sha256:5af75e5f49de21b0bdf7672bc27139bd285f9e8dbcabe2d617a2eb656514ac36" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-linux_aarch64.whl", hash = "sha256:5af75e5f49de21b0bdf7672bc27139bd285f9e8dbcabe2d617a2eb656514ac36" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-linux_s390x.whl", hash = "sha256:ba51ef01a510baf8fff576174f702c47e1aa54389a9f1fba323bb1a5003ff0bf" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-linux_s390x.whl", hash = "sha256:ba51ef01a510baf8fff576174f702c47e1aa54389a9f1fba323bb1a5003ff0bf" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:0fedcb1a77e8f2aaf7bfd21591bf6d1e0b207473268c9be16b17cb7783253969" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:0fedcb1a77e8f2aaf7bfd21591bf6d1e0b207473268c9be16b17cb7783253969" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:106dd1930cb30a4a337366ba3f9b25318ebf940f51fd46f789281dd9e736bdc4" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:106dd1930cb30a4a337366ba3f9b25318ebf940f51fd46f789281dd9e736bdc4" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-win_amd64.whl", hash = "sha256:eb1bde1ce198f05c8770017de27e001d404499cf552aaaa014569eff56ca25c0" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-win_amd64.whl", hash = "sha256:eb1bde1ce198f05c8770017de27e001d404499cf552aaaa014569eff56ca25c0" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314-linux_aarch64.whl", hash = "sha256:ea2bcc9d1fca66974a71d4bf9a502539283f35d61fcab5a799b4e120846f1e02" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314-linux_aarch64.whl", hash = "sha256:ea2bcc9d1fca66974a71d4bf9a502539283f35d61fcab5a799b4e120846f1e02" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314-linux_s390x.whl", hash = "sha256:f8294fd2fc6dd8f4435a891a0122307a043b14b21f0dac1bca63c85bfb59e586" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314-linux_s390x.whl", hash = "sha256:f8294fd2fc6dd8f4435a891a0122307a043b14b21f0dac1bca63c85bfb59e586" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:a28fdbcfa2fbacffec81300f24dd1bed2b0ccfdbed107a823cff12bc1db070f6" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:a28fdbcfa2fbacffec81300f24dd1bed2b0ccfdbed107a823cff12bc1db070f6" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314-manylinux_2_28_x86_64.whl", hash = "sha256:aada8afc068add586464b2a55adb7cc9091eec55caf5320447204741cb6a0604" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314-manylinux_2_28_x86_64.whl", hash = "sha256:aada8afc068add586464b2a55adb7cc9091eec55caf5320447204741cb6a0604" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314-win_amd64.whl", hash = "sha256:2adc71fe471e98a608723bfc837f7e1929885ebb912c693597711e139c1cda41" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314-win_amd64.whl", hash = "sha256:2adc71fe471e98a608723bfc837f7e1929885ebb912c693597711e139c1cda41" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314t-linux_aarch64.whl", hash = "sha256:9412bd37b70f5ebd1205242c4ba4cabae35a605947f2b30806d5c9b467936db9" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314t-linux_aarch64.whl", hash = "sha256:9412bd37b70f5ebd1205242c4ba4cabae35a605947f2b30806d5c9b467936db9" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314t-linux_s390x.whl", hash = "sha256:e71c476517c33e7db69825a9ff46c7f47a723ec4dac5b2481cff4246d1c632be" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314t-linux_s390x.whl", hash = "sha256:e71c476517c33e7db69825a9ff46c7f47a723ec4dac5b2481cff4246d1c632be" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:23882f8d882460aca809882fc42f5e343bf07585274f929ced00177d1be1eb67" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:23882f8d882460aca809882fc42f5e343bf07585274f929ced00177d1be1eb67" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:4fcd8b4cc2ae20f2b7749fb275349c55432393868778c2d50a08e81d5ee5591e" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:4fcd8b4cc2ae20f2b7749fb275349c55432393868778c2d50a08e81d5ee5591e" },
|
||||||
{ url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314t-win_amd64.whl", hash = "sha256:ffc8da9a1341092d6a90cb5b1c1a33cd61abf0fb43f0cd88443c27fa372c26ae" },
|
{ url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314t-win_amd64.whl", hash = "sha256:ffc8da9a1341092d6a90cb5b1c1a33cd61abf0fb43f0cd88443c27fa372c26ae" },
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|
@ -1405,37 +1368,23 @@ wheels = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "transformers"
|
name = "transformers"
|
||||||
version = "5.3.0"
|
version = "4.57.6"
|
||||||
source = { registry = "https://pypi.org/simple" }
|
source = { registry = "https://pypi.org/simple" }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
{ name = "filelock" },
|
||||||
{ name = "huggingface-hub" },
|
{ name = "huggingface-hub" },
|
||||||
{ name = "numpy" },
|
{ name = "numpy" },
|
||||||
{ name = "packaging" },
|
{ name = "packaging" },
|
||||||
{ name = "pyyaml" },
|
{ name = "pyyaml" },
|
||||||
{ name = "regex" },
|
{ name = "regex" },
|
||||||
|
{ name = "requests" },
|
||||||
{ name = "safetensors" },
|
{ name = "safetensors" },
|
||||||
{ name = "tokenizers" },
|
{ name = "tokenizers" },
|
||||||
{ name = "tqdm" },
|
{ name = "tqdm" },
|
||||||
{ name = "typer" },
|
|
||||||
]
|
]
|
||||||
sdist = { url = "https://files.pythonhosted.org/packages/fc/1a/70e830d53ecc96ce69cfa8de38f163712d2b43ac52fbd743f39f56025c31/transformers-5.3.0.tar.gz", hash = "sha256:009555b364029da9e2946d41f1c5de9f15e6b1df46b189b7293f33a161b9c557", size = 8830831, upload-time = "2026-03-04T17:41:46.119Z" }
|
sdist = { url = "https://files.pythonhosted.org/packages/c4/35/67252acc1b929dc88b6602e8c4a982e64f31e733b804c14bc24b47da35e6/transformers-4.57.6.tar.gz", hash = "sha256:55e44126ece9dc0a291521b7e5492b572e6ef2766338a610b9ab5afbb70689d3", size = 10134912, upload-time = "2026-01-16T10:38:39.284Z" }
|
||||||
wheels = [
|
wheels = [
|
||||||
{ url = "https://files.pythonhosted.org/packages/b8/88/ae8320064e32679a5429a2c9ebbc05c2bf32cefb6e076f9b07f6d685a9b4/transformers-5.3.0-py3-none-any.whl", hash = "sha256:50ac8c89c3c7033444fb3f9f53138096b997ebb70d4b5e50a2e810bf12d3d29a", size = 10661827, upload-time = "2026-03-04T17:41:42.722Z" },
|
{ url = "https://files.pythonhosted.org/packages/03/b8/e484ef633af3887baeeb4b6ad12743363af7cce68ae51e938e00aaa0529d/transformers-4.57.6-py3-none-any.whl", hash = "sha256:4c9e9de11333ddfe5114bc872c9f370509198acf0b87a832a0ab9458e2bd0550", size = 11993498, upload-time = "2026-01-16T10:38:31.289Z" },
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "typer"
|
|
||||||
version = "0.24.1"
|
|
||||||
source = { registry = "https://pypi.org/simple" }
|
|
||||||
dependencies = [
|
|
||||||
{ name = "annotated-doc" },
|
|
||||||
{ name = "click" },
|
|
||||||
{ name = "rich" },
|
|
||||||
{ name = "shellingham" },
|
|
||||||
]
|
|
||||||
sdist = { url = "https://files.pythonhosted.org/packages/f5/24/cb09efec5cc954f7f9b930bf8279447d24618bb6758d4f6adf2574c41780/typer-0.24.1.tar.gz", hash = "sha256:e39b4732d65fbdcde189ae76cf7cd48aeae72919dea1fdfc16593be016256b45", size = 118613, upload-time = "2026-02-21T16:54:40.609Z" }
|
|
||||||
wheels = [
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/4a/91/48db081e7a63bb37284f9fbcefda7c44c277b18b0e13fbc36ea2335b71e6/typer-0.24.1-py3-none-any.whl", hash = "sha256:112c1f0ce578bfb4cab9ffdabc68f031416ebcc216536611ba21f04e9aa84c9e", size = 56085, upload-time = "2026-02-21T16:54:41.616Z" },
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|
@ -1446,3 +1395,12 @@ sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac8
|
||||||
wheels = [
|
wheels = [
|
||||||
{ url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" },
|
{ url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" },
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "urllib3"
|
||||||
|
version = "2.6.3"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/c7/24/5f1b3bdffd70275f6661c76461e25f024d5a38a46f04aaca912426a2b1d3/urllib3-2.6.3.tar.gz", hash = "sha256:1b62b6884944a57dbe321509ab94fd4d3b307075e0c2eae991ac71ee15ad38ed", size = 435556, upload-time = "2026-01-07T16:24:43.925Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl", hash = "sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4", size = 131584, upload-time = "2026-01-07T16:24:42.685Z" },
|
||||||
|
]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue