gitextract_265n7ear/ ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── book/ │ ├── .gitignore │ ├── .verso/ │ │ ├── verso-xref-manifest.json │ │ └── verso-xref.json │ ├── Main.lean │ ├── TPiL/ │ │ ├── AxiomsComputation.lean │ │ ├── Conv.lean │ │ ├── DependentTypeTheory.lean │ │ ├── Examples.lean │ │ ├── InductionAndRecursion.lean │ │ ├── InductiveTypes.lean │ │ ├── InteractingWithLean.lean │ │ ├── Intro.lean │ │ ├── PropositionsAndProofs.lean │ │ ├── QuantifiersEquality.lean │ │ ├── StructuresAndRecords.lean │ │ ├── Tactics.lean │ │ └── TypeClasses.lean │ ├── TPiL.lean │ ├── lake-manifest.json │ ├── lakefile.toml │ ├── lean-toolchain │ ├── static/ │ │ ├── fonts/ │ │ │ ├── noto-sans-mono/ │ │ │ │ ├── OFL.txt │ │ │ │ └── noto-sans-mono.css │ │ │ ├── source-code-pro/ │ │ │ │ ├── LICENSE.md │ │ │ │ ├── OTF/ │ │ │ │ │ ├── SourceCodePro-Black.otf │ │ │ │ │ ├── SourceCodePro-BlackIt.otf │ │ │ │ │ ├── SourceCodePro-Bold.otf │ │ │ │ │ ├── SourceCodePro-BoldIt.otf │ │ │ │ │ ├── SourceCodePro-ExtraLight.otf │ │ │ │ │ ├── SourceCodePro-ExtraLightIt.otf │ │ │ │ │ ├── SourceCodePro-It.otf │ │ │ │ │ ├── SourceCodePro-Light.otf │ │ │ │ │ ├── SourceCodePro-LightIt.otf │ │ │ │ │ ├── SourceCodePro-Medium.otf │ │ │ │ │ ├── SourceCodePro-MediumIt.otf │ │ │ │ │ ├── SourceCodePro-Regular.otf │ │ │ │ │ ├── SourceCodePro-Semibold.otf │ │ │ │ │ └── SourceCodePro-SemiboldIt.otf │ │ │ │ └── source-code-pro.css │ │ │ ├── source-sans/ │ │ │ │ ├── LICENSE.md │ │ │ │ ├── OTF/ │ │ │ │ │ ├── SourceSans3-Black.otf │ │ │ │ │ ├── SourceSans3-BlackIt.otf │ │ │ │ │ ├── SourceSans3-Bold.otf │ │ │ │ │ ├── SourceSans3-BoldIt.otf │ │ │ │ │ ├── SourceSans3-ExtraLight.otf │ │ │ │ │ ├── SourceSans3-ExtraLightIt.otf │ │ │ │ │ ├── SourceSans3-It.otf │ │ │ │ │ ├── SourceSans3-Light.otf │ │ │ │ │ ├── SourceSans3-LightIt.otf │ │ │ │ │ ├── SourceSans3-Medium.otf │ │ │ │ │ ├── SourceSans3-MediumIt.otf │ │ │ │ │ ├── SourceSans3-Regular.otf │ │ │ │ │ ├── SourceSans3-Semibold.otf │ │ │ │ │ └── SourceSans3-SemiboldIt.otf │ │ │ │ ├── VF/ │ │ │ │ │ ├── SourceSans3VF-Italic.otf │ │ │ │ │ └── SourceSans3VF-Upright.otf │ │ │ │ ├── source-sans-3.css │ │ │ │ └── source-sans-3VF.css │ │ │ └── source-serif/ │ │ │ ├── LICENSE.md │ │ │ ├── OTF/ │ │ │ │ ├── SourceSerif4-Black.otf │ │ │ │ ├── SourceSerif4-BlackIt.otf │ │ │ │ ├── SourceSerif4-Bold.otf │ │ │ │ ├── SourceSerif4-BoldIt.otf │ │ │ │ ├── SourceSerif4-ExtraLight.otf │ │ │ │ ├── SourceSerif4-ExtraLightIt.otf │ │ │ │ ├── SourceSerif4-It.otf │ │ │ │ ├── SourceSerif4-Light.otf │ │ │ │ ├── SourceSerif4-LightIt.otf │ │ │ │ ├── SourceSerif4-Regular.otf │ │ │ │ ├── SourceSerif4-Semibold.otf │ │ │ │ └── SourceSerif4-SemiboldIt.otf │ │ │ └── source-serif-text.css │ │ └── theme.css │ └── verso-sources.json ├── examples/ │ ├── .gitignore │ ├── Examples/ │ │ └── Basic.lean │ ├── Examples.lean │ ├── lake-manifest.json │ ├── lakefile.toml │ └── lean-toolchain └── unixode.sty