diff --git a/.gitignore b/.gitignore index 4c67398..aeb74cf 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,11 @@ desktop.ini # Temporary files *.tmp *.bak + +# Local download/scraping scripts — NOT for committing +scrape/ + +# Python bytecode +__pycache__/ +*.pyc +*.pyo diff --git a/ATTRIBUTION.json b/ATTRIBUTION.json index 35b56a3..1fed2a4 100644 --- a/ATTRIBUTION.json +++ b/ATTRIBUTION.json @@ -230,8 +230,195 @@ "author": "The Apache Software Foundation and ODF Toolkit contributors", "license": "Apache-2.0", "source": "https://github.com/tdf/odftoolkit", - "tags": ["odftoolkit", "odt", "odf", "test-fixtures"], + "tags": [ + "odftoolkit", + "odt", + "odf", + "test-fixtures" + ], "donated": "2026-04-01", "notes": "ODF DOM, validation, and specification compliance test fixtures from the ODF Toolkit project" + }, + { + "format": "pdf", + "path": "documents/pdf/pdf-js/*.pdf", + "title": "Mozilla pdf.js Test PDFs", + "author": "Mozilla Corporation and pdf.js contributors", + "license": "Apache-2.0", + "source": "https://github.com/mozilla/pdf.js", + "tags": [ + "pdf-js", + "test-fixtures", + "annotations", + "forms", + "images", + "text-rendering", + "encryption" + ], + "donated": "2026-04-03", + "notes": "PDF test fixtures from Mozilla pdf.js viewer (Apache-2.0, pinned to v4.9.155)" + }, + { + "format": "pdf", + "path": "documents/pdf/qpdf/*.pdf", + "title": "qpdf PDF Transformation Tool Test PDFs", + "author": "Jay Berkenbilt and qpdf contributors", + "license": "Apache-2.0", + "source": "https://github.com/qpdf/qpdf", + "tags": [ + "qpdf", + "test-fixtures", + "encryption", + "page-operations", + "compression", + "edge-cases" + ], + "donated": "2026-04-03", + "notes": "PDF test fixtures from the qpdf PDF transformation tool (Apache-2.0, pinned to v12.3.2)" + }, + { + "format": "pdf", + "path": "documents/pdf/apache-pdfbox/*.pdf", + "title": "Apache PDFBox Test PDFs", + "author": "The Apache Software Foundation and PDFBox contributors", + "license": "Apache-2.0", + "source": "https://github.com/apache/pdfbox", + "tags": [ + "apache-pdfbox", + "test-fixtures", + "forms", + "text-extraction", + "images" + ], + "donated": "2026-04-03", + "notes": "PDF test fixtures from Apache PDFBox Java PDF library (Apache-2.0, pinned to 3.0.7)" + }, + { + "format": "pdf", + "path": "documents/pdf/pikepdf/*.pdf", + "title": "pikepdf Test PDFs", + "author": "James R. Barlow and pikepdf contributors", + "license": "MPL-2.0", + "source": "https://github.com/pikepdf/pikepdf", + "tags": [ + "pikepdf", + "test-fixtures", + "color-spaces", + "pdf-a" + ], + "donated": "2026-04-03", + "notes": "PDF test fixtures from the pikepdf Python PDF library (MPL-2.0)" + }, + { + "format": "pdf", + "path": "documents/pdf/arxiv/*.pdf", + "title": "arXiv CC-BY-4.0 Open Access Papers", + "author": "Various authors (see individual papers at arxiv.org)", + "license": "CC-BY-4.0", + "source": "https://arxiv.org", + "tags": [ + "arxiv", + "academic", + "text-heavy", + "equations", + "figures", + "multi-column" + ], + "donated": "2026-04-03", + "notes": "CC-BY-4.0 papers from arXiv (strictly filtered by license metadata) across CS, Math, Physics, Biology, Economics, Statistics" + }, + { + "format": "pdf", + "path": "documents/pdf/openstax/*.pdf", + "title": "OpenStax Textbook PDFs", + "author": "OpenStax, Rice University", + "license": "CC-BY-4.0", + "source": "https://openstax.org", + "tags": [ + "openstax", + "textbooks", + "educational", + "tables", + "images", + "equations", + "multi-column" + ], + "donated": "2026-04-03", + "notes": "Open educational textbook PDFs from OpenStax (CC-BY-4.0). Chapter excerpts extracted to meet size limits." + }, + { + "format": "pdf", + "path": "documents/pdf/irs-forms/*.pdf", + "title": "IRS Tax Form PDFs", + "author": "Internal Revenue Service, U.S. Department of the Treasury", + "license": "CC0-1.0", + "source": "https://www.irs.gov/forms-instructions", + "tags": [ + "irs", + "government", + "forms", + "fillable-forms", + "tables", + "public-domain" + ], + "donated": "2026-04-03", + "notes": "U.S. federal tax forms and instructions (public domain as U.S. government works; attributed as CC0-1.0)" + }, + { + "format": "pdf", + "path": "documents/pdf/nasa-ntrs/*.pdf", + "title": "NASA Technical Reports", + "author": "National Aeronautics and Space Administration", + "license": "CC0-1.0", + "source": "https://ntrs.nasa.gov", + "tags": [ + "nasa", + "government", + "technical-reports", + "text-heavy", + "images", + "tables", + "public-domain" + ], + "donated": "2026-04-03", + "notes": "NASA technical reports and publications (public domain as U.S. government works; attributed as CC0-1.0)" + }, + { + "format": "pdf", + "path": "documents/pdf/gutenberg/*.pdf", + "title": "Project Gutenberg Public Domain Books", + "author": "Various (original works in public domain)", + "license": "CC0-1.0", + "source": "https://www.gutenberg.org", + "tags": [ + "gutenberg", + "public-domain", + "books", + "text-heavy", + "multilingual", + "literature" + ], + "donated": "2026-04-03", + "notes": "Public domain books from Project Gutenberg in PDF format (multiple languages: English, German, French, Spanish, Italian)" + }, + { + "format": "pdf", + "path": "documents/pdf/internet-archive/*.pdf", + "title": "Internet Archive Public Domain Scanned Books", + "author": "Various (original works in public domain; digitization by Internet Archive)", + "license": "CC0-1.0", + "source": "https://archive.org", + "tags": [ + "internet-archive", + "scanned", + "ocr", + "public-domain", + "multilingual", + "rtl", + "cjk", + "books" + ], + "donated": "2026-04-03", + "notes": "Scanned public domain books from Internet Archive. Includes OCR text layers and multilingual content (Arabic, Chinese, French, German, Spanish, Russian, English) for testing scanned PDF handling and non-Latin script support." } ] diff --git a/ATTRIBUTION.md b/ATTRIBUTION.md index 838922e..50a9f6f 100644 --- a/ATTRIBUTION.md +++ b/ATTRIBUTION.md @@ -212,3 +212,133 @@ This file tracks all donated documents, their authors, licenses, and sources. - **Donated**: 2026-04-01 - **Notes**: ODF DOM, validation, and specification compliance test fixtures from the ODF Toolkit project +--- + +## Mozilla pdf.js Test PDFs + +- **Format**: `pdf` +- **Path**: `documents/pdf/pdf-js/*.pdf` +- **Author**: Mozilla Corporation and pdf.js contributors +- **License**: Apache-2.0 +- **Source**: https://github.com/mozilla/pdf.js +- **Tags**: `pdf-js`, `test-fixtures`, `annotations`, `forms`, `images`, `text-rendering`, `encryption` +- **Donated**: 2026-04-03 +- **Notes**: PDF test fixtures from Mozilla pdf.js viewer (Apache-2.0, pinned to v4.9.155) + +--- + +## qpdf PDF Transformation Tool Test PDFs + +- **Format**: `pdf` +- **Path**: `documents/pdf/qpdf/*.pdf` +- **Author**: Jay Berkenbilt and qpdf contributors +- **License**: Apache-2.0 +- **Source**: https://github.com/qpdf/qpdf +- **Tags**: `qpdf`, `test-fixtures`, `encryption`, `page-operations`, `compression`, `edge-cases` +- **Donated**: 2026-04-03 +- **Notes**: PDF test fixtures from the qpdf PDF transformation tool (Apache-2.0, pinned to v12.3.2) + +--- + +## Apache PDFBox Test PDFs + +- **Format**: `pdf` +- **Path**: `documents/pdf/apache-pdfbox/*.pdf` +- **Author**: The Apache Software Foundation and PDFBox contributors +- **License**: Apache-2.0 +- **Source**: https://github.com/apache/pdfbox +- **Tags**: `apache-pdfbox`, `test-fixtures`, `forms`, `text-extraction`, `images` +- **Donated**: 2026-04-03 +- **Notes**: PDF test fixtures from Apache PDFBox Java PDF library (Apache-2.0, pinned to 3.0.7) + +--- + +## pikepdf Test PDFs + +- **Format**: `pdf` +- **Path**: `documents/pdf/pikepdf/*.pdf` +- **Author**: James R. Barlow and pikepdf contributors +- **License**: MPL-2.0 +- **Source**: https://github.com/pikepdf/pikepdf +- **Tags**: `pikepdf`, `test-fixtures`, `color-spaces`, `pdf-a` +- **Donated**: 2026-04-03 +- **Notes**: PDF test fixtures from the pikepdf Python PDF library (MPL-2.0) + +--- + +## arXiv CC-BY-4.0 Open Access Papers + +- **Format**: `pdf` +- **Path**: `documents/pdf/arxiv/*.pdf` +- **Author**: Various authors (see individual papers at arxiv.org) +- **License**: CC-BY-4.0 +- **Source**: https://arxiv.org +- **Tags**: `arxiv`, `academic`, `text-heavy`, `equations`, `figures`, `multi-column` +- **Donated**: 2026-04-03 +- **Notes**: CC-BY-4.0 papers from arXiv (strictly filtered by license metadata) across CS, Math, Physics, Biology, Economics, Statistics + +--- + +## OpenStax Textbook PDFs + +- **Format**: `pdf` +- **Path**: `documents/pdf/openstax/*.pdf` +- **Author**: OpenStax, Rice University +- **License**: CC-BY-4.0 +- **Source**: https://openstax.org +- **Tags**: `openstax`, `textbooks`, `educational`, `tables`, `images`, `equations`, `multi-column` +- **Donated**: 2026-04-03 +- **Notes**: Open educational textbook PDFs from OpenStax (CC-BY-4.0). Chapter excerpts extracted to meet size limits. + +--- + +## IRS Tax Form PDFs + +- **Format**: `pdf` +- **Path**: `documents/pdf/irs-forms/*.pdf` +- **Author**: Internal Revenue Service, U.S. Department of the Treasury +- **License**: CC0-1.0 +- **Source**: https://www.irs.gov/forms-instructions +- **Tags**: `irs`, `government`, `forms`, `fillable-forms`, `tables`, `public-domain` +- **Donated**: 2026-04-03 +- **Notes**: U.S. federal tax forms and instructions (public domain as U.S. government works; attributed as CC0-1.0) + +--- + +## NASA Technical Reports + +- **Format**: `pdf` +- **Path**: `documents/pdf/nasa-ntrs/*.pdf` +- **Author**: National Aeronautics and Space Administration +- **License**: CC0-1.0 +- **Source**: https://ntrs.nasa.gov +- **Tags**: `nasa`, `government`, `technical-reports`, `text-heavy`, `images`, `tables`, `public-domain` +- **Donated**: 2026-04-03 +- **Notes**: NASA technical reports and publications (public domain as U.S. government works; attributed as CC0-1.0) + +--- + +## Project Gutenberg Public Domain Books + +- **Format**: `pdf` +- **Path**: `documents/pdf/gutenberg/*.pdf` +- **Author**: Various (original works in public domain) +- **License**: CC0-1.0 +- **Source**: https://www.gutenberg.org +- **Tags**: `gutenberg`, `public-domain`, `books`, `text-heavy`, `multilingual`, `literature` +- **Donated**: 2026-04-03 +- **Notes**: Public domain books from Project Gutenberg in PDF format (multiple languages: English, German, French, Spanish, Italian) + +--- + +## Internet Archive Public Domain Scanned Books + +- **Format**: `pdf` +- **Path**: `documents/pdf/internet-archive/*.pdf` +- **Author**: Various (original works in public domain; digitization by Internet Archive) +- **License**: CC0-1.0 +- **Source**: https://archive.org +- **Tags**: `internet-archive`, `scanned`, `ocr`, `public-domain`, `multilingual`, `rtl`, `cjk`, `books` +- **Donated**: 2026-04-03 +- **Notes**: Scanned public domain books from Internet Archive. Includes OCR text layers and multilingual content (Arabic, Chinese, French, German, Spanish, Russian, English) for testing scanned PDF handling and non-Latin script support. + diff --git a/documents/pdf/apache-pdfbox/4pp-highlighting.pdf b/documents/pdf/apache-pdfbox/4pp-highlighting.pdf new file mode 100644 index 0000000..9561561 Binary files /dev/null and b/documents/pdf/apache-pdfbox/4pp-highlighting.pdf differ diff --git a/documents/pdf/apache-pdfbox/acrobatmerge-differentexportvalues-wasmaster.pdf b/documents/pdf/apache-pdfbox/acrobatmerge-differentexportvalues-wasmaster.pdf new file mode 100644 index 0000000..4363e73 Binary files /dev/null and b/documents/pdf/apache-pdfbox/acrobatmerge-differentexportvalues-wasmaster.pdf differ diff --git a/documents/pdf/apache-pdfbox/acrobatmerge-differentexportvalues.pdf b/documents/pdf/apache-pdfbox/acrobatmerge-differentexportvalues.pdf new file mode 100644 index 0000000..f4133fa Binary files /dev/null and b/documents/pdf/apache-pdfbox/acrobatmerge-differentexportvalues.pdf differ diff --git a/documents/pdf/apache-pdfbox/acrobatmerge-differentfieldtype-wasmaster.pdf b/documents/pdf/apache-pdfbox/acrobatmerge-differentfieldtype-wasmaster.pdf new file mode 100644 index 0000000..a2690a2 Binary files /dev/null and b/documents/pdf/apache-pdfbox/acrobatmerge-differentfieldtype-wasmaster.pdf differ diff --git a/documents/pdf/apache-pdfbox/acrobatmerge-differentfieldtype.pdf b/documents/pdf/apache-pdfbox/acrobatmerge-differentfieldtype.pdf new file mode 100644 index 0000000..8986d79 Binary files /dev/null and b/documents/pdf/apache-pdfbox/acrobatmerge-differentfieldtype.pdf differ diff --git a/documents/pdf/apache-pdfbox/acrobatmerge-differentoptions-wasmaster.pdf b/documents/pdf/apache-pdfbox/acrobatmerge-differentoptions-wasmaster.pdf new file mode 100644 index 0000000..1318223 Binary files /dev/null and b/documents/pdf/apache-pdfbox/acrobatmerge-differentoptions-wasmaster.pdf differ diff --git a/documents/pdf/apache-pdfbox/acrobatmerge-differentoptions.pdf b/documents/pdf/apache-pdfbox/acrobatmerge-differentoptions.pdf new file mode 100644 index 0000000..8dd354e Binary files /dev/null and b/documents/pdf/apache-pdfbox/acrobatmerge-differentoptions.pdf differ diff --git a/documents/pdf/apache-pdfbox/acrobatmerge-samemerged.pdf b/documents/pdf/apache-pdfbox/acrobatmerge-samemerged.pdf new file mode 100644 index 0000000..ff04541 Binary files /dev/null and b/documents/pdf/apache-pdfbox/acrobatmerge-samemerged.pdf differ diff --git a/documents/pdf/apache-pdfbox/acrobatmerge-samenamenode.pdf b/documents/pdf/apache-pdfbox/acrobatmerge-samenamenode.pdf new file mode 100644 index 0000000..898cbdb Binary files /dev/null and b/documents/pdf/apache-pdfbox/acrobatmerge-samenamenode.pdf differ diff --git a/documents/pdf/apache-pdfbox/acrobatmerge-textfieldsonly-samemerged.pdf b/documents/pdf/apache-pdfbox/acrobatmerge-textfieldsonly-samemerged.pdf new file mode 100644 index 0000000..159a085 Binary files /dev/null and b/documents/pdf/apache-pdfbox/acrobatmerge-textfieldsonly-samemerged.pdf differ diff --git a/documents/pdf/apache-pdfbox/acroform-pdfbox-2333.pdf b/documents/pdf/apache-pdfbox/acroform-pdfbox-2333.pdf new file mode 100644 index 0000000..39f6d2a Binary files /dev/null and b/documents/pdf/apache-pdfbox/acroform-pdfbox-2333.pdf differ diff --git a/documents/pdf/apache-pdfbox/acroform.pdf b/documents/pdf/apache-pdfbox/acroform.pdf new file mode 100644 index 0000000..567b486 Binary files /dev/null and b/documents/pdf/apache-pdfbox/acroform.pdf differ diff --git a/documents/pdf/apache-pdfbox/acroformformerge-differentexportvalues.pdf b/documents/pdf/apache-pdfbox/acroformformerge-differentexportvalues.pdf new file mode 100644 index 0000000..431b84c Binary files /dev/null and b/documents/pdf/apache-pdfbox/acroformformerge-differentexportvalues.pdf differ diff --git a/documents/pdf/apache-pdfbox/acroformformerge-differentfieldtype.pdf b/documents/pdf/apache-pdfbox/acroformformerge-differentfieldtype.pdf new file mode 100644 index 0000000..a86058e Binary files /dev/null and b/documents/pdf/apache-pdfbox/acroformformerge-differentfieldtype.pdf differ diff --git a/documents/pdf/apache-pdfbox/acroformformerge-differentoptions.pdf b/documents/pdf/apache-pdfbox/acroformformerge-differentoptions.pdf new file mode 100644 index 0000000..40167d4 Binary files /dev/null and b/documents/pdf/apache-pdfbox/acroformformerge-differentoptions.pdf differ diff --git a/documents/pdf/apache-pdfbox/acroformformerge-samenamenode.pdf b/documents/pdf/apache-pdfbox/acroformformerge-samenamenode.pdf new file mode 100644 index 0000000..8afe661 Binary files /dev/null and b/documents/pdf/apache-pdfbox/acroformformerge-samenamenode.pdf differ diff --git a/documents/pdf/apache-pdfbox/acroformformerge-textfieldsonly.pdf b/documents/pdf/apache-pdfbox/acroformformerge-textfieldsonly.pdf new file mode 100644 index 0000000..248e0d2 Binary files /dev/null and b/documents/pdf/apache-pdfbox/acroformformerge-textfieldsonly.pdf differ diff --git a/documents/pdf/apache-pdfbox/acroformformerge.pdf b/documents/pdf/apache-pdfbox/acroformformerge.pdf new file mode 100644 index 0000000..077c3f8 Binary files /dev/null and b/documents/pdf/apache-pdfbox/acroformformerge.pdf differ diff --git a/documents/pdf/apache-pdfbox/acroformsbasicfields.pdf b/documents/pdf/apache-pdfbox/acroformsbasicfields.pdf new file mode 100644 index 0000000..10ecd87 Binary files /dev/null and b/documents/pdf/apache-pdfbox/acroformsbasicfields.pdf differ diff --git a/documents/pdf/apache-pdfbox/acroformsrotation.pdf b/documents/pdf/apache-pdfbox/acroformsrotation.pdf new file mode 100644 index 0000000..112dfaf Binary files /dev/null and b/documents/pdf/apache-pdfbox/acroformsrotation.pdf differ diff --git a/documents/pdf/apache-pdfbox/aes128exposedmeta.pdf b/documents/pdf/apache-pdfbox/aes128exposedmeta.pdf new file mode 100644 index 0000000..84c8df8 Binary files /dev/null and b/documents/pdf/apache-pdfbox/aes128exposedmeta.pdf differ diff --git a/documents/pdf/apache-pdfbox/aes256exposedmeta.pdf b/documents/pdf/apache-pdfbox/aes256exposedmeta.pdf new file mode 100644 index 0000000..d416fea Binary files /dev/null and b/documents/pdf/apache-pdfbox/aes256exposedmeta.pdf differ diff --git a/documents/pdf/apache-pdfbox/aeskeylength128.pdf b/documents/pdf/apache-pdfbox/aeskeylength128.pdf new file mode 100644 index 0000000..0439445 Binary files /dev/null and b/documents/pdf/apache-pdfbox/aeskeylength128.pdf differ diff --git a/documents/pdf/apache-pdfbox/aeskeylength256.pdf b/documents/pdf/apache-pdfbox/aeskeylength256.pdf new file mode 100644 index 0000000..64b308e Binary files /dev/null and b/documents/pdf/apache-pdfbox/aeskeylength256.pdf differ diff --git a/documents/pdf/apache-pdfbox/alignmenttests.pdf b/documents/pdf/apache-pdfbox/alignmenttests.pdf new file mode 100755 index 0000000..414ebc4 Binary files /dev/null and b/documents/pdf/apache-pdfbox/alignmenttests.pdf differ diff --git a/documents/pdf/apache-pdfbox/angledexample.pdf b/documents/pdf/apache-pdfbox/angledexample.pdf new file mode 100644 index 0000000..1bd193d Binary files /dev/null and b/documents/pdf/apache-pdfbox/angledexample.pdf differ diff --git a/documents/pdf/apache-pdfbox/annotationtypes.pdf b/documents/pdf/apache-pdfbox/annotationtypes.pdf new file mode 100644 index 0000000..9e19cf4 Binary files /dev/null and b/documents/pdf/apache-pdfbox/annotationtypes.pdf differ diff --git a/documents/pdf/apache-pdfbox/attachment.pdf b/documents/pdf/apache-pdfbox/attachment.pdf new file mode 100644 index 0000000..dab29fa Binary files /dev/null and b/documents/pdf/apache-pdfbox/attachment.pdf differ diff --git a/documents/pdf/apache-pdfbox/badpagelabels.pdf b/documents/pdf/apache-pdfbox/badpagelabels.pdf new file mode 100644 index 0000000..525705a Binary files /dev/null and b/documents/pdf/apache-pdfbox/badpagelabels.pdf differ diff --git a/documents/pdf/apache-pdfbox/bidisample.pdf b/documents/pdf/apache-pdfbox/bidisample.pdf new file mode 100644 index 0000000..7fb8077 Binary files /dev/null and b/documents/pdf/apache-pdfbox/bidisample.pdf differ diff --git a/documents/pdf/apache-pdfbox/ccitt4-cib-test.pdf b/documents/pdf/apache-pdfbox/ccitt4-cib-test.pdf new file mode 100644 index 0000000..67bd42c Binary files /dev/null and b/documents/pdf/apache-pdfbox/ccitt4-cib-test.pdf differ diff --git a/documents/pdf/apache-pdfbox/combtest.pdf b/documents/pdf/apache-pdfbox/combtest.pdf new file mode 100644 index 0000000..481bea5 Binary files /dev/null and b/documents/pdf/apache-pdfbox/combtest.pdf differ diff --git a/documents/pdf/apache-pdfbox/controlcharacters.pdf b/documents/pdf/apache-pdfbox/controlcharacters.pdf new file mode 100644 index 0000000..f07735d Binary files /dev/null and b/documents/pdf/apache-pdfbox/controlcharacters.pdf differ diff --git a/documents/pdf/apache-pdfbox/custom-render-demo.pdf b/documents/pdf/apache-pdfbox/custom-render-demo.pdf new file mode 100644 index 0000000..63575d6 Binary files /dev/null and b/documents/pdf/apache-pdfbox/custom-render-demo.pdf differ diff --git a/documents/pdf/apache-pdfbox/cweb.pdf b/documents/pdf/apache-pdfbox/cweb.pdf new file mode 100644 index 0000000..aa0f519 Binary files /dev/null and b/documents/pdf/apache-pdfbox/cweb.pdf differ diff --git a/documents/pdf/apache-pdfbox/data-000001.pdf b/documents/pdf/apache-pdfbox/data-000001.pdf new file mode 100644 index 0000000..bff4607 Binary files /dev/null and b/documents/pdf/apache-pdfbox/data-000001.pdf differ diff --git a/documents/pdf/apache-pdfbox/differentdalevels.pdf b/documents/pdf/apache-pdfbox/differentdalevels.pdf new file mode 100644 index 0000000..630b93a Binary files /dev/null and b/documents/pdf/apache-pdfbox/differentdalevels.pdf differ diff --git a/documents/pdf/apache-pdfbox/document.pdf b/documents/pdf/apache-pdfbox/document.pdf new file mode 100644 index 0000000..d68e20e Binary files /dev/null and b/documents/pdf/apache-pdfbox/document.pdf differ diff --git a/documents/pdf/apache-pdfbox/embedded-zip.pdf b/documents/pdf/apache-pdfbox/embedded-zip.pdf new file mode 100644 index 0000000..e2d478e Binary files /dev/null and b/documents/pdf/apache-pdfbox/embedded-zip.pdf differ diff --git a/documents/pdf/apache-pdfbox/eu-001.pdf b/documents/pdf/apache-pdfbox/eu-001.pdf new file mode 100644 index 0000000..0cb4fa8 Binary files /dev/null and b/documents/pdf/apache-pdfbox/eu-001.pdf differ diff --git a/documents/pdf/apache-pdfbox/f001u-3-7j.pdf b/documents/pdf/apache-pdfbox/f001u-3-7j.pdf new file mode 100644 index 0000000..6e51a8a Binary files /dev/null and b/documents/pdf/apache-pdfbox/f001u-3-7j.pdf differ diff --git a/documents/pdf/apache-pdfbox/fc60-times.pdf b/documents/pdf/apache-pdfbox/fc60-times.pdf new file mode 100644 index 0000000..612da4b Binary files /dev/null and b/documents/pdf/apache-pdfbox/fc60-times.pdf differ diff --git a/documents/pdf/apache-pdfbox/fillformfield.pdf b/documents/pdf/apache-pdfbox/fillformfield.pdf new file mode 100644 index 0000000..02bb747 Binary files /dev/null and b/documents/pdf/apache-pdfbox/fillformfield.pdf differ diff --git a/documents/pdf/apache-pdfbox/hello3.pdf b/documents/pdf/apache-pdfbox/hello3.pdf new file mode 100644 index 0000000..9d54653 Binary files /dev/null and b/documents/pdf/apache-pdfbox/hello3.pdf differ diff --git a/documents/pdf/apache-pdfbox/jbig2image.pdf b/documents/pdf/apache-pdfbox/jbig2image.pdf new file mode 100644 index 0000000..23d1ae0 Binary files /dev/null and b/documents/pdf/apache-pdfbox/jbig2image.pdf differ diff --git a/documents/pdf/apache-pdfbox/jpeg-demo.pdf b/documents/pdf/apache-pdfbox/jpeg-demo.pdf new file mode 100644 index 0000000..f70684c Binary files /dev/null and b/documents/pdf/apache-pdfbox/jpeg-demo.pdf differ diff --git a/documents/pdf/apache-pdfbox/jpegrgb.pdf b/documents/pdf/apache-pdfbox/jpegrgb.pdf new file mode 100644 index 0000000..16c6cda Binary files /dev/null and b/documents/pdf/apache-pdfbox/jpegrgb.pdf differ diff --git a/documents/pdf/apache-pdfbox/jpxtestcmyk.pdf b/documents/pdf/apache-pdfbox/jpxtestcmyk.pdf new file mode 100644 index 0000000..a1eafa2 Binary files /dev/null and b/documents/pdf/apache-pdfbox/jpxtestcmyk.pdf differ diff --git a/documents/pdf/apache-pdfbox/jpxtestgrey.pdf b/documents/pdf/apache-pdfbox/jpxtestgrey.pdf new file mode 100644 index 0000000..be5c892 Binary files /dev/null and b/documents/pdf/apache-pdfbox/jpxtestgrey.pdf differ diff --git a/documents/pdf/apache-pdfbox/jpxtestrgb.pdf b/documents/pdf/apache-pdfbox/jpxtestrgb.pdf new file mode 100644 index 0000000..2b51f22 Binary files /dev/null and b/documents/pdf/apache-pdfbox/jpxtestrgb.pdf differ diff --git a/documents/pdf/apache-pdfbox/liste732004001452-001-0-pdf-0.pdf b/documents/pdf/apache-pdfbox/liste732004001452-001-0-pdf-0.pdf new file mode 100644 index 0000000..543ea21 Binary files /dev/null and b/documents/pdf/apache-pdfbox/liste732004001452-001-0-pdf-0.pdf differ diff --git a/documents/pdf/apache-pdfbox/missingcatalog.pdf b/documents/pdf/apache-pdfbox/missingcatalog.pdf new file mode 100644 index 0000000..3af2301 Binary files /dev/null and b/documents/pdf/apache-pdfbox/missingcatalog.pdf differ diff --git a/documents/pdf/apache-pdfbox/multilinefields.pdf b/documents/pdf/apache-pdfbox/multilinefields.pdf new file mode 100644 index 0000000..897e836 Binary files /dev/null and b/documents/pdf/apache-pdfbox/multilinefields.pdf differ diff --git a/documents/pdf/apache-pdfbox/multitiff.pdf b/documents/pdf/apache-pdfbox/multitiff.pdf new file mode 100644 index 0000000..ff99ea2 Binary files /dev/null and b/documents/pdf/apache-pdfbox/multitiff.pdf differ diff --git a/documents/pdf/apache-pdfbox/null-pdcomplexfilespecification.pdf b/documents/pdf/apache-pdfbox/null-pdcomplexfilespecification.pdf new file mode 100644 index 0000000..24a4c53 Binary files /dev/null and b/documents/pdf/apache-pdfbox/null-pdcomplexfilespecification.pdf differ diff --git a/documents/pdf/apache-pdfbox/openoffice-test-document.pdf b/documents/pdf/apache-pdfbox/openoffice-test-document.pdf new file mode 100644 index 0000000..3fd921f Binary files /dev/null and b/documents/pdf/apache-pdfbox/openoffice-test-document.pdf differ diff --git a/documents/pdf/apache-pdfbox/overlayed-with-rot0.pdf b/documents/pdf/apache-pdfbox/overlayed-with-rot0.pdf new file mode 100644 index 0000000..9a3a713 Binary files /dev/null and b/documents/pdf/apache-pdfbox/overlayed-with-rot0.pdf differ diff --git a/documents/pdf/apache-pdfbox/overlayed-with-rot180.pdf b/documents/pdf/apache-pdfbox/overlayed-with-rot180.pdf new file mode 100644 index 0000000..760ee82 Binary files /dev/null and b/documents/pdf/apache-pdfbox/overlayed-with-rot180.pdf differ diff --git a/documents/pdf/apache-pdfbox/overlayed-with-rot270.pdf b/documents/pdf/apache-pdfbox/overlayed-with-rot270.pdf new file mode 100644 index 0000000..0c303ed Binary files /dev/null and b/documents/pdf/apache-pdfbox/overlayed-with-rot270.pdf differ diff --git a/documents/pdf/apache-pdfbox/overlayed-with-rot90.pdf b/documents/pdf/apache-pdfbox/overlayed-with-rot90.pdf new file mode 100644 index 0000000..a9c0e62 Binary files /dev/null and b/documents/pdf/apache-pdfbox/overlayed-with-rot90.pdf differ diff --git a/documents/pdf/apache-pdfbox/overlaytestbaserot0.pdf b/documents/pdf/apache-pdfbox/overlaytestbaserot0.pdf new file mode 100644 index 0000000..79124a9 Binary files /dev/null and b/documents/pdf/apache-pdfbox/overlaytestbaserot0.pdf differ diff --git a/documents/pdf/apache-pdfbox/page-tree-multiple-levels.pdf b/documents/pdf/apache-pdfbox/page-tree-multiple-levels.pdf new file mode 100644 index 0000000..e86e3b8 Binary files /dev/null and b/documents/pdf/apache-pdfbox/page-tree-multiple-levels.pdf differ diff --git a/documents/pdf/apache-pdfbox/passwordsample-128bit.pdf b/documents/pdf/apache-pdfbox/passwordsample-128bit.pdf new file mode 100644 index 0000000..29ee744 Binary files /dev/null and b/documents/pdf/apache-pdfbox/passwordsample-128bit.pdf differ diff --git a/documents/pdf/apache-pdfbox/passwordsample-256bit.pdf b/documents/pdf/apache-pdfbox/passwordsample-256bit.pdf new file mode 100644 index 0000000..945bee0 Binary files /dev/null and b/documents/pdf/apache-pdfbox/passwordsample-256bit.pdf differ diff --git a/documents/pdf/apache-pdfbox/passwordsample-40bit.pdf b/documents/pdf/apache-pdfbox/passwordsample-40bit.pdf new file mode 100644 index 0000000..4a1eff5 Binary files /dev/null and b/documents/pdf/apache-pdfbox/passwordsample-40bit.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfa-with-annotations-square.pdf b/documents/pdf/apache-pdfbox/pdfa-with-annotations-square.pdf new file mode 100755 index 0000000..7c09f59 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfa-with-annotations-square.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfa3a.pdf b/documents/pdf/apache-pdfbox/pdfa3a.pdf new file mode 100644 index 0000000..607a8d8 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfa3a.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfametadatavalidationtestmiddlecontrolchar.pdf b/documents/pdf/apache-pdfbox/pdfametadatavalidationtestmiddlecontrolchar.pdf new file mode 100644 index 0000000..1493927 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfametadatavalidationtestmiddlecontrolchar.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfametadatavalidationtestmiddlenul.pdf b/documents/pdf/apache-pdfbox/pdfametadatavalidationtestmiddlenul.pdf new file mode 100644 index 0000000..ab788af Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfametadatavalidationtestmiddlenul.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfametadatavalidationtesttrailingcontrolchar.pdf b/documents/pdf/apache-pdfbox/pdfametadatavalidationtesttrailingcontrolchar.pdf new file mode 100644 index 0000000..4d5f4a6 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfametadatavalidationtesttrailingcontrolchar.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfametadatavalidationtesttrailingnul.pdf b/documents/pdf/apache-pdfbox/pdfametadatavalidationtesttrailingnul.pdf new file mode 100644 index 0000000..f2c2269 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfametadatavalidationtesttrailingnul.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfametadatavalidationtesttrailingspaces.pdf b/documents/pdf/apache-pdfbox/pdfametadatavalidationtesttrailingspaces.pdf new file mode 100644 index 0000000..fe2006b Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfametadatavalidationtesttrailingspaces.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-2725-878725.pdf b/documents/pdf/apache-pdfbox/pdfbox-2725-878725.pdf new file mode 100644 index 0000000..3f945f5 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-2725-878725.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-2984-rotations.pdf b/documents/pdf/apache-pdfbox/pdfbox-2984-rotations.pdf new file mode 100644 index 0000000..d6565d7 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-2984-rotations.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-3025.pdf b/documents/pdf/apache-pdfbox/pdfbox-3025.pdf new file mode 100644 index 0000000..cb24b7a Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-3025.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-3038-001033-p2.pdf b/documents/pdf/apache-pdfbox/pdfbox-3038-001033-p2.pdf new file mode 100644 index 0000000..9af06f9 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-3038-001033-p2.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-3042-003177-p2.pdf b/documents/pdf/apache-pdfbox/pdfbox-3042-003177-p2.pdf new file mode 100644 index 0000000..3a1bfea Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-3042-003177-p2.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-3044-010197-p5-ligatures.pdf b/documents/pdf/apache-pdfbox/pdfbox-3044-010197-p5-ligatures.pdf new file mode 100644 index 0000000..971d3e1 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-3044-010197-p5-ligatures.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-3053-reduced.pdf b/documents/pdf/apache-pdfbox/pdfbox-3053-reduced.pdf new file mode 100644 index 0000000..d9fc43e Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-3053-reduced.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-3061-092465-reduced.pdf b/documents/pdf/apache-pdfbox/pdfbox-3061-092465-reduced.pdf new file mode 100644 index 0000000..af6b3d8 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-3061-092465-reduced.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-3062-002207-p1.pdf b/documents/pdf/apache-pdfbox/pdfbox-3062-002207-p1.pdf new file mode 100644 index 0000000..7cada3d Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-3062-002207-p1.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-3062-005717-p1.pdf b/documents/pdf/apache-pdfbox/pdfbox-3062-005717-p1.pdf new file mode 100644 index 0000000..c71c6a1 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-3062-005717-p1.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-3062-n2moq7yziciygtplqjawj4hln6ccemhz-reduced.pdf b/documents/pdf/apache-pdfbox/pdfbox-3062-n2moq7yziciygtplqjawj4hln6ccemhz-reduced.pdf new file mode 100644 index 0000000..39446f4 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-3062-n2moq7yziciygtplqjawj4hln6ccemhz-reduced.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-3067-negativetf.pdf b/documents/pdf/apache-pdfbox/pdfbox-3067-negativetf.pdf new file mode 100644 index 0000000..4a2906b Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-3067-negativetf.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-3068.pdf b/documents/pdf/apache-pdfbox/pdfbox-3068.pdf new file mode 100644 index 0000000..4f8f497 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-3068.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-3110-poems-beads-cropbox.pdf b/documents/pdf/apache-pdfbox/pdfbox-3110-poems-beads-cropbox.pdf new file mode 100644 index 0000000..ab6e2b1 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-3110-poems-beads-cropbox.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-3110-poems-beads.pdf b/documents/pdf/apache-pdfbox/pdfbox-3110-poems-beads.pdf new file mode 100644 index 0000000..0c9d438 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-3110-poems-beads.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-3123-adsfwtrb3hbzbzkevesvtbrzc2mnkzf5-reduced.pdf b/documents/pdf/apache-pdfbox/pdfbox-3123-adsfwtrb3hbzbzkevesvtbrzc2mnkzf5-reduced.pdf new file mode 100644 index 0000000..656c4a6 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-3123-adsfwtrb3hbzbzkevesvtbrzc2mnkzf5-reduced.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-3127-rau4g6qmovrybisju7r6movzcrfuo7p4-vfont.pdf b/documents/pdf/apache-pdfbox/pdfbox-3127-rau4g6qmovrybisju7r6movzcrfuo7p4-vfont.pdf new file mode 100644 index 0000000..e31ff72 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-3127-rau4g6qmovrybisju7r6movzcrfuo7p4-vfont.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-3195.pdf b/documents/pdf/apache-pdfbox/pdfbox-3195.pdf new file mode 100644 index 0000000..7cc0d67 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-3195.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-3498-y5tlcwtiae3fydvjtv2txrzgxledunsw.pdf b/documents/pdf/apache-pdfbox/pdfbox-3498-y5tlcwtiae3fydvjtv2txrzgxledunsw.pdf new file mode 100644 index 0000000..52a3aa6 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-3498-y5tlcwtiae3fydvjtv2txrzgxledunsw.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-3656-sf1199aeg-complete.pdf b/documents/pdf/apache-pdfbox/pdfbox-3656-sf1199aeg-complete.pdf new file mode 100644 index 0000000..6f2ccb3 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-3656-sf1199aeg-complete.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-3741.pdf b/documents/pdf/apache-pdfbox/pdfbox-3741.pdf new file mode 100644 index 0000000..c4498d8 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-3741.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-3833-reduced.pdf b/documents/pdf/apache-pdfbox/pdfbox-3833-reduced.pdf new file mode 100644 index 0000000..6a411eb Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-3833-reduced.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-3835-input-acrobat-wrap.pdf b/documents/pdf/apache-pdfbox/pdfbox-3835-input-acrobat-wrap.pdf new file mode 100644 index 0000000..cf7d0e0 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-3835-input-acrobat-wrap.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-4322-empty-tounicode-reduced.pdf b/documents/pdf/apache-pdfbox/pdfbox-4322-empty-tounicode-reduced.pdf new file mode 100644 index 0000000..1d79395 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-4322-empty-tounicode-reduced.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-4372-2dayclvofg3ftvo4rmajjl3vtpnydfro-p4-reduced.pdf b/documents/pdf/apache-pdfbox/pdfbox-4372-2dayclvofg3ftvo4rmajjl3vtpnydfro-p4-reduced.pdf new file mode 100644 index 0000000..7da141b Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-4372-2dayclvofg3ftvo4rmajjl3vtpnydfro-p4-reduced.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-4417-001031.pdf b/documents/pdf/apache-pdfbox/pdfbox-4417-001031.pdf new file mode 100644 index 0000000..4c84a46 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-4417-001031.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-4417-054080.pdf b/documents/pdf/apache-pdfbox/pdfbox-4417-054080.pdf new file mode 100644 index 0000000..b16463a Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-4417-054080.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-4531-bidi-ligature-1.pdf b/documents/pdf/apache-pdfbox/pdfbox-4531-bidi-ligature-1.pdf new file mode 100644 index 0000000..45d02b2 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-4531-bidi-ligature-1.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-4531-bidi-ligature-2.pdf b/documents/pdf/apache-pdfbox/pdfbox-4531-bidi-ligature-2.pdf new file mode 100644 index 0000000..91ed1bb Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-4531-bidi-ligature-2.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-4532-reduced.pdf b/documents/pdf/apache-pdfbox/pdfbox-4532-reduced.pdf new file mode 100644 index 0000000..959e43b Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-4532-reduced.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-4958.pdf b/documents/pdf/apache-pdfbox/pdfbox-4958.pdf new file mode 100644 index 0000000..70db6ff Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-4958.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-5002.pdf b/documents/pdf/apache-pdfbox/pdfbox-5002.pdf new file mode 100644 index 0000000..1e47c5a Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-5002.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-5350-jx57o5e5yg6xm4fzabpulqgtw4oxpcwa-p1-reduced.pdf b/documents/pdf/apache-pdfbox/pdfbox-5350-jx57o5e5yg6xm4fzabpulqgtw4oxpcwa-p1-reduced.pdf new file mode 100644 index 0000000..cf672a5 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-5350-jx57o5e5yg6xm4fzabpulqgtw4oxpcwa-p1-reduced.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-5747-unicode-surrogate-with-diacritic-reduced.pdf b/documents/pdf/apache-pdfbox/pdfbox-5747-unicode-surrogate-with-diacritic-reduced.pdf new file mode 100644 index 0000000..2b0b953 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-5747-unicode-surrogate-with-diacritic-reduced.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-5762-722238.pdf b/documents/pdf/apache-pdfbox/pdfbox-5762-722238.pdf new file mode 100644 index 0000000..7759cf8 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-5762-722238.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-5784.pdf b/documents/pdf/apache-pdfbox/pdfbox-5784.pdf new file mode 100644 index 0000000..7f5a279 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-5784.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-5792-240045.pdf b/documents/pdf/apache-pdfbox/pdfbox-5792-240045.pdf new file mode 100644 index 0000000..6235e48 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-5792-240045.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-5797-so79271803.pdf b/documents/pdf/apache-pdfbox/pdfbox-5797-so79271803.pdf new file mode 100644 index 0000000..33dca69 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-5797-so79271803.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-5809-509329.pdf b/documents/pdf/apache-pdfbox/pdfbox-5809-509329.pdf new file mode 100644 index 0000000..fa2b6bf Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-5809-509329.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-5811-362972.pdf b/documents/pdf/apache-pdfbox/pdfbox-5811-362972.pdf new file mode 100644 index 0000000..799e255 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-5811-362972.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-5838-0024320-reduced.pdf b/documents/pdf/apache-pdfbox/pdfbox-5838-0024320-reduced.pdf new file mode 100644 index 0000000..f1c30f6 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-5838-0024320-reduced.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-5840-410609.pdf b/documents/pdf/apache-pdfbox/pdfbox-5840-410609.pdf new file mode 100644 index 0000000..b1fe541 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-5840-410609.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-5920-4mqtg6zxoysmtq444kgqovc6zfqhwfny-spaces-reduced.pdf b/documents/pdf/apache-pdfbox/pdfbox-5920-4mqtg6zxoysmtq444kgqovc6zfqhwfny-spaces-reduced.pdf new file mode 100644 index 0000000..17772a1 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-5920-4mqtg6zxoysmtq444kgqovc6zfqhwfny-spaces-reduced.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-5920-y5u2xzckg2u6to3fc36ncgozechqa2py-p39-reduced.pdf b/documents/pdf/apache-pdfbox/pdfbox-5920-y5u2xzckg2u6to3fc36ncgozechqa2py-p39-reduced.pdf new file mode 100644 index 0000000..13bcf34 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-5920-y5u2xzckg2u6to3fc36ncgozechqa2py-p39-reduced.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-6018-099267-p9-orphanpopups.pdf b/documents/pdf/apache-pdfbox/pdfbox-6018-099267-p9-orphanpopups.pdf new file mode 100644 index 0000000..aa60827 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-6018-099267-p9-orphanpopups.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-6049-expectedresult.pdf b/documents/pdf/apache-pdfbox/pdfbox-6049-expectedresult.pdf new file mode 100644 index 0000000..1b2cb70 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-6049-expectedresult.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-6049-overlay.pdf b/documents/pdf/apache-pdfbox/pdfbox-6049-overlay.pdf new file mode 100644 index 0000000..4828bbd Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-6049-overlay.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-6049-source.pdf b/documents/pdf/apache-pdfbox/pdfbox-6049-source.pdf new file mode 100644 index 0000000..74a1945 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-6049-source.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-globalresourcemergetest-doc01-decoded.pdf b/documents/pdf/apache-pdfbox/pdfbox-globalresourcemergetest-doc01-decoded.pdf new file mode 100644 index 0000000..80ff81d Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-globalresourcemergetest-doc01-decoded.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-globalresourcemergetest-doc01.pdf b/documents/pdf/apache-pdfbox/pdfbox-globalresourcemergetest-doc01.pdf new file mode 100644 index 0000000..29eca35 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-globalresourcemergetest-doc01.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-globalresourcemergetest-doc02-decoded.pdf b/documents/pdf/apache-pdfbox/pdfbox-globalresourcemergetest-doc02-decoded.pdf new file mode 100644 index 0000000..71cc627 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-globalresourcemergetest-doc02-decoded.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox-globalresourcemergetest-doc02.pdf b/documents/pdf/apache-pdfbox/pdfbox-globalresourcemergetest-doc02.pdf new file mode 100644 index 0000000..8faf4bc Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox-globalresourcemergetest-doc02.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfbox3812-acrobat-multiline-auto.pdf b/documents/pdf/apache-pdfbox/pdfbox3812-acrobat-multiline-auto.pdf new file mode 100644 index 0000000..966f25d Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfbox3812-acrobat-multiline-auto.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdfboxlegacymerge-samemerged.pdf b/documents/pdf/apache-pdfbox/pdfboxlegacymerge-samemerged.pdf new file mode 100644 index 0000000..b1f25e5 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdfboxlegacymerge-samemerged.pdf differ diff --git a/documents/pdf/apache-pdfbox/pdsquareannotationtest.pdf b/documents/pdf/apache-pdfbox/pdsquareannotationtest.pdf new file mode 100644 index 0000000..0dbd770 Binary files /dev/null and b/documents/pdf/apache-pdfbox/pdsquareannotationtest.pdf differ diff --git a/documents/pdf/apache-pdfbox/png-demo.pdf b/documents/pdf/apache-pdfbox/png-demo.pdf new file mode 100644 index 0000000..07cbaf2 Binary files /dev/null and b/documents/pdf/apache-pdfbox/png-demo.pdf differ diff --git a/documents/pdf/apache-pdfbox/preenc-20141025-105451.pdf b/documents/pdf/apache-pdfbox/preenc-20141025-105451.pdf new file mode 100644 index 0000000..56397aa Binary files /dev/null and b/documents/pdf/apache-pdfbox/preenc-20141025-105451.pdf differ diff --git a/documents/pdf/apache-pdfbox/raw-image-demo.pdf b/documents/pdf/apache-pdfbox/raw-image-demo.pdf new file mode 100644 index 0000000..73ea917 Binary files /dev/null and b/documents/pdf/apache-pdfbox/raw-image-demo.pdf differ diff --git a/documents/pdf/apache-pdfbox/rot0.pdf b/documents/pdf/apache-pdfbox/rot0.pdf new file mode 100644 index 0000000..bf779f5 Binary files /dev/null and b/documents/pdf/apache-pdfbox/rot0.pdf differ diff --git a/documents/pdf/apache-pdfbox/rot180.pdf b/documents/pdf/apache-pdfbox/rot180.pdf new file mode 100644 index 0000000..ab7c4e4 Binary files /dev/null and b/documents/pdf/apache-pdfbox/rot180.pdf differ diff --git a/documents/pdf/apache-pdfbox/rot270.pdf b/documents/pdf/apache-pdfbox/rot270.pdf new file mode 100644 index 0000000..c56ed09 Binary files /dev/null and b/documents/pdf/apache-pdfbox/rot270.pdf differ diff --git a/documents/pdf/apache-pdfbox/rot90.pdf b/documents/pdf/apache-pdfbox/rot90.pdf new file mode 100644 index 0000000..aa8ada6 Binary files /dev/null and b/documents/pdf/apache-pdfbox/rot90.pdf differ diff --git a/documents/pdf/apache-pdfbox/sample-fonts-solidconvertor.pdf b/documents/pdf/apache-pdfbox/sample-fonts-solidconvertor.pdf new file mode 100644 index 0000000..a28fb48 Binary files /dev/null and b/documents/pdf/apache-pdfbox/sample-fonts-solidconvertor.pdf differ diff --git a/documents/pdf/apache-pdfbox/sampleforspec.pdf b/documents/pdf/apache-pdfbox/sampleforspec.pdf new file mode 100644 index 0000000..e6237d2 Binary files /dev/null and b/documents/pdf/apache-pdfbox/sampleforspec.pdf differ diff --git a/documents/pdf/apache-pdfbox/sign-me-protected.pdf b/documents/pdf/apache-pdfbox/sign-me-protected.pdf new file mode 100644 index 0000000..7ff6f89 Binary files /dev/null and b/documents/pdf/apache-pdfbox/sign-me-protected.pdf differ diff --git a/documents/pdf/apache-pdfbox/sign-me-tsa.pdf b/documents/pdf/apache-pdfbox/sign-me-tsa.pdf new file mode 100644 index 0000000..7792818 Binary files /dev/null and b/documents/pdf/apache-pdfbox/sign-me-tsa.pdf differ diff --git a/documents/pdf/apache-pdfbox/sign-me-visible.pdf b/documents/pdf/apache-pdfbox/sign-me-visible.pdf new file mode 100644 index 0000000..6da6d27 Binary files /dev/null and b/documents/pdf/apache-pdfbox/sign-me-visible.pdf differ diff --git a/documents/pdf/apache-pdfbox/sign-me.pdf b/documents/pdf/apache-pdfbox/sign-me.pdf new file mode 100644 index 0000000..c1ea5c4 Binary files /dev/null and b/documents/pdf/apache-pdfbox/sign-me.pdf differ diff --git a/documents/pdf/apache-pdfbox/simple-openoffice.pdf b/documents/pdf/apache-pdfbox/simple-openoffice.pdf new file mode 100644 index 0000000..b908615 Binary files /dev/null and b/documents/pdf/apache-pdfbox/simple-openoffice.pdf differ diff --git a/documents/pdf/apache-pdfbox/simpleform2fields.pdf b/documents/pdf/apache-pdfbox/simpleform2fields.pdf new file mode 100644 index 0000000..daadd1b Binary files /dev/null and b/documents/pdf/apache-pdfbox/simpleform2fields.pdf differ diff --git a/documents/pdf/apache-pdfbox/source.pdf b/documents/pdf/apache-pdfbox/source.pdf new file mode 100644 index 0000000..944491c Binary files /dev/null and b/documents/pdf/apache-pdfbox/source.pdf differ diff --git a/documents/pdf/apache-pdfbox/survey.pdf b/documents/pdf/apache-pdfbox/survey.pdf new file mode 100644 index 0000000..7a36ef1 Binary files /dev/null and b/documents/pdf/apache-pdfbox/survey.pdf differ diff --git a/documents/pdf/apache-pdfbox/test-landscape2.pdf b/documents/pdf/apache-pdfbox/test-landscape2.pdf new file mode 100644 index 0000000..2402785 Binary files /dev/null and b/documents/pdf/apache-pdfbox/test-landscape2.pdf differ diff --git a/documents/pdf/apache-pdfbox/test-pagelabels.pdf b/documents/pdf/apache-pdfbox/test-pagelabels.pdf new file mode 100644 index 0000000..63e5aa7 Binary files /dev/null and b/documents/pdf/apache-pdfbox/test-pagelabels.pdf differ diff --git a/documents/pdf/apache-pdfbox/test-unc.pdf b/documents/pdf/apache-pdfbox/test-unc.pdf new file mode 100644 index 0000000..c402648 Binary files /dev/null and b/documents/pdf/apache-pdfbox/test-unc.pdf differ diff --git a/documents/pdf/apache-pdfbox/testpdf-multiformatembfiles.pdf b/documents/pdf/apache-pdfbox/testpdf-multiformatembfiles.pdf new file mode 100644 index 0000000..8098c9c Binary files /dev/null and b/documents/pdf/apache-pdfbox/testpdf-multiformatembfiles.pdf differ diff --git a/documents/pdf/apache-pdfbox/testpdfpackage.pdf b/documents/pdf/apache-pdfbox/testpdfpackage.pdf new file mode 100644 index 0000000..f7e43de Binary files /dev/null and b/documents/pdf/apache-pdfbox/testpdfpackage.pdf differ diff --git a/documents/pdf/apache-pdfbox/tiger-as-form-xobject.pdf b/documents/pdf/apache-pdfbox/tiger-as-form-xobject.pdf new file mode 100644 index 0000000..4d0b6ce Binary files /dev/null and b/documents/pdf/apache-pdfbox/tiger-as-form-xobject.pdf differ diff --git a/documents/pdf/apache-pdfbox/transitions-test.pdf b/documents/pdf/apache-pdfbox/transitions-test.pdf new file mode 100644 index 0000000..fa37d21 Binary files /dev/null and b/documents/pdf/apache-pdfbox/transitions-test.pdf differ diff --git a/documents/pdf/apache-pdfbox/unencrypted.pdf b/documents/pdf/apache-pdfbox/unencrypted.pdf new file mode 100644 index 0000000..b6acb07 Binary files /dev/null and b/documents/pdf/apache-pdfbox/unencrypted.pdf differ diff --git a/documents/pdf/apache-pdfbox/with-outline.pdf b/documents/pdf/apache-pdfbox/with-outline.pdf new file mode 100644 index 0000000..fb0f1db Binary files /dev/null and b/documents/pdf/apache-pdfbox/with-outline.pdf differ diff --git a/documents/pdf/apache-pdfbox/yaddatest.pdf b/documents/pdf/apache-pdfbox/yaddatest.pdf new file mode 100644 index 0000000..ab16f60 Binary files /dev/null and b/documents/pdf/apache-pdfbox/yaddatest.pdf differ diff --git a/documents/pdf/arxiv/2101-12210v1.pdf b/documents/pdf/arxiv/2101-12210v1.pdf new file mode 100644 index 0000000..8c52360 Binary files /dev/null and b/documents/pdf/arxiv/2101-12210v1.pdf differ diff --git a/documents/pdf/arxiv/2104-03652v5.pdf b/documents/pdf/arxiv/2104-03652v5.pdf new file mode 100644 index 0000000..3d06152 Binary files /dev/null and b/documents/pdf/arxiv/2104-03652v5.pdf differ diff --git a/documents/pdf/arxiv/2107-02935v1.pdf b/documents/pdf/arxiv/2107-02935v1.pdf new file mode 100644 index 0000000..dd61f7d Binary files /dev/null and b/documents/pdf/arxiv/2107-02935v1.pdf differ diff --git a/documents/pdf/arxiv/2107-12817v1.pdf b/documents/pdf/arxiv/2107-12817v1.pdf new file mode 100644 index 0000000..ebf1c4f Binary files /dev/null and b/documents/pdf/arxiv/2107-12817v1.pdf differ diff --git a/documents/pdf/arxiv/2109-05796v1.pdf b/documents/pdf/arxiv/2109-05796v1.pdf new file mode 100644 index 0000000..8cb2edc Binary files /dev/null and b/documents/pdf/arxiv/2109-05796v1.pdf differ diff --git a/documents/pdf/arxiv/2110-03022v1.pdf b/documents/pdf/arxiv/2110-03022v1.pdf new file mode 100644 index 0000000..ce1bbfc Binary files /dev/null and b/documents/pdf/arxiv/2110-03022v1.pdf differ diff --git a/documents/pdf/arxiv/2202-11551v2.pdf b/documents/pdf/arxiv/2202-11551v2.pdf new file mode 100644 index 0000000..e1d3a48 Binary files /dev/null and b/documents/pdf/arxiv/2202-11551v2.pdf differ diff --git a/documents/pdf/arxiv/2205-03373v2.pdf b/documents/pdf/arxiv/2205-03373v2.pdf new file mode 100644 index 0000000..8f758a3 Binary files /dev/null and b/documents/pdf/arxiv/2205-03373v2.pdf differ diff --git a/documents/pdf/arxiv/2208-05598v1.pdf b/documents/pdf/arxiv/2208-05598v1.pdf new file mode 100644 index 0000000..223722a Binary files /dev/null and b/documents/pdf/arxiv/2208-05598v1.pdf differ diff --git a/documents/pdf/arxiv/2208-11577v2.pdf b/documents/pdf/arxiv/2208-11577v2.pdf new file mode 100644 index 0000000..6f732fc Binary files /dev/null and b/documents/pdf/arxiv/2208-11577v2.pdf differ diff --git a/documents/pdf/arxiv/2208-13489v3.pdf b/documents/pdf/arxiv/2208-13489v3.pdf new file mode 100644 index 0000000..34cbab5 Binary files /dev/null and b/documents/pdf/arxiv/2208-13489v3.pdf differ diff --git a/documents/pdf/arxiv/2209-00842v1.pdf b/documents/pdf/arxiv/2209-00842v1.pdf new file mode 100644 index 0000000..e41b04b Binary files /dev/null and b/documents/pdf/arxiv/2209-00842v1.pdf differ diff --git a/documents/pdf/arxiv/2209-08680v1.pdf b/documents/pdf/arxiv/2209-08680v1.pdf new file mode 100644 index 0000000..164b002 Binary files /dev/null and b/documents/pdf/arxiv/2209-08680v1.pdf differ diff --git a/documents/pdf/arxiv/2210-06865v1.pdf b/documents/pdf/arxiv/2210-06865v1.pdf new file mode 100644 index 0000000..c504225 Binary files /dev/null and b/documents/pdf/arxiv/2210-06865v1.pdf differ diff --git a/documents/pdf/arxiv/2303-10773v3.pdf b/documents/pdf/arxiv/2303-10773v3.pdf new file mode 100644 index 0000000..d337a31 Binary files /dev/null and b/documents/pdf/arxiv/2303-10773v3.pdf differ diff --git a/documents/pdf/arxiv/2305-06709v3.pdf b/documents/pdf/arxiv/2305-06709v3.pdf new file mode 100644 index 0000000..b723f82 Binary files /dev/null and b/documents/pdf/arxiv/2305-06709v3.pdf differ diff --git a/documents/pdf/arxiv/2306-01634v1.pdf b/documents/pdf/arxiv/2306-01634v1.pdf new file mode 100644 index 0000000..0ba438c Binary files /dev/null and b/documents/pdf/arxiv/2306-01634v1.pdf differ diff --git a/documents/pdf/arxiv/2307-08800v1.pdf b/documents/pdf/arxiv/2307-08800v1.pdf new file mode 100644 index 0000000..75ad7c3 Binary files /dev/null and b/documents/pdf/arxiv/2307-08800v1.pdf differ diff --git a/documents/pdf/arxiv/2311-07762v1.pdf b/documents/pdf/arxiv/2311-07762v1.pdf new file mode 100644 index 0000000..83cbab5 Binary files /dev/null and b/documents/pdf/arxiv/2311-07762v1.pdf differ diff --git a/documents/pdf/arxiv/2402-09654v2.pdf b/documents/pdf/arxiv/2402-09654v2.pdf new file mode 100644 index 0000000..35dbc1f Binary files /dev/null and b/documents/pdf/arxiv/2402-09654v2.pdf differ diff --git a/documents/pdf/arxiv/2409-08569v1.pdf b/documents/pdf/arxiv/2409-08569v1.pdf new file mode 100644 index 0000000..1cec9c7 Binary files /dev/null and b/documents/pdf/arxiv/2409-08569v1.pdf differ diff --git a/documents/pdf/arxiv/2410-20932v1.pdf b/documents/pdf/arxiv/2410-20932v1.pdf new file mode 100644 index 0000000..2e446c7 Binary files /dev/null and b/documents/pdf/arxiv/2410-20932v1.pdf differ diff --git a/documents/pdf/arxiv/2412-19301v1.pdf b/documents/pdf/arxiv/2412-19301v1.pdf new file mode 100644 index 0000000..d9102f1 Binary files /dev/null and b/documents/pdf/arxiv/2412-19301v1.pdf differ diff --git a/documents/pdf/arxiv/2503-17174v1.pdf b/documents/pdf/arxiv/2503-17174v1.pdf new file mode 100644 index 0000000..37b7fd6 Binary files /dev/null and b/documents/pdf/arxiv/2503-17174v1.pdf differ diff --git a/documents/pdf/arxiv/2504-13959v2.pdf b/documents/pdf/arxiv/2504-13959v2.pdf new file mode 100644 index 0000000..fff2f62 Binary files /dev/null and b/documents/pdf/arxiv/2504-13959v2.pdf differ diff --git a/documents/pdf/arxiv/2505-06127v1.pdf b/documents/pdf/arxiv/2505-06127v1.pdf new file mode 100644 index 0000000..c6590d4 Binary files /dev/null and b/documents/pdf/arxiv/2505-06127v1.pdf differ diff --git a/documents/pdf/arxiv/2507-13272v1.pdf b/documents/pdf/arxiv/2507-13272v1.pdf new file mode 100644 index 0000000..2c83116 Binary files /dev/null and b/documents/pdf/arxiv/2507-13272v1.pdf differ diff --git a/documents/pdf/arxiv/2509-13290v2.pdf b/documents/pdf/arxiv/2509-13290v2.pdf new file mode 100644 index 0000000..90c9b3f Binary files /dev/null and b/documents/pdf/arxiv/2509-13290v2.pdf differ diff --git a/documents/pdf/arxiv/2510-11147v1.pdf b/documents/pdf/arxiv/2510-11147v1.pdf new file mode 100644 index 0000000..f8cd00a Binary files /dev/null and b/documents/pdf/arxiv/2510-11147v1.pdf differ diff --git a/documents/pdf/arxiv/2511-00170v1.pdf b/documents/pdf/arxiv/2511-00170v1.pdf new file mode 100644 index 0000000..ce62304 Binary files /dev/null and b/documents/pdf/arxiv/2511-00170v1.pdf differ diff --git a/documents/pdf/arxiv/2512-05731v2.pdf b/documents/pdf/arxiv/2512-05731v2.pdf new file mode 100644 index 0000000..572c57b Binary files /dev/null and b/documents/pdf/arxiv/2512-05731v2.pdf differ diff --git a/documents/pdf/arxiv/2601-12752v1.pdf b/documents/pdf/arxiv/2601-12752v1.pdf new file mode 100644 index 0000000..0443896 Binary files /dev/null and b/documents/pdf/arxiv/2601-12752v1.pdf differ diff --git a/documents/pdf/arxiv/2601-13365v1.pdf b/documents/pdf/arxiv/2601-13365v1.pdf new file mode 100644 index 0000000..afe3957 Binary files /dev/null and b/documents/pdf/arxiv/2601-13365v1.pdf differ diff --git a/documents/pdf/arxiv/2601-15473v1.pdf b/documents/pdf/arxiv/2601-15473v1.pdf new file mode 100644 index 0000000..3fda85f Binary files /dev/null and b/documents/pdf/arxiv/2601-15473v1.pdf differ diff --git a/documents/pdf/arxiv/2601-22136v1.pdf b/documents/pdf/arxiv/2601-22136v1.pdf new file mode 100644 index 0000000..6637af0 Binary files /dev/null and b/documents/pdf/arxiv/2601-22136v1.pdf differ diff --git a/documents/pdf/arxiv/2602-00887v1.pdf b/documents/pdf/arxiv/2602-00887v1.pdf new file mode 100644 index 0000000..8708978 Binary files /dev/null and b/documents/pdf/arxiv/2602-00887v1.pdf differ diff --git a/documents/pdf/arxiv/2602-08816v1.pdf b/documents/pdf/arxiv/2602-08816v1.pdf new file mode 100644 index 0000000..c7b44fe Binary files /dev/null and b/documents/pdf/arxiv/2602-08816v1.pdf differ diff --git a/documents/pdf/arxiv/2602-15842v1.pdf b/documents/pdf/arxiv/2602-15842v1.pdf new file mode 100644 index 0000000..10cddff Binary files /dev/null and b/documents/pdf/arxiv/2602-15842v1.pdf differ diff --git a/documents/pdf/arxiv/2602-19786v1.pdf b/documents/pdf/arxiv/2602-19786v1.pdf new file mode 100644 index 0000000..0764595 Binary files /dev/null and b/documents/pdf/arxiv/2602-19786v1.pdf differ diff --git a/documents/pdf/arxiv/2602-21033v1.pdf b/documents/pdf/arxiv/2602-21033v1.pdf new file mode 100644 index 0000000..a3818f8 Binary files /dev/null and b/documents/pdf/arxiv/2602-21033v1.pdf differ diff --git a/documents/pdf/arxiv/2602-21845v1.pdf b/documents/pdf/arxiv/2602-21845v1.pdf new file mode 100644 index 0000000..ceb29e5 Binary files /dev/null and b/documents/pdf/arxiv/2602-21845v1.pdf differ diff --git a/documents/pdf/arxiv/2602-22481v1.pdf b/documents/pdf/arxiv/2602-22481v1.pdf new file mode 100644 index 0000000..663347d Binary files /dev/null and b/documents/pdf/arxiv/2602-22481v1.pdf differ diff --git a/documents/pdf/arxiv/2603-00206v1.pdf b/documents/pdf/arxiv/2603-00206v1.pdf new file mode 100644 index 0000000..1223714 Binary files /dev/null and b/documents/pdf/arxiv/2603-00206v1.pdf differ diff --git a/documents/pdf/arxiv/2603-00631v1.pdf b/documents/pdf/arxiv/2603-00631v1.pdf new file mode 100644 index 0000000..5a8489a Binary files /dev/null and b/documents/pdf/arxiv/2603-00631v1.pdf differ diff --git a/documents/pdf/arxiv/2603-01554v1.pdf b/documents/pdf/arxiv/2603-01554v1.pdf new file mode 100644 index 0000000..7b5da0a Binary files /dev/null and b/documents/pdf/arxiv/2603-01554v1.pdf differ diff --git a/documents/pdf/arxiv/2603-05175v1.pdf b/documents/pdf/arxiv/2603-05175v1.pdf new file mode 100644 index 0000000..23392af Binary files /dev/null and b/documents/pdf/arxiv/2603-05175v1.pdf differ diff --git a/documents/pdf/arxiv/2603-07708v1.pdf b/documents/pdf/arxiv/2603-07708v1.pdf new file mode 100644 index 0000000..5c65264 Binary files /dev/null and b/documents/pdf/arxiv/2603-07708v1.pdf differ diff --git a/documents/pdf/arxiv/2603-07837v1.pdf b/documents/pdf/arxiv/2603-07837v1.pdf new file mode 100644 index 0000000..c91dbcd Binary files /dev/null and b/documents/pdf/arxiv/2603-07837v1.pdf differ diff --git a/documents/pdf/arxiv/2603-08900v2.pdf b/documents/pdf/arxiv/2603-08900v2.pdf new file mode 100644 index 0000000..889d570 Binary files /dev/null and b/documents/pdf/arxiv/2603-08900v2.pdf differ diff --git a/documents/pdf/arxiv/2603-10695v1.pdf b/documents/pdf/arxiv/2603-10695v1.pdf new file mode 100644 index 0000000..917639a Binary files /dev/null and b/documents/pdf/arxiv/2603-10695v1.pdf differ diff --git a/documents/pdf/arxiv/2603-14651v1.pdf b/documents/pdf/arxiv/2603-14651v1.pdf new file mode 100644 index 0000000..d935e6c Binary files /dev/null and b/documents/pdf/arxiv/2603-14651v1.pdf differ diff --git a/documents/pdf/arxiv/2603-14997v1.pdf b/documents/pdf/arxiv/2603-14997v1.pdf new file mode 100644 index 0000000..1b3a146 Binary files /dev/null and b/documents/pdf/arxiv/2603-14997v1.pdf differ diff --git a/documents/pdf/arxiv/2603-15080v3.pdf b/documents/pdf/arxiv/2603-15080v3.pdf new file mode 100644 index 0000000..07a12b2 Binary files /dev/null and b/documents/pdf/arxiv/2603-15080v3.pdf differ diff --git a/documents/pdf/arxiv/2603-16021v2.pdf b/documents/pdf/arxiv/2603-16021v2.pdf new file mode 100644 index 0000000..8906d8b Binary files /dev/null and b/documents/pdf/arxiv/2603-16021v2.pdf differ diff --git a/documents/pdf/arxiv/2603-18008v1.pdf b/documents/pdf/arxiv/2603-18008v1.pdf new file mode 100644 index 0000000..7c2ac22 Binary files /dev/null and b/documents/pdf/arxiv/2603-18008v1.pdf differ diff --git a/documents/pdf/arxiv/2603-18655v1.pdf b/documents/pdf/arxiv/2603-18655v1.pdf new file mode 100644 index 0000000..ac8c36d Binary files /dev/null and b/documents/pdf/arxiv/2603-18655v1.pdf differ diff --git a/documents/pdf/arxiv/2603-20854v1.pdf b/documents/pdf/arxiv/2603-20854v1.pdf new file mode 100644 index 0000000..775ff9c Binary files /dev/null and b/documents/pdf/arxiv/2603-20854v1.pdf differ diff --git a/documents/pdf/arxiv/2603-21478v1.pdf b/documents/pdf/arxiv/2603-21478v1.pdf new file mode 100644 index 0000000..9a7f5b5 Binary files /dev/null and b/documents/pdf/arxiv/2603-21478v1.pdf differ diff --git a/documents/pdf/arxiv/2603-22499v1.pdf b/documents/pdf/arxiv/2603-22499v1.pdf new file mode 100644 index 0000000..1fff5af Binary files /dev/null and b/documents/pdf/arxiv/2603-22499v1.pdf differ diff --git a/documents/pdf/arxiv/2603-24636v1.pdf b/documents/pdf/arxiv/2603-24636v1.pdf new file mode 100644 index 0000000..e39f91a Binary files /dev/null and b/documents/pdf/arxiv/2603-24636v1.pdf differ diff --git a/documents/pdf/arxiv/2603-24695v1.pdf b/documents/pdf/arxiv/2603-24695v1.pdf new file mode 100644 index 0000000..a739fb8 Binary files /dev/null and b/documents/pdf/arxiv/2603-24695v1.pdf differ diff --git a/documents/pdf/arxiv/2603-25551v1.pdf b/documents/pdf/arxiv/2603-25551v1.pdf new file mode 100644 index 0000000..5005ab2 Binary files /dev/null and b/documents/pdf/arxiv/2603-25551v1.pdf differ diff --git a/documents/pdf/arxiv/2603-27094v1.pdf b/documents/pdf/arxiv/2603-27094v1.pdf new file mode 100644 index 0000000..ee3ef9e Binary files /dev/null and b/documents/pdf/arxiv/2603-27094v1.pdf differ diff --git a/documents/pdf/arxiv/2603-29199v1.pdf b/documents/pdf/arxiv/2603-29199v1.pdf new file mode 100644 index 0000000..c5be6ef Binary files /dev/null and b/documents/pdf/arxiv/2603-29199v1.pdf differ diff --git a/documents/pdf/arxiv/2603-29922v1.pdf b/documents/pdf/arxiv/2603-29922v1.pdf new file mode 100644 index 0000000..4bfa9ad Binary files /dev/null and b/documents/pdf/arxiv/2603-29922v1.pdf differ diff --git a/documents/pdf/gutenberg/de-reise-in-die-aequinoctial-gegenden-des-neuen-continents-ban.pdf b/documents/pdf/gutenberg/de-reise-in-die-aequinoctial-gegenden-des-neuen-continents-ban.pdf new file mode 100644 index 0000000..67e0056 Binary files /dev/null and b/documents/pdf/gutenberg/de-reise-in-die-aequinoctial-gegenden-des-neuen-continents-ban.pdf differ diff --git a/documents/pdf/gutenberg/de-tractatus-logico-philosophicus.pdf b/documents/pdf/gutenberg/de-tractatus-logico-philosophicus.pdf new file mode 100644 index 0000000..d3b4d65 Binary files /dev/null and b/documents/pdf/gutenberg/de-tractatus-logico-philosophicus.pdf differ diff --git a/documents/pdf/gutenberg/en-calculus-made-easy-being-a-very-simplest-introduction-to-th.pdf b/documents/pdf/gutenberg/en-calculus-made-easy-being-a-very-simplest-introduction-to-th.pdf new file mode 100644 index 0000000..70925f4 Binary files /dev/null and b/documents/pdf/gutenberg/en-calculus-made-easy-being-a-very-simplest-introduction-to-th.pdf differ diff --git a/documents/pdf/gutenberg/en-entretiens-interviews-entrevistas.pdf b/documents/pdf/gutenberg/en-entretiens-interviews-entrevistas.pdf new file mode 100644 index 0000000..ee6b868 Binary files /dev/null and b/documents/pdf/gutenberg/en-entretiens-interviews-entrevistas.pdf differ diff --git a/documents/pdf/gutenberg/en-that-which-hath-wings-a-novel-of-the-day.pdf b/documents/pdf/gutenberg/en-that-which-hath-wings-a-novel-of-the-day.pdf new file mode 100644 index 0000000..6933bce Binary files /dev/null and b/documents/pdf/gutenberg/en-that-which-hath-wings-a-novel-of-the-day.pdf differ diff --git a/documents/pdf/gutenberg/es-el-payador-vol-i-hijo-de-la-pampa.pdf b/documents/pdf/gutenberg/es-el-payador-vol-i-hijo-de-la-pampa.pdf new file mode 100644 index 0000000..2d0a66e Binary files /dev/null and b/documents/pdf/gutenberg/es-el-payador-vol-i-hijo-de-la-pampa.pdf differ diff --git a/documents/pdf/gutenberg/es-una-historia-del-ebook.pdf b/documents/pdf/gutenberg/es-una-historia-del-ebook.pdf new file mode 100644 index 0000000..e641595 Binary files /dev/null and b/documents/pdf/gutenberg/es-una-historia-del-ebook.pdf differ diff --git a/documents/pdf/gutenberg/fr-aloisi-sige-toletan-satyra-sotadica-de-arcanis-amoris-et.pdf b/documents/pdf/gutenberg/fr-aloisi-sige-toletan-satyra-sotadica-de-arcanis-amoris-et.pdf new file mode 100644 index 0000000..fdb5f7f Binary files /dev/null and b/documents/pdf/gutenberg/fr-aloisi-sige-toletan-satyra-sotadica-de-arcanis-amoris-et.pdf differ diff --git a/documents/pdf/gutenberg/fr-les-mutations-du-livre.pdf b/documents/pdf/gutenberg/fr-les-mutations-du-livre.pdf new file mode 100644 index 0000000..1b2c3bf Binary files /dev/null and b/documents/pdf/gutenberg/fr-les-mutations-du-livre.pdf differ diff --git a/documents/pdf/gutenberg/it-l-amore-che-torna-romanzo.pdf b/documents/pdf/gutenberg/it-l-amore-che-torna-romanzo.pdf new file mode 100644 index 0000000..7ea6642 Binary files /dev/null and b/documents/pdf/gutenberg/it-l-amore-che-torna-romanzo.pdf differ diff --git a/documents/pdf/internet-archive/arabic-2023-20220911.pdf b/documents/pdf/internet-archive/arabic-2023-20220911.pdf new file mode 100644 index 0000000..0e1b497 Binary files /dev/null and b/documents/pdf/internet-archive/arabic-2023-20220911.pdf differ diff --git a/documents/pdf/internet-archive/arabic-20231018-20231018-0813.pdf b/documents/pdf/internet-archive/arabic-20231018-20231018-0813.pdf new file mode 100644 index 0000000..e5e608e Binary files /dev/null and b/documents/pdf/internet-archive/arabic-20231018-20231018-0813.pdf differ diff --git a/documents/pdf/internet-archive/arabic-20240423-20240423-0152.pdf b/documents/pdf/internet-archive/arabic-20240423-20240423-0152.pdf new file mode 100644 index 0000000..9ad0f73 Binary files /dev/null and b/documents/pdf/internet-archive/arabic-20240423-20240423-0152.pdf differ diff --git a/documents/pdf/internet-archive/arabic-al-mokattam-newspaper.pdf b/documents/pdf/internet-archive/arabic-al-mokattam-newspaper.pdf new file mode 100644 index 0000000..e1b447a Binary files /dev/null and b/documents/pdf/internet-archive/arabic-al-mokattam-newspaper.pdf differ diff --git a/documents/pdf/internet-archive/chinese-grade-08-health-and-physical-education-textbook-sinhala-medium-new-syllabus.pdf b/documents/pdf/internet-archive/chinese-grade-08-health-and-physical-education-textbook-sinhala-medium-new-syllabus.pdf new file mode 100644 index 0000000..84e0458 Binary files /dev/null and b/documents/pdf/internet-archive/chinese-grade-08-health-and-physical-education-textbook-sinhala-medium-new-syllabus.pdf differ diff --git a/documents/pdf/internet-archive/chinese-grade-11-japanese-text-book-620352fadb1fc-202306.pdf b/documents/pdf/internet-archive/chinese-grade-11-japanese-text-book-620352fadb1fc-202306.pdf new file mode 100644 index 0000000..9774bbb Binary files /dev/null and b/documents/pdf/internet-archive/chinese-grade-11-japanese-text-book-620352fadb1fc-202306.pdf differ diff --git a/documents/pdf/internet-archive/chinese-mist-wei-feng-ji-xu.pdf b/documents/pdf/internet-archive/chinese-mist-wei-feng-ji-xu.pdf new file mode 100644 index 0000000..5beda77 Binary files /dev/null and b/documents/pdf/internet-archive/chinese-mist-wei-feng-ji-xu.pdf differ diff --git a/documents/pdf/internet-archive/chinese-quickly-wear-the-face-of-the-devil-fengliu-shudai-z-lib-org-202211.pdf b/documents/pdf/internet-archive/chinese-quickly-wear-the-face-of-the-devil-fengliu-shudai-z-lib-org-202211.pdf new file mode 100644 index 0000000..7818771 Binary files /dev/null and b/documents/pdf/internet-archive/chinese-quickly-wear-the-face-of-the-devil-fengliu-shudai-z-lib-org-202211.pdf differ diff --git a/documents/pdf/internet-archive/english-fables-vol-22-150-farewell-2015-digital-tpb-nahga-empire.pdf b/documents/pdf/internet-archive/english-fables-vol-22-150-farewell-2015-digital-tpb-nahga-empire.pdf new file mode 100644 index 0000000..c58dc5c Binary files /dev/null and b/documents/pdf/internet-archive/english-fables-vol-22-150-farewell-2015-digital-tpb-nahga-empire.pdf differ diff --git a/documents/pdf/internet-archive/english-instapdf-in-a-million-kisses-in-your-lifetime-814.pdf b/documents/pdf/internet-archive/english-instapdf-in-a-million-kisses-in-your-lifetime-814.pdf new file mode 100644 index 0000000..2d8cc29 Binary files /dev/null and b/documents/pdf/internet-archive/english-instapdf-in-a-million-kisses-in-your-lifetime-814.pdf differ diff --git a/documents/pdf/internet-archive/english-the-sun-and-the-star-from-the-rick-riordan.pdf b/documents/pdf/internet-archive/english-the-sun-and-the-star-from-the-rick-riordan.pdf new file mode 100644 index 0000000..fe00f28 Binary files /dev/null and b/documents/pdf/internet-archive/english-the-sun-and-the-star-from-the-rick-riordan.pdf differ diff --git a/documents/pdf/internet-archive/english-trading-in-the-zone-mark-douglas.pdf b/documents/pdf/internet-archive/english-trading-in-the-zone-mark-douglas.pdf new file mode 100644 index 0000000..7b75ace Binary files /dev/null and b/documents/pdf/internet-archive/english-trading-in-the-zone-mark-douglas.pdf differ diff --git a/documents/pdf/internet-archive/french-agregationexternemaths1966-2024.pdf b/documents/pdf/internet-archive/french-agregationexternemaths1966-2024.pdf new file mode 100644 index 0000000..f7a3ed4 Binary files /dev/null and b/documents/pdf/internet-archive/french-agregationexternemaths1966-2024.pdf differ diff --git a/documents/pdf/internet-archive/french-cami-les-chevaliers-du-gai-202407.pdf b/documents/pdf/internet-archive/french-cami-les-chevaliers-du-gai-202407.pdf new file mode 100644 index 0000000..ad3aa6a Binary files /dev/null and b/documents/pdf/internet-archive/french-cami-les-chevaliers-du-gai-202407.pdf differ diff --git a/documents/pdf/internet-archive/french-mon-combat.pdf b/documents/pdf/internet-archive/french-mon-combat.pdf new file mode 100644 index 0000000..a087d0b Binary files /dev/null and b/documents/pdf/internet-archive/french-mon-combat.pdf differ diff --git a/documents/pdf/internet-archive/french-oral2capesmaths2003.pdf b/documents/pdf/internet-archive/french-oral2capesmaths2003.pdf new file mode 100644 index 0000000..d29dd57 Binary files /dev/null and b/documents/pdf/internet-archive/french-oral2capesmaths2003.pdf differ diff --git a/documents/pdf/internet-archive/german-amtsblatt-der-stadt-wien-1893.pdf b/documents/pdf/internet-archive/german-amtsblatt-der-stadt-wien-1893.pdf new file mode 100644 index 0000000..757c677 Binary files /dev/null and b/documents/pdf/internet-archive/german-amtsblatt-der-stadt-wien-1893.pdf differ diff --git a/documents/pdf/internet-archive/german-amtsblatt-der-stadt-wien-1895.pdf b/documents/pdf/internet-archive/german-amtsblatt-der-stadt-wien-1895.pdf new file mode 100644 index 0000000..b41d3fa Binary files /dev/null and b/documents/pdf/internet-archive/german-amtsblatt-der-stadt-wien-1895.pdf differ diff --git a/documents/pdf/internet-archive/german-amtsblatt-der-stadt-wien-1896.pdf b/documents/pdf/internet-archive/german-amtsblatt-der-stadt-wien-1896.pdf new file mode 100644 index 0000000..de32175 Binary files /dev/null and b/documents/pdf/internet-archive/german-amtsblatt-der-stadt-wien-1896.pdf differ diff --git a/documents/pdf/internet-archive/german-organigramme-solothurn-schweiz.pdf b/documents/pdf/internet-archive/german-organigramme-solothurn-schweiz.pdf new file mode 100644 index 0000000..3d31dea Binary files /dev/null and b/documents/pdf/internet-archive/german-organigramme-solothurn-schweiz.pdf differ diff --git a/documents/pdf/internet-archive/russian-mogilyovskie-eparhialnye-vedomosti-1883-1917.pdf b/documents/pdf/internet-archive/russian-mogilyovskie-eparhialnye-vedomosti-1883-1917.pdf new file mode 100644 index 0000000..313c9e6 Binary files /dev/null and b/documents/pdf/internet-archive/russian-mogilyovskie-eparhialnye-vedomosti-1883-1917.pdf differ diff --git a/documents/pdf/internet-archive/russian-no-37a-ii.pdf b/documents/pdf/internet-archive/russian-no-37a-ii.pdf new file mode 100644 index 0000000..251249d Binary files /dev/null and b/documents/pdf/internet-archive/russian-no-37a-ii.pdf differ diff --git a/documents/pdf/internet-archive/russian-playboy-202208.pdf b/documents/pdf/internet-archive/russian-playboy-202208.pdf new file mode 100644 index 0000000..b893b69 Binary files /dev/null and b/documents/pdf/internet-archive/russian-playboy-202208.pdf differ diff --git a/documents/pdf/internet-archive/russian-soviet-archaeology-journals-1.pdf b/documents/pdf/internet-archive/russian-soviet-archaeology-journals-1.pdf new file mode 100644 index 0000000..6d5a14a Binary files /dev/null and b/documents/pdf/internet-archive/russian-soviet-archaeology-journals-1.pdf differ diff --git a/documents/pdf/internet-archive/spanish-adam-smith-la-riqueza-de-las-naciones-202304.pdf b/documents/pdf/internet-archive/spanish-adam-smith-la-riqueza-de-las-naciones-202304.pdf new file mode 100644 index 0000000..e3f51ba Binary files /dev/null and b/documents/pdf/internet-archive/spanish-adam-smith-la-riqueza-de-las-naciones-202304.pdf differ diff --git a/documents/pdf/internet-archive/spanish-el-mito-de-sisifo-albert-camus.pdf b/documents/pdf/internet-archive/spanish-el-mito-de-sisifo-albert-camus.pdf new file mode 100644 index 0000000..2f2afca Binary files /dev/null and b/documents/pdf/internet-archive/spanish-el-mito-de-sisifo-albert-camus.pdf differ diff --git a/documents/pdf/internet-archive/spanish-gui-a-ilustrada-de-monstruos-y-fantasmas-de-japo-n-sekien-toriyama.pdf b/documents/pdf/internet-archive/spanish-gui-a-ilustrada-de-monstruos-y-fantasmas-de-japo-n-sekien-toriyama.pdf new file mode 100644 index 0000000..12092f8 Binary files /dev/null and b/documents/pdf/internet-archive/spanish-gui-a-ilustrada-de-monstruos-y-fantasmas-de-japo-n-sekien-toriyama.pdf differ diff --git a/documents/pdf/internet-archive/spanish-las-mil-y-una-noches-202304.pdf b/documents/pdf/internet-archive/spanish-las-mil-y-una-noches-202304.pdf new file mode 100644 index 0000000..befd7da Binary files /dev/null and b/documents/pdf/internet-archive/spanish-las-mil-y-una-noches-202304.pdf differ diff --git a/documents/pdf/irs-forms/f1040.pdf b/documents/pdf/irs-forms/f1040.pdf new file mode 100644 index 0000000..dca5700 Binary files /dev/null and b/documents/pdf/irs-forms/f1040.pdf differ diff --git a/documents/pdf/irs-forms/f1040es.pdf b/documents/pdf/irs-forms/f1040es.pdf new file mode 100644 index 0000000..9d362dd Binary files /dev/null and b/documents/pdf/irs-forms/f1040es.pdf differ diff --git a/documents/pdf/irs-forms/f1040nr.pdf b/documents/pdf/irs-forms/f1040nr.pdf new file mode 100644 index 0000000..3346d5d Binary files /dev/null and b/documents/pdf/irs-forms/f1040nr.pdf differ diff --git a/documents/pdf/irs-forms/f1040s1.pdf b/documents/pdf/irs-forms/f1040s1.pdf new file mode 100644 index 0000000..ecba1d9 Binary files /dev/null and b/documents/pdf/irs-forms/f1040s1.pdf differ diff --git a/documents/pdf/irs-forms/f1040s2.pdf b/documents/pdf/irs-forms/f1040s2.pdf new file mode 100644 index 0000000..d294c01 Binary files /dev/null and b/documents/pdf/irs-forms/f1040s2.pdf differ diff --git a/documents/pdf/irs-forms/f1040s3.pdf b/documents/pdf/irs-forms/f1040s3.pdf new file mode 100644 index 0000000..8c53275 Binary files /dev/null and b/documents/pdf/irs-forms/f1040s3.pdf differ diff --git a/documents/pdf/irs-forms/f1040s8.pdf b/documents/pdf/irs-forms/f1040s8.pdf new file mode 100644 index 0000000..09aed92 Binary files /dev/null and b/documents/pdf/irs-forms/f1040s8.pdf differ diff --git a/documents/pdf/irs-forms/f1040sa.pdf b/documents/pdf/irs-forms/f1040sa.pdf new file mode 100644 index 0000000..ad8ce9c Binary files /dev/null and b/documents/pdf/irs-forms/f1040sa.pdf differ diff --git a/documents/pdf/irs-forms/f1040sb.pdf b/documents/pdf/irs-forms/f1040sb.pdf new file mode 100644 index 0000000..e512aea Binary files /dev/null and b/documents/pdf/irs-forms/f1040sb.pdf differ diff --git a/documents/pdf/irs-forms/f1040sc.pdf b/documents/pdf/irs-forms/f1040sc.pdf new file mode 100644 index 0000000..df1ea0c Binary files /dev/null and b/documents/pdf/irs-forms/f1040sc.pdf differ diff --git a/documents/pdf/irs-forms/f1040sd.pdf b/documents/pdf/irs-forms/f1040sd.pdf new file mode 100644 index 0000000..25d1e3a Binary files /dev/null and b/documents/pdf/irs-forms/f1040sd.pdf differ diff --git a/documents/pdf/irs-forms/f1040se.pdf b/documents/pdf/irs-forms/f1040se.pdf new file mode 100644 index 0000000..e3ea49e Binary files /dev/null and b/documents/pdf/irs-forms/f1040se.pdf differ diff --git a/documents/pdf/irs-forms/f1040sf.pdf b/documents/pdf/irs-forms/f1040sf.pdf new file mode 100644 index 0000000..d67e89e Binary files /dev/null and b/documents/pdf/irs-forms/f1040sf.pdf differ diff --git a/documents/pdf/irs-forms/f1040sh.pdf b/documents/pdf/irs-forms/f1040sh.pdf new file mode 100644 index 0000000..b341ba8 Binary files /dev/null and b/documents/pdf/irs-forms/f1040sh.pdf differ diff --git a/documents/pdf/irs-forms/f1040sr.pdf b/documents/pdf/irs-forms/f1040sr.pdf new file mode 100644 index 0000000..7624ade Binary files /dev/null and b/documents/pdf/irs-forms/f1040sr.pdf differ diff --git a/documents/pdf/irs-forms/f1040sse.pdf b/documents/pdf/irs-forms/f1040sse.pdf new file mode 100644 index 0000000..0b3f214 Binary files /dev/null and b/documents/pdf/irs-forms/f1040sse.pdf differ diff --git a/documents/pdf/irs-forms/f1040v.pdf b/documents/pdf/irs-forms/f1040v.pdf new file mode 100644 index 0000000..2c1a50c Binary files /dev/null and b/documents/pdf/irs-forms/f1040v.pdf differ diff --git a/documents/pdf/irs-forms/f1040x.pdf b/documents/pdf/irs-forms/f1040x.pdf new file mode 100644 index 0000000..aa2054b Binary files /dev/null and b/documents/pdf/irs-forms/f1040x.pdf differ diff --git a/documents/pdf/irs-forms/f1065.pdf b/documents/pdf/irs-forms/f1065.pdf new file mode 100644 index 0000000..a32681f Binary files /dev/null and b/documents/pdf/irs-forms/f1065.pdf differ diff --git a/documents/pdf/irs-forms/f1065sk1.pdf b/documents/pdf/irs-forms/f1065sk1.pdf new file mode 100644 index 0000000..5e62d55 Binary files /dev/null and b/documents/pdf/irs-forms/f1065sk1.pdf differ diff --git a/documents/pdf/irs-forms/f1095a.pdf b/documents/pdf/irs-forms/f1095a.pdf new file mode 100644 index 0000000..dfe9982 Binary files /dev/null and b/documents/pdf/irs-forms/f1095a.pdf differ diff --git a/documents/pdf/irs-forms/f1095b.pdf b/documents/pdf/irs-forms/f1095b.pdf new file mode 100644 index 0000000..5c5beb4 Binary files /dev/null and b/documents/pdf/irs-forms/f1095b.pdf differ diff --git a/documents/pdf/irs-forms/f1095c.pdf b/documents/pdf/irs-forms/f1095c.pdf new file mode 100644 index 0000000..fd6bc94 Binary files /dev/null and b/documents/pdf/irs-forms/f1095c.pdf differ diff --git a/documents/pdf/irs-forms/f1098e.pdf b/documents/pdf/irs-forms/f1098e.pdf new file mode 100644 index 0000000..c542b03 Binary files /dev/null and b/documents/pdf/irs-forms/f1098e.pdf differ diff --git a/documents/pdf/irs-forms/f1098t.pdf b/documents/pdf/irs-forms/f1098t.pdf new file mode 100644 index 0000000..a42a08f Binary files /dev/null and b/documents/pdf/irs-forms/f1098t.pdf differ diff --git a/documents/pdf/irs-forms/f1099div.pdf b/documents/pdf/irs-forms/f1099div.pdf new file mode 100644 index 0000000..56e79b2 Binary files /dev/null and b/documents/pdf/irs-forms/f1099div.pdf differ diff --git a/documents/pdf/irs-forms/f1099g.pdf b/documents/pdf/irs-forms/f1099g.pdf new file mode 100644 index 0000000..d3bf7c1 Binary files /dev/null and b/documents/pdf/irs-forms/f1099g.pdf differ diff --git a/documents/pdf/irs-forms/f1099int.pdf b/documents/pdf/irs-forms/f1099int.pdf new file mode 100644 index 0000000..518a978 Binary files /dev/null and b/documents/pdf/irs-forms/f1099int.pdf differ diff --git a/documents/pdf/irs-forms/f1099k.pdf b/documents/pdf/irs-forms/f1099k.pdf new file mode 100644 index 0000000..3c26ca6 Binary files /dev/null and b/documents/pdf/irs-forms/f1099k.pdf differ diff --git a/documents/pdf/irs-forms/f1099msc.pdf b/documents/pdf/irs-forms/f1099msc.pdf new file mode 100644 index 0000000..b4a46da Binary files /dev/null and b/documents/pdf/irs-forms/f1099msc.pdf differ diff --git a/documents/pdf/irs-forms/f1099nec.pdf b/documents/pdf/irs-forms/f1099nec.pdf new file mode 100644 index 0000000..48ff034 Binary files /dev/null and b/documents/pdf/irs-forms/f1099nec.pdf differ diff --git a/documents/pdf/irs-forms/f1099r.pdf b/documents/pdf/irs-forms/f1099r.pdf new file mode 100644 index 0000000..d3182f9 Binary files /dev/null and b/documents/pdf/irs-forms/f1099r.pdf differ diff --git a/documents/pdf/irs-forms/f1099s.pdf b/documents/pdf/irs-forms/f1099s.pdf new file mode 100644 index 0000000..7abd0b9 Binary files /dev/null and b/documents/pdf/irs-forms/f1099s.pdf differ diff --git a/documents/pdf/irs-forms/f1099sa.pdf b/documents/pdf/irs-forms/f1099sa.pdf new file mode 100644 index 0000000..a2a65de Binary files /dev/null and b/documents/pdf/irs-forms/f1099sa.pdf differ diff --git a/documents/pdf/irs-forms/f1120.pdf b/documents/pdf/irs-forms/f1120.pdf new file mode 100644 index 0000000..de1fccf Binary files /dev/null and b/documents/pdf/irs-forms/f1120.pdf differ diff --git a/documents/pdf/irs-forms/f1120s.pdf b/documents/pdf/irs-forms/f1120s.pdf new file mode 100644 index 0000000..9107d4a Binary files /dev/null and b/documents/pdf/irs-forms/f1120s.pdf differ diff --git a/documents/pdf/irs-forms/f1120ssk.pdf b/documents/pdf/irs-forms/f1120ssk.pdf new file mode 100644 index 0000000..4162e83 Binary files /dev/null and b/documents/pdf/irs-forms/f1120ssk.pdf differ diff --git a/documents/pdf/irs-forms/f1125a.pdf b/documents/pdf/irs-forms/f1125a.pdf new file mode 100644 index 0000000..33325b6 Binary files /dev/null and b/documents/pdf/irs-forms/f1125a.pdf differ diff --git a/documents/pdf/irs-forms/f1125e.pdf b/documents/pdf/irs-forms/f1125e.pdf new file mode 100644 index 0000000..4169778 Binary files /dev/null and b/documents/pdf/irs-forms/f1125e.pdf differ diff --git a/documents/pdf/irs-forms/f2350.pdf b/documents/pdf/irs-forms/f2350.pdf new file mode 100644 index 0000000..b1222ff Binary files /dev/null and b/documents/pdf/irs-forms/f2350.pdf differ diff --git a/documents/pdf/irs-forms/f2441.pdf b/documents/pdf/irs-forms/f2441.pdf new file mode 100644 index 0000000..29bd781 Binary files /dev/null and b/documents/pdf/irs-forms/f2441.pdf differ diff --git a/documents/pdf/irs-forms/f2555.pdf b/documents/pdf/irs-forms/f2555.pdf new file mode 100644 index 0000000..0d80c40 Binary files /dev/null and b/documents/pdf/irs-forms/f2555.pdf differ diff --git a/documents/pdf/irs-forms/f2848.pdf b/documents/pdf/irs-forms/f2848.pdf new file mode 100644 index 0000000..5c49158 Binary files /dev/null and b/documents/pdf/irs-forms/f2848.pdf differ diff --git a/documents/pdf/irs-forms/f3520.pdf b/documents/pdf/irs-forms/f3520.pdf new file mode 100644 index 0000000..39cadb4 Binary files /dev/null and b/documents/pdf/irs-forms/f3520.pdf differ diff --git a/documents/pdf/irs-forms/f3520a.pdf b/documents/pdf/irs-forms/f3520a.pdf new file mode 100644 index 0000000..bd43c2e Binary files /dev/null and b/documents/pdf/irs-forms/f3520a.pdf differ diff --git a/documents/pdf/irs-forms/f4506.pdf b/documents/pdf/irs-forms/f4506.pdf new file mode 100644 index 0000000..d1bb2f9 Binary files /dev/null and b/documents/pdf/irs-forms/f4506.pdf differ diff --git a/documents/pdf/irs-forms/f4506t.pdf b/documents/pdf/irs-forms/f4506t.pdf new file mode 100644 index 0000000..804cb42 Binary files /dev/null and b/documents/pdf/irs-forms/f4506t.pdf differ diff --git a/documents/pdf/irs-forms/f4562.pdf b/documents/pdf/irs-forms/f4562.pdf new file mode 100644 index 0000000..27e1e6e Binary files /dev/null and b/documents/pdf/irs-forms/f4562.pdf differ diff --git a/documents/pdf/irs-forms/f4797.pdf b/documents/pdf/irs-forms/f4797.pdf new file mode 100644 index 0000000..e30d720 Binary files /dev/null and b/documents/pdf/irs-forms/f4797.pdf differ diff --git a/documents/pdf/irs-forms/f4868.pdf b/documents/pdf/irs-forms/f4868.pdf new file mode 100644 index 0000000..71f6dc4 Binary files /dev/null and b/documents/pdf/irs-forms/f4868.pdf differ diff --git a/documents/pdf/irs-forms/f5329.pdf b/documents/pdf/irs-forms/f5329.pdf new file mode 100644 index 0000000..7403fd2 Binary files /dev/null and b/documents/pdf/irs-forms/f5329.pdf differ diff --git a/documents/pdf/irs-forms/f5471.pdf b/documents/pdf/irs-forms/f5471.pdf new file mode 100644 index 0000000..321b0f1 Binary files /dev/null and b/documents/pdf/irs-forms/f5471.pdf differ diff --git a/documents/pdf/irs-forms/f5498.pdf b/documents/pdf/irs-forms/f5498.pdf new file mode 100644 index 0000000..f67d144 Binary files /dev/null and b/documents/pdf/irs-forms/f5498.pdf differ diff --git a/documents/pdf/irs-forms/f56.pdf b/documents/pdf/irs-forms/f56.pdf new file mode 100644 index 0000000..ded419f Binary files /dev/null and b/documents/pdf/irs-forms/f56.pdf differ diff --git a/documents/pdf/irs-forms/f5695.pdf b/documents/pdf/irs-forms/f5695.pdf new file mode 100644 index 0000000..d77dafe Binary files /dev/null and b/documents/pdf/irs-forms/f5695.pdf differ diff --git a/documents/pdf/irs-forms/f6251.pdf b/documents/pdf/irs-forms/f6251.pdf new file mode 100644 index 0000000..35b2303 Binary files /dev/null and b/documents/pdf/irs-forms/f6251.pdf differ diff --git a/documents/pdf/irs-forms/f706.pdf b/documents/pdf/irs-forms/f706.pdf new file mode 100644 index 0000000..00dda22 Binary files /dev/null and b/documents/pdf/irs-forms/f706.pdf differ diff --git a/documents/pdf/irs-forms/f709.pdf b/documents/pdf/irs-forms/f709.pdf new file mode 100644 index 0000000..25e01b6 Binary files /dev/null and b/documents/pdf/irs-forms/f709.pdf differ diff --git a/documents/pdf/irs-forms/f8283.pdf b/documents/pdf/irs-forms/f8283.pdf new file mode 100644 index 0000000..b5f4c6a Binary files /dev/null and b/documents/pdf/irs-forms/f8283.pdf differ diff --git a/documents/pdf/irs-forms/f8332.pdf b/documents/pdf/irs-forms/f8332.pdf new file mode 100644 index 0000000..87a7e93 Binary files /dev/null and b/documents/pdf/irs-forms/f8332.pdf differ diff --git a/documents/pdf/irs-forms/f8606.pdf b/documents/pdf/irs-forms/f8606.pdf new file mode 100644 index 0000000..18a0ccb Binary files /dev/null and b/documents/pdf/irs-forms/f8606.pdf differ diff --git a/documents/pdf/irs-forms/f8621.pdf b/documents/pdf/irs-forms/f8621.pdf new file mode 100644 index 0000000..d75be5f Binary files /dev/null and b/documents/pdf/irs-forms/f8621.pdf differ diff --git a/documents/pdf/irs-forms/f8812.pdf b/documents/pdf/irs-forms/f8812.pdf new file mode 100644 index 0000000..a72332f Binary files /dev/null and b/documents/pdf/irs-forms/f8812.pdf differ diff --git a/documents/pdf/irs-forms/f8821.pdf b/documents/pdf/irs-forms/f8821.pdf new file mode 100644 index 0000000..01f818f Binary files /dev/null and b/documents/pdf/irs-forms/f8821.pdf differ diff --git a/documents/pdf/irs-forms/f8822.pdf b/documents/pdf/irs-forms/f8822.pdf new file mode 100644 index 0000000..20c7f27 Binary files /dev/null and b/documents/pdf/irs-forms/f8822.pdf differ diff --git a/documents/pdf/irs-forms/f8822b.pdf b/documents/pdf/irs-forms/f8822b.pdf new file mode 100644 index 0000000..15b2cbf Binary files /dev/null and b/documents/pdf/irs-forms/f8822b.pdf differ diff --git a/documents/pdf/irs-forms/f8829.pdf b/documents/pdf/irs-forms/f8829.pdf new file mode 100644 index 0000000..7d4a26e Binary files /dev/null and b/documents/pdf/irs-forms/f8829.pdf differ diff --git a/documents/pdf/irs-forms/f8863.pdf b/documents/pdf/irs-forms/f8863.pdf new file mode 100644 index 0000000..54d652f Binary files /dev/null and b/documents/pdf/irs-forms/f8863.pdf differ diff --git a/documents/pdf/irs-forms/f8865.pdf b/documents/pdf/irs-forms/f8865.pdf new file mode 100644 index 0000000..0e1d679 Binary files /dev/null and b/documents/pdf/irs-forms/f8865.pdf differ diff --git a/documents/pdf/irs-forms/f8880.pdf b/documents/pdf/irs-forms/f8880.pdf new file mode 100644 index 0000000..572f396 Binary files /dev/null and b/documents/pdf/irs-forms/f8880.pdf differ diff --git a/documents/pdf/irs-forms/f8889.pdf b/documents/pdf/irs-forms/f8889.pdf new file mode 100644 index 0000000..cfe809b Binary files /dev/null and b/documents/pdf/irs-forms/f8889.pdf differ diff --git a/documents/pdf/irs-forms/f8917.pdf b/documents/pdf/irs-forms/f8917.pdf new file mode 100644 index 0000000..9c97c2e Binary files /dev/null and b/documents/pdf/irs-forms/f8917.pdf differ diff --git a/documents/pdf/irs-forms/f8938.pdf b/documents/pdf/irs-forms/f8938.pdf new file mode 100644 index 0000000..4c24ba5 Binary files /dev/null and b/documents/pdf/irs-forms/f8938.pdf differ diff --git a/documents/pdf/irs-forms/f8949.pdf b/documents/pdf/irs-forms/f8949.pdf new file mode 100644 index 0000000..175ad25 Binary files /dev/null and b/documents/pdf/irs-forms/f8949.pdf differ diff --git a/documents/pdf/irs-forms/f8995.pdf b/documents/pdf/irs-forms/f8995.pdf new file mode 100644 index 0000000..466ca2a Binary files /dev/null and b/documents/pdf/irs-forms/f8995.pdf differ diff --git a/documents/pdf/irs-forms/f8995a.pdf b/documents/pdf/irs-forms/f8995a.pdf new file mode 100644 index 0000000..7ad550f Binary files /dev/null and b/documents/pdf/irs-forms/f8995a.pdf differ diff --git a/documents/pdf/irs-forms/f940.pdf b/documents/pdf/irs-forms/f940.pdf new file mode 100644 index 0000000..c38e44f Binary files /dev/null and b/documents/pdf/irs-forms/f940.pdf differ diff --git a/documents/pdf/irs-forms/f941.pdf b/documents/pdf/irs-forms/f941.pdf new file mode 100644 index 0000000..a70381b Binary files /dev/null and b/documents/pdf/irs-forms/f941.pdf differ diff --git a/documents/pdf/irs-forms/f941x.pdf b/documents/pdf/irs-forms/f941x.pdf new file mode 100644 index 0000000..5d4ff30 Binary files /dev/null and b/documents/pdf/irs-forms/f941x.pdf differ diff --git a/documents/pdf/irs-forms/f943.pdf b/documents/pdf/irs-forms/f943.pdf new file mode 100644 index 0000000..792d47d Binary files /dev/null and b/documents/pdf/irs-forms/f943.pdf differ diff --git a/documents/pdf/irs-forms/f944.pdf b/documents/pdf/irs-forms/f944.pdf new file mode 100644 index 0000000..31060c8 Binary files /dev/null and b/documents/pdf/irs-forms/f944.pdf differ diff --git a/documents/pdf/irs-forms/f945.pdf b/documents/pdf/irs-forms/f945.pdf new file mode 100644 index 0000000..da56507 Binary files /dev/null and b/documents/pdf/irs-forms/f945.pdf differ diff --git a/documents/pdf/irs-forms/fw2.pdf b/documents/pdf/irs-forms/fw2.pdf new file mode 100644 index 0000000..69d2552 Binary files /dev/null and b/documents/pdf/irs-forms/fw2.pdf differ diff --git a/documents/pdf/irs-forms/fw4.pdf b/documents/pdf/irs-forms/fw4.pdf new file mode 100644 index 0000000..da90e16 Binary files /dev/null and b/documents/pdf/irs-forms/fw4.pdf differ diff --git a/documents/pdf/irs-forms/fw4p.pdf b/documents/pdf/irs-forms/fw4p.pdf new file mode 100644 index 0000000..739343a Binary files /dev/null and b/documents/pdf/irs-forms/fw4p.pdf differ diff --git a/documents/pdf/irs-forms/fw4r.pdf b/documents/pdf/irs-forms/fw4r.pdf new file mode 100644 index 0000000..38ca9e9 Binary files /dev/null and b/documents/pdf/irs-forms/fw4r.pdf differ diff --git a/documents/pdf/irs-forms/fw4s.pdf b/documents/pdf/irs-forms/fw4s.pdf new file mode 100644 index 0000000..ed266b3 Binary files /dev/null and b/documents/pdf/irs-forms/fw4s.pdf differ diff --git a/documents/pdf/irs-forms/fw4v.pdf b/documents/pdf/irs-forms/fw4v.pdf new file mode 100644 index 0000000..72fdbda Binary files /dev/null and b/documents/pdf/irs-forms/fw4v.pdf differ diff --git a/documents/pdf/irs-forms/fw7.pdf b/documents/pdf/irs-forms/fw7.pdf new file mode 100644 index 0000000..ae04fa7 Binary files /dev/null and b/documents/pdf/irs-forms/fw7.pdf differ diff --git a/documents/pdf/irs-forms/fw8ben.pdf b/documents/pdf/irs-forms/fw8ben.pdf new file mode 100644 index 0000000..43fee14 Binary files /dev/null and b/documents/pdf/irs-forms/fw8ben.pdf differ diff --git a/documents/pdf/irs-forms/fw8bene.pdf b/documents/pdf/irs-forms/fw8bene.pdf new file mode 100644 index 0000000..ca6dca7 Binary files /dev/null and b/documents/pdf/irs-forms/fw8bene.pdf differ diff --git a/documents/pdf/irs-forms/fw9.pdf b/documents/pdf/irs-forms/fw9.pdf new file mode 100644 index 0000000..d19b9b6 Binary files /dev/null and b/documents/pdf/irs-forms/fw9.pdf differ diff --git a/documents/pdf/irs-forms/fw9s.pdf b/documents/pdf/irs-forms/fw9s.pdf new file mode 100644 index 0000000..c704240 Binary files /dev/null and b/documents/pdf/irs-forms/fw9s.pdf differ diff --git a/documents/pdf/irs-forms/i1040gi.pdf b/documents/pdf/irs-forms/i1040gi.pdf new file mode 100644 index 0000000..51da38c Binary files /dev/null and b/documents/pdf/irs-forms/i1040gi.pdf differ diff --git a/documents/pdf/irs-forms/i1040sca.pdf b/documents/pdf/irs-forms/i1040sca.pdf new file mode 100644 index 0000000..8cd871e Binary files /dev/null and b/documents/pdf/irs-forms/i1040sca.pdf differ diff --git a/documents/pdf/irs-forms/i1040tt.pdf b/documents/pdf/irs-forms/i1040tt.pdf new file mode 100644 index 0000000..9b310be Binary files /dev/null and b/documents/pdf/irs-forms/i1040tt.pdf differ diff --git a/documents/pdf/irs-forms/i1040x.pdf b/documents/pdf/irs-forms/i1040x.pdf new file mode 100644 index 0000000..846eb10 Binary files /dev/null and b/documents/pdf/irs-forms/i1040x.pdf differ diff --git a/documents/pdf/irs-forms/i1065.pdf b/documents/pdf/irs-forms/i1065.pdf new file mode 100644 index 0000000..93e8fa9 Binary files /dev/null and b/documents/pdf/irs-forms/i1065.pdf differ diff --git a/documents/pdf/irs-forms/i1099gi.pdf b/documents/pdf/irs-forms/i1099gi.pdf new file mode 100644 index 0000000..6f4f065 Binary files /dev/null and b/documents/pdf/irs-forms/i1099gi.pdf differ diff --git a/documents/pdf/irs-forms/i1120.pdf b/documents/pdf/irs-forms/i1120.pdf new file mode 100644 index 0000000..713d6c5 Binary files /dev/null and b/documents/pdf/irs-forms/i1120.pdf differ diff --git a/documents/pdf/irs-forms/i1120s.pdf b/documents/pdf/irs-forms/i1120s.pdf new file mode 100644 index 0000000..d433227 Binary files /dev/null and b/documents/pdf/irs-forms/i1120s.pdf differ diff --git a/documents/pdf/irs-forms/i706.pdf b/documents/pdf/irs-forms/i706.pdf new file mode 100644 index 0000000..d901168 Binary files /dev/null and b/documents/pdf/irs-forms/i706.pdf differ diff --git a/documents/pdf/irs-forms/i709.pdf b/documents/pdf/irs-forms/i709.pdf new file mode 100644 index 0000000..93d34d2 Binary files /dev/null and b/documents/pdf/irs-forms/i709.pdf differ diff --git a/documents/pdf/irs-forms/i940.pdf b/documents/pdf/irs-forms/i940.pdf new file mode 100644 index 0000000..14e2afe Binary files /dev/null and b/documents/pdf/irs-forms/i940.pdf differ diff --git a/documents/pdf/irs-forms/i941.pdf b/documents/pdf/irs-forms/i941.pdf new file mode 100644 index 0000000..e6e863a Binary files /dev/null and b/documents/pdf/irs-forms/i941.pdf differ diff --git a/documents/pdf/irs-forms/i944.pdf b/documents/pdf/irs-forms/i944.pdf new file mode 100644 index 0000000..05d1127 Binary files /dev/null and b/documents/pdf/irs-forms/i944.pdf differ diff --git a/documents/pdf/irs-forms/iw2w3.pdf b/documents/pdf/irs-forms/iw2w3.pdf new file mode 100644 index 0000000..c037dd2 Binary files /dev/null and b/documents/pdf/irs-forms/iw2w3.pdf differ diff --git a/documents/pdf/irs-forms/p1.pdf b/documents/pdf/irs-forms/p1.pdf new file mode 100644 index 0000000..23d95af Binary files /dev/null and b/documents/pdf/irs-forms/p1.pdf differ diff --git a/documents/pdf/irs-forms/p15.pdf b/documents/pdf/irs-forms/p15.pdf new file mode 100644 index 0000000..fd2657b Binary files /dev/null and b/documents/pdf/irs-forms/p15.pdf differ diff --git a/documents/pdf/irs-forms/p15b.pdf b/documents/pdf/irs-forms/p15b.pdf new file mode 100644 index 0000000..834c92c Binary files /dev/null and b/documents/pdf/irs-forms/p15b.pdf differ diff --git a/documents/pdf/irs-forms/p17.pdf b/documents/pdf/irs-forms/p17.pdf new file mode 100644 index 0000000..36b092d Binary files /dev/null and b/documents/pdf/irs-forms/p17.pdf differ diff --git a/documents/pdf/irs-forms/p334.pdf b/documents/pdf/irs-forms/p334.pdf new file mode 100644 index 0000000..8394ac5 Binary files /dev/null and b/documents/pdf/irs-forms/p334.pdf differ diff --git a/documents/pdf/irs-forms/p463.pdf b/documents/pdf/irs-forms/p463.pdf new file mode 100644 index 0000000..656f357 Binary files /dev/null and b/documents/pdf/irs-forms/p463.pdf differ diff --git a/documents/pdf/irs-forms/p502.pdf b/documents/pdf/irs-forms/p502.pdf new file mode 100644 index 0000000..b1ee40b Binary files /dev/null and b/documents/pdf/irs-forms/p502.pdf differ diff --git a/documents/pdf/irs-forms/p503.pdf b/documents/pdf/irs-forms/p503.pdf new file mode 100644 index 0000000..8a6b93e Binary files /dev/null and b/documents/pdf/irs-forms/p503.pdf differ diff --git a/documents/pdf/irs-forms/p504.pdf b/documents/pdf/irs-forms/p504.pdf new file mode 100644 index 0000000..e723430 Binary files /dev/null and b/documents/pdf/irs-forms/p504.pdf differ diff --git a/documents/pdf/irs-forms/p505.pdf b/documents/pdf/irs-forms/p505.pdf new file mode 100644 index 0000000..6417e2a Binary files /dev/null and b/documents/pdf/irs-forms/p505.pdf differ diff --git a/documents/pdf/irs-forms/p519.pdf b/documents/pdf/irs-forms/p519.pdf new file mode 100644 index 0000000..5e5803c Binary files /dev/null and b/documents/pdf/irs-forms/p519.pdf differ diff --git a/documents/pdf/irs-forms/p523.pdf b/documents/pdf/irs-forms/p523.pdf new file mode 100644 index 0000000..04e41bd Binary files /dev/null and b/documents/pdf/irs-forms/p523.pdf differ diff --git a/documents/pdf/irs-forms/p525.pdf b/documents/pdf/irs-forms/p525.pdf new file mode 100644 index 0000000..8a6de9c Binary files /dev/null and b/documents/pdf/irs-forms/p525.pdf differ diff --git a/documents/pdf/irs-forms/p526.pdf b/documents/pdf/irs-forms/p526.pdf new file mode 100644 index 0000000..3a0e197 Binary files /dev/null and b/documents/pdf/irs-forms/p526.pdf differ diff --git a/documents/pdf/irs-forms/p527.pdf b/documents/pdf/irs-forms/p527.pdf new file mode 100644 index 0000000..bc74b4c Binary files /dev/null and b/documents/pdf/irs-forms/p527.pdf differ diff --git a/documents/pdf/irs-forms/p529.pdf b/documents/pdf/irs-forms/p529.pdf new file mode 100644 index 0000000..3afef00 Binary files /dev/null and b/documents/pdf/irs-forms/p529.pdf differ diff --git a/documents/pdf/irs-forms/p530.pdf b/documents/pdf/irs-forms/p530.pdf new file mode 100644 index 0000000..57d9470 Binary files /dev/null and b/documents/pdf/irs-forms/p530.pdf differ diff --git a/documents/pdf/irs-forms/p541.pdf b/documents/pdf/irs-forms/p541.pdf new file mode 100644 index 0000000..0fcd8cb Binary files /dev/null and b/documents/pdf/irs-forms/p541.pdf differ diff --git a/documents/pdf/irs-forms/p544.pdf b/documents/pdf/irs-forms/p544.pdf new file mode 100644 index 0000000..85f2d0e Binary files /dev/null and b/documents/pdf/irs-forms/p544.pdf differ diff --git a/documents/pdf/irs-forms/p547.pdf b/documents/pdf/irs-forms/p547.pdf new file mode 100644 index 0000000..f7300a2 Binary files /dev/null and b/documents/pdf/irs-forms/p547.pdf differ diff --git a/documents/pdf/irs-forms/p550.pdf b/documents/pdf/irs-forms/p550.pdf new file mode 100644 index 0000000..ed18935 Binary files /dev/null and b/documents/pdf/irs-forms/p550.pdf differ diff --git a/documents/pdf/irs-forms/p551.pdf b/documents/pdf/irs-forms/p551.pdf new file mode 100644 index 0000000..7bbadc0 Binary files /dev/null and b/documents/pdf/irs-forms/p551.pdf differ diff --git a/documents/pdf/irs-forms/p554.pdf b/documents/pdf/irs-forms/p554.pdf new file mode 100644 index 0000000..4758986 Binary files /dev/null and b/documents/pdf/irs-forms/p554.pdf differ diff --git a/documents/pdf/irs-forms/p555.pdf b/documents/pdf/irs-forms/p555.pdf new file mode 100644 index 0000000..33c18a3 Binary files /dev/null and b/documents/pdf/irs-forms/p555.pdf differ diff --git a/documents/pdf/irs-forms/p559.pdf b/documents/pdf/irs-forms/p559.pdf new file mode 100644 index 0000000..d798d6b Binary files /dev/null and b/documents/pdf/irs-forms/p559.pdf differ diff --git a/documents/pdf/irs-forms/p560.pdf b/documents/pdf/irs-forms/p560.pdf new file mode 100644 index 0000000..414e17a Binary files /dev/null and b/documents/pdf/irs-forms/p560.pdf differ diff --git a/documents/pdf/irs-forms/p570.pdf b/documents/pdf/irs-forms/p570.pdf new file mode 100644 index 0000000..61b6bed Binary files /dev/null and b/documents/pdf/irs-forms/p570.pdf differ diff --git a/documents/pdf/irs-forms/p575.pdf b/documents/pdf/irs-forms/p575.pdf new file mode 100644 index 0000000..ff04b9c Binary files /dev/null and b/documents/pdf/irs-forms/p575.pdf differ diff --git a/documents/pdf/irs-forms/p587.pdf b/documents/pdf/irs-forms/p587.pdf new file mode 100644 index 0000000..c62bf15 Binary files /dev/null and b/documents/pdf/irs-forms/p587.pdf differ diff --git a/documents/pdf/irs-forms/p590a.pdf b/documents/pdf/irs-forms/p590a.pdf new file mode 100644 index 0000000..12aa159 Binary files /dev/null and b/documents/pdf/irs-forms/p590a.pdf differ diff --git a/documents/pdf/irs-forms/p590b.pdf b/documents/pdf/irs-forms/p590b.pdf new file mode 100644 index 0000000..72d7a3e Binary files /dev/null and b/documents/pdf/irs-forms/p590b.pdf differ diff --git a/documents/pdf/irs-forms/p596.pdf b/documents/pdf/irs-forms/p596.pdf new file mode 100644 index 0000000..6ec634c Binary files /dev/null and b/documents/pdf/irs-forms/p596.pdf differ diff --git a/documents/pdf/irs-forms/p915.pdf b/documents/pdf/irs-forms/p915.pdf new file mode 100644 index 0000000..6998b34 Binary files /dev/null and b/documents/pdf/irs-forms/p915.pdf differ diff --git a/documents/pdf/irs-forms/p946.pdf b/documents/pdf/irs-forms/p946.pdf new file mode 100644 index 0000000..6c486b3 Binary files /dev/null and b/documents/pdf/irs-forms/p946.pdf differ diff --git a/documents/pdf/irs-forms/p969.pdf b/documents/pdf/irs-forms/p969.pdf new file mode 100644 index 0000000..533ed74 Binary files /dev/null and b/documents/pdf/irs-forms/p969.pdf differ diff --git a/documents/pdf/irs-forms/p970.pdf b/documents/pdf/irs-forms/p970.pdf new file mode 100644 index 0000000..6fe4706 Binary files /dev/null and b/documents/pdf/irs-forms/p970.pdf differ diff --git a/documents/pdf/irs-forms/p972.pdf b/documents/pdf/irs-forms/p972.pdf new file mode 100644 index 0000000..19a32fa Binary files /dev/null and b/documents/pdf/irs-forms/p972.pdf differ diff --git a/documents/pdf/nasa-ntrs/a-closed-form-solution-for-noise-contours-nasa-technical-paper-1432-scientific-and-technical-information-branch-n.pdf b/documents/pdf/nasa-ntrs/a-closed-form-solution-for-noise-contours-nasa-technical-paper-1432-scientific-and-technical-information-branch-n.pdf new file mode 100644 index 0000000..0fa2a53 Binary files /dev/null and b/documents/pdf/nasa-ntrs/a-closed-form-solution-for-noise-contours-nasa-technical-paper-1432-scientific-and-technical-information-branch-n.pdf differ diff --git a/documents/pdf/nasa-ntrs/a-design-procedure-for-a-tension-wire-stiffened-truss-column-nasa-contractor-report-3273-scientific-and-technical.pdf b/documents/pdf/nasa-ntrs/a-design-procedure-for-a-tension-wire-stiffened-truss-column-nasa-contractor-report-3273-scientific-and-technical.pdf new file mode 100644 index 0000000..8fcd11f Binary files /dev/null and b/documents/pdf/nasa-ntrs/a-design-procedure-for-a-tension-wire-stiffened-truss-column-nasa-contractor-report-3273-scientific-and-technical.pdf differ diff --git a/documents/pdf/nasa-ntrs/a-marching-method-for-calculating-line-and-continuum-radiation-in-high-energy-flow-fields-nasa-contractor-report-3046.pdf b/documents/pdf/nasa-ntrs/a-marching-method-for-calculating-line-and-continuum-radiation-in-high-energy-flow-fields-nasa-contractor-report-3046.pdf new file mode 100644 index 0000000..b8106fc Binary files /dev/null and b/documents/pdf/nasa-ntrs/a-marching-method-for-calculating-line-and-continuum-radiation-in-high-energy-flow-fields-nasa-contractor-report-3046.pdf differ diff --git a/documents/pdf/nasa-ntrs/a-microprocessor-based-table-lookup-approach-for-magnetic-bearing-linearization-nasa-technical-paper-1838-national.pdf b/documents/pdf/nasa-ntrs/a-microprocessor-based-table-lookup-approach-for-magnetic-bearing-linearization-nasa-technical-paper-1838-national.pdf new file mode 100644 index 0000000..12e2d33 Binary files /dev/null and b/documents/pdf/nasa-ntrs/a-microprocessor-based-table-lookup-approach-for-magnetic-bearing-linearization-nasa-technical-paper-1838-national.pdf differ diff --git a/documents/pdf/nasa-ntrs/a-new-look-at-numerical-analyses-of-free-edge-stresses-in-composite-laminates-nasa-technical-paper-1751-scientific.pdf b/documents/pdf/nasa-ntrs/a-new-look-at-numerical-analyses-of-free-edge-stresses-in-composite-laminates-nasa-technical-paper-1751-scientific.pdf new file mode 100644 index 0000000..6fb04d4 Binary files /dev/null and b/documents/pdf/nasa-ntrs/a-new-look-at-numerical-analyses-of-free-edge-stresses-in-composite-laminates-nasa-technical-paper-1751-scientific.pdf differ diff --git a/documents/pdf/nasa-ntrs/a-scanning-laser-velocimeter-technique-for-measuring-two-dimensional-wake-vortex-velocity-distributions-nasa-technica.pdf b/documents/pdf/nasa-ntrs/a-scanning-laser-velocimeter-technique-for-measuring-two-dimensional-wake-vortex-velocity-distributions-nasa-technica.pdf new file mode 100644 index 0000000..5a7015f Binary files /dev/null and b/documents/pdf/nasa-ntrs/a-scanning-laser-velocimeter-technique-for-measuring-two-dimensional-wake-vortex-velocity-distributions-nasa-technica.pdf differ diff --git a/documents/pdf/nasa-ntrs/advanced-stability-theory-analyses-for-laminar-flow-control-nasa-contractor-report-3233-scientific-and-technical-i.pdf b/documents/pdf/nasa-ntrs/advanced-stability-theory-analyses-for-laminar-flow-control-nasa-contractor-report-3233-scientific-and-technical-i.pdf new file mode 100644 index 0000000..8ca4acc Binary files /dev/null and b/documents/pdf/nasa-ntrs/advanced-stability-theory-analyses-for-laminar-flow-control-nasa-contractor-report-3233-scientific-and-technical-i.pdf differ diff --git a/documents/pdf/nasa-ntrs/airframe-noise-of-a-small-model-transport-aircraft-and-scaling-effects-nasa-technical-paper-1858-national-aeronaut.pdf b/documents/pdf/nasa-ntrs/airframe-noise-of-a-small-model-transport-aircraft-and-scaling-effects-nasa-technical-paper-1858-national-aeronaut.pdf new file mode 100644 index 0000000..1c18cb8 Binary files /dev/null and b/documents/pdf/nasa-ntrs/airframe-noise-of-a-small-model-transport-aircraft-and-scaling-effects-nasa-technical-paper-1858-national-aeronaut.pdf differ diff --git a/documents/pdf/nasa-ntrs/cognitive-issues-in-head-up-displays-nasa-technical-paper-1711-scientific-and-technical-information-branch-nasa.pdf b/documents/pdf/nasa-ntrs/cognitive-issues-in-head-up-displays-nasa-technical-paper-1711-scientific-and-technical-information-branch-nasa.pdf new file mode 100644 index 0000000..fcc5325 Binary files /dev/null and b/documents/pdf/nasa-ntrs/cognitive-issues-in-head-up-displays-nasa-technical-paper-1711-scientific-and-technical-information-branch-nasa.pdf differ diff --git a/documents/pdf/nasa-ntrs/comparative-performance-of-hgcdte-photodiodes-for-heterodyne-application-nasa-technical-paper-1745-scientific-and.pdf b/documents/pdf/nasa-ntrs/comparative-performance-of-hgcdte-photodiodes-for-heterodyne-application-nasa-technical-paper-1745-scientific-and.pdf new file mode 100644 index 0000000..134c2c2 Binary files /dev/null and b/documents/pdf/nasa-ntrs/comparative-performance-of-hgcdte-photodiodes-for-heterodyne-application-nasa-technical-paper-1745-scientific-and.pdf differ diff --git a/documents/pdf/nasa-ntrs/comparison-of-predicted-and-measured-elastohydrodynamic-film-thinkness-in-a-20-millimeter-bore-ball-bearing-nasa-tech.pdf b/documents/pdf/nasa-ntrs/comparison-of-predicted-and-measured-elastohydrodynamic-film-thinkness-in-a-20-millimeter-bore-ball-bearing-nasa-tech.pdf new file mode 100644 index 0000000..cb65d6e Binary files /dev/null and b/documents/pdf/nasa-ntrs/comparison-of-predicted-and-measured-elastohydrodynamic-film-thinkness-in-a-20-millimeter-bore-ball-bearing-nasa-tech.pdf differ diff --git a/documents/pdf/nasa-ntrs/effect-of-cage-design-on-characteristics-of-high-speed-jet-lubricated-35-millimeter-bore-ball-bearing-nasa-technical.pdf b/documents/pdf/nasa-ntrs/effect-of-cage-design-on-characteristics-of-high-speed-jet-lubricated-35-millimeter-bore-ball-bearing-nasa-technical.pdf new file mode 100644 index 0000000..bbeb399 Binary files /dev/null and b/documents/pdf/nasa-ntrs/effect-of-cage-design-on-characteristics-of-high-speed-jet-lubricated-35-millimeter-bore-ball-bearing-nasa-technical.pdf differ diff --git a/documents/pdf/nasa-ntrs/effects-of-primary-rotor-parameters-on-flapping-dynamics-nasa-technical-paper-1431-scientific-and-technical-inform.pdf b/documents/pdf/nasa-ntrs/effects-of-primary-rotor-parameters-on-flapping-dynamics-nasa-technical-paper-1431-scientific-and-technical-inform.pdf new file mode 100644 index 0000000..fc37611 Binary files /dev/null and b/documents/pdf/nasa-ntrs/effects-of-primary-rotor-parameters-on-flapping-dynamics-nasa-technical-paper-1431-scientific-and-technical-inform.pdf differ diff --git a/documents/pdf/nasa-ntrs/evaluation-of-a-bulk-calorimeter-and-heat-balance-for-determination-of-supersonic-combustor-efficiency-nasa-technical-p.pdf b/documents/pdf/nasa-ntrs/evaluation-of-a-bulk-calorimeter-and-heat-balance-for-determination-of-supersonic-combustor-efficiency-nasa-technical-p.pdf new file mode 100644 index 0000000..f5af971 Binary files /dev/null and b/documents/pdf/nasa-ntrs/evaluation-of-a-bulk-calorimeter-and-heat-balance-for-determination-of-supersonic-combustor-efficiency-nasa-technical-p.pdf differ diff --git a/documents/pdf/nasa-ntrs/evaluation-of-a-vortex-model-of-turbulent-cavity-flow-nasa-technical-paper-1505-scientific-and-technical-informati.pdf b/documents/pdf/nasa-ntrs/evaluation-of-a-vortex-model-of-turbulent-cavity-flow-nasa-technical-paper-1505-scientific-and-technical-informati.pdf new file mode 100644 index 0000000..1edb057 Binary files /dev/null and b/documents/pdf/nasa-ntrs/evaluation-of-a-vortex-model-of-turbulent-cavity-flow-nasa-technical-paper-1505-scientific-and-technical-informati.pdf differ diff --git a/documents/pdf/nasa-ntrs/experimental-evaluation-of-a-spinning-mode-acoustic-treatment-design-concept-for-aircraft-inlets-nasa-technical-paper.pdf b/documents/pdf/nasa-ntrs/experimental-evaluation-of-a-spinning-mode-acoustic-treatment-design-concept-for-aircraft-inlets-nasa-technical-paper.pdf new file mode 100644 index 0000000..7f73b02 Binary files /dev/null and b/documents/pdf/nasa-ntrs/experimental-evaluation-of-a-spinning-mode-acoustic-treatment-design-concept-for-aircraft-inlets-nasa-technical-paper.pdf differ diff --git a/documents/pdf/nasa-ntrs/friction-and-wear-of-iron-base-binary-alloys-in-sliding-contact-with-silicon-carbide-in-vacuum-nasa-technical-paper-1.pdf b/documents/pdf/nasa-ntrs/friction-and-wear-of-iron-base-binary-alloys-in-sliding-contact-with-silicon-carbide-in-vacuum-nasa-technical-paper-1.pdf new file mode 100644 index 0000000..885faeb Binary files /dev/null and b/documents/pdf/nasa-ntrs/friction-and-wear-of-iron-base-binary-alloys-in-sliding-contact-with-silicon-carbide-in-vacuum-nasa-technical-paper-1.pdf differ diff --git a/documents/pdf/nasa-ntrs/inclusion-of-unsteady-aerodynamics-in-longitudinal-parameter-estimation-from-flight-data-nasa-technical-paper-1536.pdf b/documents/pdf/nasa-ntrs/inclusion-of-unsteady-aerodynamics-in-longitudinal-parameter-estimation-from-flight-data-nasa-technical-paper-1536.pdf new file mode 100644 index 0000000..3110c93 Binary files /dev/null and b/documents/pdf/nasa-ntrs/inclusion-of-unsteady-aerodynamics-in-longitudinal-parameter-estimation-from-flight-data-nasa-technical-paper-1536.pdf differ diff --git a/documents/pdf/nasa-ntrs/influence-of-coolant-tube-curvature-on-film-cooling-effectiveness-as-detected-by-infrared-imagery-nasa-technical-pape.pdf b/documents/pdf/nasa-ntrs/influence-of-coolant-tube-curvature-on-film-cooling-effectiveness-as-detected-by-infrared-imagery-nasa-technical-pape.pdf new file mode 100644 index 0000000..2f5be12 Binary files /dev/null and b/documents/pdf/nasa-ntrs/influence-of-coolant-tube-curvature-on-film-cooling-effectiveness-as-detected-by-infrared-imagery-nasa-technical-pape.pdf differ diff --git a/documents/pdf/nasa-ntrs/integrated-application-of-active-controls-iaac-technology-to-an-advanced-subsonic-transport-project-plan-nasa-contr.pdf b/documents/pdf/nasa-ntrs/integrated-application-of-active-controls-iaac-technology-to-an-advanced-subsonic-transport-project-plan-nasa-contr.pdf new file mode 100644 index 0000000..082cc16 Binary files /dev/null and b/documents/pdf/nasa-ntrs/integrated-application-of-active-controls-iaac-technology-to-an-advanced-subsonic-transport-project-plan-nasa-contr.pdf differ diff --git a/documents/pdf/nasa-ntrs/modular-instrumentation-system-for-real-time-measurements-and-control-on-reciprocating-engines-nasa-technical-paper-1.pdf b/documents/pdf/nasa-ntrs/modular-instrumentation-system-for-real-time-measurements-and-control-on-reciprocating-engines-nasa-technical-paper-1.pdf new file mode 100644 index 0000000..5f1124d Binary files /dev/null and b/documents/pdf/nasa-ntrs/modular-instrumentation-system-for-real-time-measurements-and-control-on-reciprocating-engines-nasa-technical-paper-1.pdf differ diff --git a/documents/pdf/nasa-ntrs/moisture-determination-in-composite-materials-using-positron-lifetime-technique-nasa-technical-paper-1681-scientif.pdf b/documents/pdf/nasa-ntrs/moisture-determination-in-composite-materials-using-positron-lifetime-technique-nasa-technical-paper-1681-scientif.pdf new file mode 100644 index 0000000..9eea552 Binary files /dev/null and b/documents/pdf/nasa-ntrs/moisture-determination-in-composite-materials-using-positron-lifetime-technique-nasa-technical-paper-1681-scientif.pdf differ diff --git a/documents/pdf/nasa-ntrs/multistage-depressed-collector-with-efficiency-of-90-to-94-percent-for-operation-of-a-dual-mode-traveling-wave-tube-in-t.pdf b/documents/pdf/nasa-ntrs/multistage-depressed-collector-with-efficiency-of-90-to-94-percent-for-operation-of-a-dual-mode-traveling-wave-tube-in-t.pdf new file mode 100644 index 0000000..138bfe5 Binary files /dev/null and b/documents/pdf/nasa-ntrs/multistage-depressed-collector-with-efficiency-of-90-to-94-percent-for-operation-of-a-dual-mode-traveling-wave-tube-in-t.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-contractor-report-2952-mapping-land-cover-from-satellite-images-a-basic-low-cost-approach-nasa-scientific.pdf b/documents/pdf/nasa-ntrs/nasa-contractor-report-2952-mapping-land-cover-from-satellite-images-a-basic-low-cost-approach-nasa-scientific.pdf new file mode 100644 index 0000000..fb41bae Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-contractor-report-2952-mapping-land-cover-from-satellite-images-a-basic-low-cost-approach-nasa-scientific.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-guidelines-on-report-literature-nasa-sp-7200-scientific-and-technical-information-branch-national-aeronautic.pdf b/documents/pdf/nasa-ntrs/nasa-guidelines-on-report-literature-nasa-sp-7200-scientific-and-technical-information-branch-national-aeronautic.pdf new file mode 100644 index 0000000..8c2e2d1 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-guidelines-on-report-literature-nasa-sp-7200-scientific-and-technical-information-branch-national-aeronautic.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-sp-1998-3300-flight-research-at-ames-fifty-seven-years-of-development-and-validation-of-aeronautical-technology.pdf b/documents/pdf/nasa-ntrs/nasa-sp-1998-3300-flight-research-at-ames-fifty-seven-years-of-development-and-validation-of-aeronautical-technology.pdf new file mode 100644 index 0000000..e399e24 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-sp-1998-3300-flight-research-at-ames-fifty-seven-years-of-development-and-validation-of-aeronautical-technology.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-sp-1998-7011-suppl480-aerospace-medicine-and-biology-a-continuing-bibliography-nasa-langley-research-center-1998.pdf b/documents/pdf/nasa-ntrs/nasa-sp-1998-7011-suppl480-aerospace-medicine-and-biology-a-continuing-bibliography-nasa-langley-research-center-1998.pdf new file mode 100644 index 0000000..7f2cc3f Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-sp-1998-7011-suppl480-aerospace-medicine-and-biology-a-continuing-bibliography-nasa-langley-research-center-1998.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-sp-1998-7011-suppl482-aerospace-medicine-and-biology-a-continuing-bibliography-nasa-langley-research-center-1999.pdf b/documents/pdf/nasa-ntrs/nasa-sp-1998-7011-suppl482-aerospace-medicine-and-biology-a-continuing-bibliography-nasa-langley-research-center-1999.pdf new file mode 100644 index 0000000..e8b623e Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-sp-1998-7011-suppl482-aerospace-medicine-and-biology-a-continuing-bibliography-nasa-langley-research-center-1999.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-sp-1998-7011-suppl495-aerospace-medicine-and-biology-a-continuing-bibliography-nasa-langley-research-center-1999.pdf b/documents/pdf/nasa-ntrs/nasa-sp-1998-7011-suppl495-aerospace-medicine-and-biology-a-continuing-bibliography-nasa-langley-research-center-1999.pdf new file mode 100644 index 0000000..e4eec3b Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-sp-1998-7011-suppl495-aerospace-medicine-and-biology-a-continuing-bibliography-nasa-langley-research-center-1999.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-sp-1998-7501-suppl3-nasa-thesaurus-supplement-nasa-langley-research-center-19990701-21p.pdf b/documents/pdf/nasa-ntrs/nasa-sp-1998-7501-suppl3-nasa-thesaurus-supplement-nasa-langley-research-center-19990701-21p.pdf new file mode 100644 index 0000000..e5b8428 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-sp-1998-7501-suppl3-nasa-thesaurus-supplement-nasa-langley-research-center-19990701-21p.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-sp-1999-7602-nasa-publication-guide-for-authors-nasa-langley-research-center-19991101-43p.pdf b/documents/pdf/nasa-ntrs/nasa-sp-1999-7602-nasa-publication-guide-for-authors-nasa-langley-research-center-19991101-43p.pdf new file mode 100644 index 0000000..d58affc Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-sp-1999-7602-nasa-publication-guide-for-authors-nasa-langley-research-center-19991101-43p.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-sp-7107-nasa-aerospace-database-sunject-scope-view-nasa-28p.pdf b/documents/pdf/nasa-ntrs/nasa-sp-7107-nasa-aerospace-database-sunject-scope-view-nasa-28p.pdf new file mode 100644 index 0000000..fed1a45 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-sp-7107-nasa-aerospace-database-sunject-scope-view-nasa-28p.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-std-2011-91-nasa-software-documentation-standard.pdf b/documents/pdf/nasa-ntrs/nasa-std-2011-91-nasa-software-documentation-standard.pdf new file mode 100644 index 0000000..6dcc616 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-std-2011-91-nasa-software-documentation-standard.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-note-d-8417-minimum-mass-design-of-filamentary-composite-panels-under-combined-loads-design-procedure.pdf b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8417-minimum-mass-design-of-filamentary-composite-panels-under-combined-loads-design-procedure.pdf new file mode 100644 index 0000000..b418dc1 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8417-minimum-mass-design-of-filamentary-composite-panels-under-combined-loads-design-procedure.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-note-d-8425-aileron-roll-hysteresis-effects-on-entry-of-space-shuttle-orbiter-nasa-july-1977.pdf b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8425-aileron-roll-hysteresis-effects-on-entry-of-space-shuttle-orbiter-nasa-july-1977.pdf new file mode 100644 index 0000000..91d5e7a Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8425-aileron-roll-hysteresis-effects-on-entry-of-space-shuttle-orbiter-nasa-july-1977.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-note-d-8433-experimental-design-studies-and-flow-visualization-of-proportional-laminar-flow-fluidic-am.pdf b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8433-experimental-design-studies-and-flow-visualization-of-proportional-laminar-flow-fluidic-am.pdf new file mode 100644 index 0000000..dddf9d1 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8433-experimental-design-studies-and-flow-visualization-of-proportional-laminar-flow-fluidic-am.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-note-d-8437-load-and-stability-measurements-on-a-soft-inplane-rotor-system-incorporating-elastomeric-l.pdf b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8437-load-and-stability-measurements-on-a-soft-inplane-rotor-system-incorporating-elastomeric-l.pdf new file mode 100644 index 0000000..4329bd7 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8437-load-and-stability-measurements-on-a-soft-inplane-rotor-system-incorporating-elastomeric-l.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-note-d-8443-measurements-of-surface-pressure-and-wake-flow-fluctuations-in-the-flow-field-of-a-whitcom.pdf b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8443-measurements-of-surface-pressure-and-wake-flow-fluctuations-in-the-flow-field-of-a-whitcom.pdf new file mode 100644 index 0000000..512ee7e Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8443-measurements-of-surface-pressure-and-wake-flow-fluctuations-in-the-flow-field-of-a-whitcom.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-note-d-8453-opportunities-for-ballistic-missions-to-halley-s-comet-nasa-august-1977.pdf b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8453-opportunities-for-ballistic-missions-to-halley-s-comet-nasa-august-1977.pdf new file mode 100644 index 0000000..f553f2c Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8453-opportunities-for-ballistic-missions-to-halley-s-comet-nasa-august-1977.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-note-d-8480-flight-investigation-of-a-vertical-velocity-command-system-for-vtol-aircraft-nasa-ju.pdf b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8480-flight-investigation-of-a-vertical-velocity-command-system-for-vtol-aircraft-nasa-ju.pdf new file mode 100644 index 0000000..6e86c5b Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8480-flight-investigation-of-a-vertical-velocity-command-system-for-vtol-aircraft-nasa-ju.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-note-d-8481-comparison-of-vgh-data-from-wide-body-and-narrow-body-long-haul-turbine-powered-transports.pdf b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8481-comparison-of-vgh-data-from-wide-body-and-narrow-body-long-haul-turbine-powered-transports.pdf new file mode 100644 index 0000000..400bc5a Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8481-comparison-of-vgh-data-from-wide-body-and-narrow-body-long-haul-turbine-powered-transports.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-note-d-8482-x-ray-photoelectron-spectroscopy-study-of-radio-freq-sputtered-chromium-bromide-molybden.pdf b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8482-x-ray-photoelectron-spectroscopy-study-of-radio-freq-sputtered-chromium-bromide-molybden.pdf new file mode 100644 index 0000000..e63595c Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8482-x-ray-photoelectron-spectroscopy-study-of-radio-freq-sputtered-chromium-bromide-molybden.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-note-d-8490-experimental-performance-of-an-ablative-material-as-an-external-insulator-for-a-hypersonic.pdf b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8490-experimental-performance-of-an-ablative-material-as-an-external-insulator-for-a-hypersonic.pdf new file mode 100644 index 0000000..062a0a5 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8490-experimental-performance-of-an-ablative-material-as-an-external-insulator-for-a-hypersonic.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-note-d-8496-a-theoretical-analysis-of-airplane-longitudinal-stability-and-control-as-affected-by-wind.pdf b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8496-a-theoretical-analysis-of-airplane-longitudinal-stability-and-control-as-affected-by-wind.pdf new file mode 100644 index 0000000..d581543 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8496-a-theoretical-analysis-of-airplane-longitudinal-stability-and-control-as-affected-by-wind.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-note-d-8498-implantable-acoustic-beacon-automatic-fish-tracking-system-nasa-september-1977.pdf b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8498-implantable-acoustic-beacon-automatic-fish-tracking-system-nasa-september-1977.pdf new file mode 100644 index 0000000..a171ef2 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8498-implantable-acoustic-beacon-automatic-fish-tracking-system-nasa-september-1977.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-note-d-8499-real-time-manned-simulation-of-advanced-terminal-area-guidance-concepts-for-short-haul-ope.pdf b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8499-real-time-manned-simulation-of-advanced-terminal-area-guidance-concepts-for-short-haul-ope.pdf new file mode 100644 index 0000000..6948fde Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8499-real-time-manned-simulation-of-advanced-terminal-area-guidance-concepts-for-short-haul-ope.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-note-d-8500-results-of-analyses-performed-on-soil-adjacent-to-penetrators-emplaced-into-sediments-at-m.pdf b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8500-results-of-analyses-performed-on-soil-adjacent-to-penetrators-emplaced-into-sediments-at-m.pdf new file mode 100644 index 0000000..7e054d3 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8500-results-of-analyses-performed-on-soil-adjacent-to-penetrators-emplaced-into-sediments-at-m.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-note-d-8506-downstream-influence-of-swept-slot-injection-in-hypersonic-turbulent-flow-nasa-august.pdf b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8506-downstream-influence-of-swept-slot-injection-in-hypersonic-turbulent-flow-nasa-august.pdf new file mode 100644 index 0000000..f74411c Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8506-downstream-influence-of-swept-slot-injection-in-hypersonic-turbulent-flow-nasa-august.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-note-d-8510-an-investigation-of-a-close-coupled-canard-as-a-direct-side-force-generator-on-a-fighter-m.pdf b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8510-an-investigation-of-a-close-coupled-canard-as-a-direct-side-force-generator-on-a-fighter-m.pdf new file mode 100644 index 0000000..40828da Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8510-an-investigation-of-a-close-coupled-canard-as-a-direct-side-force-generator-on-a-fighter-m.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-note-d-8513-on-the-logarithmic-singularity-correction-in-the-kernel-function-method-of-subsonic-lifti.pdf b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8513-on-the-logarithmic-singularity-correction-in-the-kernel-function-method-of-subsonic-lifti.pdf new file mode 100644 index 0000000..aaf8709 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8513-on-the-logarithmic-singularity-correction-in-the-kernel-function-method-of-subsonic-lifti.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-note-d-8517-studies-of-friction-and-wear-characteristics-of-various-wires-for-wire-brush-skids-nasa.pdf b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8517-studies-of-friction-and-wear-characteristics-of-various-wires-for-wire-brush-skids-nasa.pdf new file mode 100644 index 0000000..f7e4d80 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8517-studies-of-friction-and-wear-characteristics-of-various-wires-for-wire-brush-skids-nasa.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-note-d-8521-a-comparison-of-the-results-of-dynamic-wind-tunnel-tests-with-theoretical-predictions-for.pdf b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8521-a-comparison-of-the-results-of-dynamic-wind-tunnel-tests-with-theoretical-predictions-for.pdf new file mode 100644 index 0000000..c7bac97 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8521-a-comparison-of-the-results-of-dynamic-wind-tunnel-tests-with-theoretical-predictions-for.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-note-d-8525-an-optimality-criterion-for-sizing-members-of-heated-structures-with-temperature-constrain.pdf b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8525-an-optimality-criterion-for-sizing-members-of-heated-structures-with-temperature-constrain.pdf new file mode 100644 index 0000000..6e9f69b Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8525-an-optimality-criterion-for-sizing-members-of-heated-structures-with-temperature-constrain.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-note-d-8528-elastohydrodynamic-lubrication-of-elliptical-contacts-for-materials-of-low-elastic-modulus.pdf b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8528-elastohydrodynamic-lubrication-of-elliptical-contacts-for-materials-of-low-elastic-modulus.pdf new file mode 100644 index 0000000..d9eefbf Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-note-d-8528-elastohydrodynamic-lubrication-of-elliptical-contacts-for-materials-of-low-elastic-modulus.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-paper-1045-parametric-study-of-ascent-performance-of-a-vertically-launched-hydrogen-fueled-single-stag.pdf b/documents/pdf/nasa-ntrs/nasa-technical-paper-1045-parametric-study-of-ascent-performance-of-a-vertically-launched-hydrogen-fueled-single-stag.pdf new file mode 100644 index 0000000..035337c Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-paper-1045-parametric-study-of-ascent-performance-of-a-vertically-launched-hydrogen-fueled-single-stag.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-paper-1054-effect-of-fin-passage-length-on-optimization-of-cylinder-head-cooling-fins-nasa-septe.pdf b/documents/pdf/nasa-ntrs/nasa-technical-paper-1054-effect-of-fin-passage-length-on-optimization-of-cylinder-head-cooling-fins-nasa-septe.pdf new file mode 100644 index 0000000..55ada56 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-paper-1054-effect-of-fin-passage-length-on-optimization-of-cylinder-head-cooling-fins-nasa-septe.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-paper-1079-effect-of-end-ring-stiffness-on-buckling-of-pressure-loaded-stiffened-conical-shells-nas.pdf b/documents/pdf/nasa-ntrs/nasa-technical-paper-1079-effect-of-end-ring-stiffness-on-buckling-of-pressure-loaded-stiffened-conical-shells-nas.pdf new file mode 100644 index 0000000..31d9aea Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-paper-1079-effect-of-end-ring-stiffness-on-buckling-of-pressure-loaded-stiffened-conical-shells-nas.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-paper-1093-effect-of-trichlorofluoromethane-and-molecular-chlorine-on-ozone-formation-by-simulated-sol.pdf b/documents/pdf/nasa-ntrs/nasa-technical-paper-1093-effect-of-trichlorofluoromethane-and-molecular-chlorine-on-ozone-formation-by-simulated-sol.pdf new file mode 100644 index 0000000..cbf4119 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-paper-1093-effect-of-trichlorofluoromethane-and-molecular-chlorine-on-ozone-formation-by-simulated-sol.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-paper-1191-friction-and-metal-transfer-for-single-crystal-silicon-carbide-in-contact-with-various-meta.pdf b/documents/pdf/nasa-ntrs/nasa-technical-paper-1191-friction-and-metal-transfer-for-single-crystal-silicon-carbide-in-contact-with-various-meta.pdf new file mode 100644 index 0000000..fa7eaf1 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-paper-1191-friction-and-metal-transfer-for-single-crystal-silicon-carbide-in-contact-with-various-meta.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-paper-1199-simulated-flight-effects-on-noise-characteristics-of-a-fan-inlet-with-high-throat-mach-numb.pdf b/documents/pdf/nasa-ntrs/nasa-technical-paper-1199-simulated-flight-effects-on-noise-characteristics-of-a-fan-inlet-with-high-throat-mach-numb.pdf new file mode 100644 index 0000000..0edcd60 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-paper-1199-simulated-flight-effects-on-noise-characteristics-of-a-fan-inlet-with-high-throat-mach-numb.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-paper-1200-user-s-guide-for-sftran-1100-nasa-scientific-and-technical-information-office-april.pdf b/documents/pdf/nasa-ntrs/nasa-technical-paper-1200-user-s-guide-for-sftran-1100-nasa-scientific-and-technical-information-office-april.pdf new file mode 100644 index 0000000..7cf1d28 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-paper-1200-user-s-guide-for-sftran-1100-nasa-scientific-and-technical-information-office-april.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-paper-1205-theoretical-flow-characteristics-of-inlets-for-tilting-nacelle-vtol-aircraft-nasa-apr.pdf b/documents/pdf/nasa-ntrs/nasa-technical-paper-1205-theoretical-flow-characteristics-of-inlets-for-tilting-nacelle-vtol-aircraft-nasa-apr.pdf new file mode 100644 index 0000000..19c0c88 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-paper-1205-theoretical-flow-characteristics-of-inlets-for-tilting-nacelle-vtol-aircraft-nasa-apr.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-paper-1242-simulation-study-of-the-oscillatory-longitudinal-motion-of-an-airplane-at-the-stall-scie.pdf b/documents/pdf/nasa-ntrs/nasa-technical-paper-1242-simulation-study-of-the-oscillatory-longitudinal-motion-of-an-airplane-at-the-stall-scie.pdf new file mode 100644 index 0000000..70d0376 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-paper-1242-simulation-study-of-the-oscillatory-longitudinal-motion-of-an-airplane-at-the-stall-scie.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-paper-1246-pressureless-sintered-sialons-with-low-amounts-of-sintering-aid-national-aeronautics-and.pdf b/documents/pdf/nasa-ntrs/nasa-technical-paper-1246-pressureless-sintered-sialons-with-low-amounts-of-sintering-aid-national-aeronautics-and.pdf new file mode 100644 index 0000000..6c4cac4 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-paper-1246-pressureless-sintered-sialons-with-low-amounts-of-sintering-aid-national-aeronautics-and.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-paper-1262-morphology-of-gold-and-copper-ion-plated-coatings-national-aeronautics-and-space-adminis.pdf b/documents/pdf/nasa-ntrs/nasa-technical-paper-1262-morphology-of-gold-and-copper-ion-plated-coatings-national-aeronautics-and-space-adminis.pdf new file mode 100644 index 0000000..d530f90 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-paper-1262-morphology-of-gold-and-copper-ion-plated-coatings-national-aeronautics-and-space-adminis.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-paper-1267-application-of-special-purpose-digital-computers-to-rotorcraft-real-time-simulation-scie.pdf b/documents/pdf/nasa-ntrs/nasa-technical-paper-1267-application-of-special-purpose-digital-computers-to-rotorcraft-real-time-simulation-scie.pdf new file mode 100644 index 0000000..0444680 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-paper-1267-application-of-special-purpose-digital-computers-to-rotorcraft-real-time-simulation-scie.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-paper-1270-estimation-of-leading-edge-thrust-for-supersonic-wings-of-arbitrary-planform-scientific.pdf b/documents/pdf/nasa-ntrs/nasa-technical-paper-1270-estimation-of-leading-edge-thrust-for-supersonic-wings-of-arbitrary-planform-scientific.pdf new file mode 100644 index 0000000..1048b27 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-paper-1270-estimation-of-leading-edge-thrust-for-supersonic-wings-of-arbitrary-planform-scientific.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-paper-1273-elastohydrodynamic-lubrication-of-elliptical-contacts-for-materials-of-low-elastic-modulus.pdf b/documents/pdf/nasa-ntrs/nasa-technical-paper-1273-elastohydrodynamic-lubrication-of-elliptical-contacts-for-materials-of-low-elastic-modulus.pdf new file mode 100644 index 0000000..11784f1 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-paper-1273-elastohydrodynamic-lubrication-of-elliptical-contacts-for-materials-of-low-elastic-modulus.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-paper-1283-effect-of-vibration-duration-on-human-discomfort-scientific-and-technical-information-of.pdf b/documents/pdf/nasa-ntrs/nasa-technical-paper-1283-effect-of-vibration-duration-on-human-discomfort-scientific-and-technical-information-of.pdf new file mode 100644 index 0000000..7f0407d Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-paper-1283-effect-of-vibration-duration-on-human-discomfort-scientific-and-technical-information-of.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-paper-1319-experimental-evaluation-of-a-pilot-multinozzle-duct-apparatus-scientific-and-technical-i.pdf b/documents/pdf/nasa-ntrs/nasa-technical-paper-1319-experimental-evaluation-of-a-pilot-multinozzle-duct-apparatus-scientific-and-technical-i.pdf new file mode 100644 index 0000000..7f3526e Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-paper-1319-experimental-evaluation-of-a-pilot-multinozzle-duct-apparatus-scientific-and-technical-i.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-paper-1339-anisotropic-friction-and-wear-of-single-crystal-manganese-zinc-ferrite-in-contact-with-itse.pdf b/documents/pdf/nasa-ntrs/nasa-technical-paper-1339-anisotropic-friction-and-wear-of-single-crystal-manganese-zinc-ferrite-in-contact-with-itse.pdf new file mode 100644 index 0000000..c2628b6 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-paper-1339-anisotropic-friction-and-wear-of-single-crystal-manganese-zinc-ferrite-in-contact-with-itse.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-paper-1349-geometric-relationships-for-homogenization-in-single-phase-binary-alloy-systems-scientif.pdf b/documents/pdf/nasa-ntrs/nasa-technical-paper-1349-geometric-relationships-for-homogenization-in-single-phase-binary-alloy-systems-scientif.pdf new file mode 100644 index 0000000..97f2139 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-paper-1349-geometric-relationships-for-homogenization-in-single-phase-binary-alloy-systems-scientif.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-paper-1412-computation-of-atmospheric-attenuation-of-sound-for-fractional-octave-bands-nasa-febr.pdf b/documents/pdf/nasa-ntrs/nasa-technical-paper-1412-computation-of-atmospheric-attenuation-of-sound-for-fractional-octave-bands-nasa-febr.pdf new file mode 100644 index 0000000..7fc1bf3 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-paper-1412-computation-of-atmospheric-attenuation-of-sound-for-fractional-octave-bands-nasa-febr.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-paper-1420-a-characterization-of-the-real-zeros-of-a-particular-transcendental-function-science-and.pdf b/documents/pdf/nasa-ntrs/nasa-technical-paper-1420-a-characterization-of-the-real-zeros-of-a-particular-transcendental-function-science-and.pdf new file mode 100644 index 0000000..48e484d Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-paper-1420-a-characterization-of-the-real-zeros-of-a-particular-transcendental-function-science-and.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-technical-paper-1550-flight-determined-stability-and-control-derivatives-for-the-f-111-tact-research-aircraft.pdf b/documents/pdf/nasa-ntrs/nasa-technical-paper-1550-flight-determined-stability-and-control-derivatives-for-the-f-111-tact-research-aircraft.pdf new file mode 100644 index 0000000..7c52199 Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-technical-paper-1550-flight-determined-stability-and-control-derivatives-for-the-f-111-tact-research-aircraft.pdf differ diff --git a/documents/pdf/nasa-ntrs/nasa-tehcnical-paper-1161-x-ray-photoelectron-spectroscopy-study-of-radiofrequency-sputtered-refractory-compound-st.pdf b/documents/pdf/nasa-ntrs/nasa-tehcnical-paper-1161-x-ray-photoelectron-spectroscopy-study-of-radiofrequency-sputtered-refractory-compound-st.pdf new file mode 100644 index 0000000..d6a34fa Binary files /dev/null and b/documents/pdf/nasa-ntrs/nasa-tehcnical-paper-1161-x-ray-photoelectron-spectroscopy-study-of-radiofrequency-sputtered-refractory-compound-st.pdf differ diff --git a/documents/pdf/nasa-ntrs/nonparellel-stability-of-three-dimensional-compressible-boundary-layers-part-i-stability-analysis-nasa-contractor-re.pdf b/documents/pdf/nasa-ntrs/nonparellel-stability-of-three-dimensional-compressible-boundary-layers-part-i-stability-analysis-nasa-contractor-re.pdf new file mode 100644 index 0000000..aa2972a Binary files /dev/null and b/documents/pdf/nasa-ntrs/nonparellel-stability-of-three-dimensional-compressible-boundary-layers-part-i-stability-analysis-nasa-contractor-re.pdf differ diff --git a/documents/pdf/nasa-ntrs/operating-characteristics-of-a-high-speed-jet-lubricated-35-millimeter-bore-ball-bearing-with-a-single-outer-land-guide.pdf b/documents/pdf/nasa-ntrs/operating-characteristics-of-a-high-speed-jet-lubricated-35-millimeter-bore-ball-bearing-with-a-single-outer-land-guide.pdf new file mode 100644 index 0000000..e2e6210 Binary files /dev/null and b/documents/pdf/nasa-ntrs/operating-characteristics-of-a-high-speed-jet-lubricated-35-millimeter-bore-ball-bearing-with-a-single-outer-land-guide.pdf differ diff --git a/documents/pdf/nasa-ntrs/research-announcement-planetary-instrument-definition-and-development-program-appendices-nra-95-oss-12-nasa.pdf b/documents/pdf/nasa-ntrs/research-announcement-planetary-instrument-definition-and-development-program-appendices-nra-95-oss-12-nasa.pdf new file mode 100644 index 0000000..f0474ac Binary files /dev/null and b/documents/pdf/nasa-ntrs/research-announcement-planetary-instrument-definition-and-development-program-appendices-nra-95-oss-12-nasa.pdf differ diff --git a/documents/pdf/nasa-ntrs/scanning-electron-microscope-study-of-normal-impingement-erosion-of-ductile-metals-nasa-technical-paper-1609-natio.pdf b/documents/pdf/nasa-ntrs/scanning-electron-microscope-study-of-normal-impingement-erosion-of-ductile-metals-nasa-technical-paper-1609-natio.pdf new file mode 100644 index 0000000..92cdefa Binary files /dev/null and b/documents/pdf/nasa-ntrs/scanning-electron-microscope-study-of-normal-impingement-erosion-of-ductile-metals-nasa-technical-paper-1609-natio.pdf differ diff --git a/documents/pdf/nasa-ntrs/spectral-properties-of-gaseous-uranium-hexafluoride-at-high-temperature-nasa-contractor-report-3244-national-aeron.pdf b/documents/pdf/nasa-ntrs/spectral-properties-of-gaseous-uranium-hexafluoride-at-high-temperature-nasa-contractor-report-3244-national-aeron.pdf new file mode 100644 index 0000000..758af12 Binary files /dev/null and b/documents/pdf/nasa-ntrs/spectral-properties-of-gaseous-uranium-hexafluoride-at-high-temperature-nasa-contractor-report-3244-national-aeron.pdf differ diff --git a/documents/pdf/nasa-ntrs/statistical-comparisons-of-aircraft-flyover-noise-adjustment-procedures-for-different-weather-conditions-nasa-technic.pdf b/documents/pdf/nasa-ntrs/statistical-comparisons-of-aircraft-flyover-noise-adjustment-procedures-for-different-weather-conditions-nasa-technic.pdf new file mode 100644 index 0000000..e239f75 Binary files /dev/null and b/documents/pdf/nasa-ntrs/statistical-comparisons-of-aircraft-flyover-noise-adjustment-procedures-for-different-weather-conditions-nasa-technic.pdf differ diff --git a/documents/pdf/nasa-ntrs/turbulent-flow-in-a-square-to-round-transition-nasa-contractor-report-3447-scientific-and-technical-information-br.pdf b/documents/pdf/nasa-ntrs/turbulent-flow-in-a-square-to-round-transition-nasa-contractor-report-3447-scientific-and-technical-information-br.pdf new file mode 100644 index 0000000..3720b24 Binary files /dev/null and b/documents/pdf/nasa-ntrs/turbulent-flow-in-a-square-to-round-transition-nasa-contractor-report-3447-scientific-and-technical-information-br.pdf differ diff --git a/documents/pdf/nasa-ntrs/use-of-constrained-optimization-in-the-conceptual-design-of-a-medium-range-subsonic-transport-nasa-technical-paper-17.pdf b/documents/pdf/nasa-ntrs/use-of-constrained-optimization-in-the-conceptual-design-of-a-medium-range-subsonic-transport-nasa-technical-paper-17.pdf new file mode 100644 index 0000000..d6532a6 Binary files /dev/null and b/documents/pdf/nasa-ntrs/use-of-constrained-optimization-in-the-conceptual-design-of-a-medium-range-subsonic-transport-nasa-technical-paper-17.pdf differ diff --git a/documents/pdf/nasa-ntrs/velocity-split-navier-stokes-solution-procedure-for-incompressible-high-reynolds-number-external-flows-nasa-technical.pdf b/documents/pdf/nasa-ntrs/velocity-split-navier-stokes-solution-procedure-for-incompressible-high-reynolds-number-external-flows-nasa-technical.pdf new file mode 100644 index 0000000..b084600 Binary files /dev/null and b/documents/pdf/nasa-ntrs/velocity-split-navier-stokes-solution-procedure-for-incompressible-high-reynolds-number-external-flows-nasa-technical.pdf differ diff --git a/documents/pdf/nasa-ntrs/zero-gravity-aerosol-behavior-nasa-contractor-report-3384-scientific-and-technical-information-branch-nasa-janua.pdf b/documents/pdf/nasa-ntrs/zero-gravity-aerosol-behavior-nasa-contractor-report-3384-scientific-and-technical-information-branch-nasa-janua.pdf new file mode 100644 index 0000000..07ae933 Binary files /dev/null and b/documents/pdf/nasa-ntrs/zero-gravity-aerosol-behavior-nasa-contractor-report-3384-scientific-and-technical-information-branch-nasa-janua.pdf differ diff --git a/documents/pdf/openstax/openstax-american-government-3e.pdf b/documents/pdf/openstax/openstax-american-government-3e.pdf new file mode 100644 index 0000000..95d5c78 Binary files /dev/null and b/documents/pdf/openstax/openstax-american-government-3e.pdf differ diff --git a/documents/pdf/openstax/openstax-anatomy-and-physiology-2e.pdf b/documents/pdf/openstax/openstax-anatomy-and-physiology-2e.pdf new file mode 100644 index 0000000..9d739fb Binary files /dev/null and b/documents/pdf/openstax/openstax-anatomy-and-physiology-2e.pdf differ diff --git a/documents/pdf/openstax/openstax-astronomy-2e.pdf b/documents/pdf/openstax/openstax-astronomy-2e.pdf new file mode 100644 index 0000000..4645258 Binary files /dev/null and b/documents/pdf/openstax/openstax-astronomy-2e.pdf differ diff --git a/documents/pdf/openstax/openstax-biology-2e.pdf b/documents/pdf/openstax/openstax-biology-2e.pdf new file mode 100644 index 0000000..7570e02 Binary files /dev/null and b/documents/pdf/openstax/openstax-biology-2e.pdf differ diff --git a/documents/pdf/openstax/openstax-business-ethics.pdf b/documents/pdf/openstax/openstax-business-ethics.pdf new file mode 100644 index 0000000..2c28ef8 Binary files /dev/null and b/documents/pdf/openstax/openstax-business-ethics.pdf differ diff --git a/documents/pdf/openstax/openstax-chemistry-2e.pdf b/documents/pdf/openstax/openstax-chemistry-2e.pdf new file mode 100644 index 0000000..248fc3c Binary files /dev/null and b/documents/pdf/openstax/openstax-chemistry-2e.pdf differ diff --git a/documents/pdf/openstax/openstax-college-algebra-2e.pdf b/documents/pdf/openstax/openstax-college-algebra-2e.pdf new file mode 100644 index 0000000..0b110e8 Binary files /dev/null and b/documents/pdf/openstax/openstax-college-algebra-2e.pdf differ diff --git a/documents/pdf/openstax/openstax-college-success-concise.pdf b/documents/pdf/openstax/openstax-college-success-concise.pdf new file mode 100644 index 0000000..1d618f2 Binary files /dev/null and b/documents/pdf/openstax/openstax-college-success-concise.pdf differ diff --git a/documents/pdf/openstax/openstax-entrepreneurship.pdf b/documents/pdf/openstax/openstax-entrepreneurship.pdf new file mode 100644 index 0000000..e7a283a Binary files /dev/null and b/documents/pdf/openstax/openstax-entrepreneurship.pdf differ diff --git a/documents/pdf/openstax/openstax-introduction-sociology-3e.pdf b/documents/pdf/openstax/openstax-introduction-sociology-3e.pdf new file mode 100644 index 0000000..772a0c0 Binary files /dev/null and b/documents/pdf/openstax/openstax-introduction-sociology-3e.pdf differ diff --git a/documents/pdf/openstax/openstax-introductory-business-statistics-2e.pdf b/documents/pdf/openstax/openstax-introductory-business-statistics-2e.pdf new file mode 100644 index 0000000..20d3062 Binary files /dev/null and b/documents/pdf/openstax/openstax-introductory-business-statistics-2e.pdf differ diff --git a/documents/pdf/openstax/openstax-introductory-statistics-2e.pdf b/documents/pdf/openstax/openstax-introductory-statistics-2e.pdf new file mode 100644 index 0000000..0df46f4 Binary files /dev/null and b/documents/pdf/openstax/openstax-introductory-statistics-2e.pdf differ diff --git a/documents/pdf/openstax/openstax-microbiology.pdf b/documents/pdf/openstax/openstax-microbiology.pdf new file mode 100644 index 0000000..bc3cfde Binary files /dev/null and b/documents/pdf/openstax/openstax-microbiology.pdf differ diff --git a/documents/pdf/openstax/openstax-precalculus-2e.pdf b/documents/pdf/openstax/openstax-precalculus-2e.pdf new file mode 100644 index 0000000..c7599e3 Binary files /dev/null and b/documents/pdf/openstax/openstax-precalculus-2e.pdf differ diff --git a/documents/pdf/openstax/openstax-principles-management.pdf b/documents/pdf/openstax/openstax-principles-management.pdf new file mode 100644 index 0000000..161d8f4 Binary files /dev/null and b/documents/pdf/openstax/openstax-principles-management.pdf differ diff --git a/documents/pdf/openstax/openstax-principles-marketing.pdf b/documents/pdf/openstax/openstax-principles-marketing.pdf new file mode 100644 index 0000000..5580a9f Binary files /dev/null and b/documents/pdf/openstax/openstax-principles-marketing.pdf differ diff --git a/documents/pdf/openstax/openstax-university-physics-volume-1.pdf b/documents/pdf/openstax/openstax-university-physics-volume-1.pdf new file mode 100644 index 0000000..05e4683 Binary files /dev/null and b/documents/pdf/openstax/openstax-university-physics-volume-1.pdf differ diff --git a/documents/pdf/openstax/openstax-university-physics-volume-2.pdf b/documents/pdf/openstax/openstax-university-physics-volume-2.pdf new file mode 100644 index 0000000..844ad33 Binary files /dev/null and b/documents/pdf/openstax/openstax-university-physics-volume-2.pdf differ diff --git a/documents/pdf/openstax/openstax-university-physics-volume-3.pdf b/documents/pdf/openstax/openstax-university-physics-volume-3.pdf new file mode 100644 index 0000000..4364711 Binary files /dev/null and b/documents/pdf/openstax/openstax-university-physics-volume-3.pdf differ diff --git a/documents/pdf/openstax/openstax-us-history.pdf b/documents/pdf/openstax/openstax-us-history.pdf new file mode 100644 index 0000000..5224a68 Binary files /dev/null and b/documents/pdf/openstax/openstax-us-history.pdf differ diff --git a/documents/pdf/openstax/openstax-world-history-volume-1.pdf b/documents/pdf/openstax/openstax-world-history-volume-1.pdf new file mode 100644 index 0000000..3442d1d Binary files /dev/null and b/documents/pdf/openstax/openstax-world-history-volume-1.pdf differ diff --git a/documents/pdf/openstax/openstax-world-history-volume-2.pdf b/documents/pdf/openstax/openstax-world-history-volume-2.pdf new file mode 100644 index 0000000..17f5787 Binary files /dev/null and b/documents/pdf/openstax/openstax-world-history-volume-2.pdf differ diff --git a/documents/pdf/openstax/openstax-writing-guide.pdf b/documents/pdf/openstax/openstax-writing-guide.pdf new file mode 100644 index 0000000..6c992cf Binary files /dev/null and b/documents/pdf/openstax/openstax-writing-guide.pdf differ diff --git a/documents/pdf/pdf-js/160f-2019.pdf b/documents/pdf/pdf-js/160f-2019.pdf new file mode 100644 index 0000000..c870e9a Binary files /dev/null and b/documents/pdf/pdf-js/160f-2019.pdf differ diff --git a/documents/pdf/pdf-js/alphatrans.pdf b/documents/pdf/pdf-js/alphatrans.pdf new file mode 100644 index 0000000..6a4b9bd Binary files /dev/null and b/documents/pdf/pdf-js/alphatrans.pdf differ diff --git a/documents/pdf/pdf-js/annotation-border-styles.pdf b/documents/pdf/pdf-js/annotation-border-styles.pdf new file mode 100644 index 0000000..39426de Binary files /dev/null and b/documents/pdf/pdf-js/annotation-border-styles.pdf differ diff --git a/documents/pdf/pdf-js/annotation-button-widget.pdf b/documents/pdf/pdf-js/annotation-button-widget.pdf new file mode 100644 index 0000000..83a94b1 Binary files /dev/null and b/documents/pdf/pdf-js/annotation-button-widget.pdf differ diff --git a/documents/pdf/pdf-js/annotation-caret-ink.pdf b/documents/pdf/pdf-js/annotation-caret-ink.pdf new file mode 100644 index 0000000..2eb1e24 Binary files /dev/null and b/documents/pdf/pdf-js/annotation-caret-ink.pdf differ diff --git a/documents/pdf/pdf-js/annotation-choice-widget.pdf b/documents/pdf/pdf-js/annotation-choice-widget.pdf new file mode 100644 index 0000000..42764db Binary files /dev/null and b/documents/pdf/pdf-js/annotation-choice-widget.pdf differ diff --git a/documents/pdf/pdf-js/annotation-fileattachment.pdf b/documents/pdf/pdf-js/annotation-fileattachment.pdf new file mode 100644 index 0000000..84a437c Binary files /dev/null and b/documents/pdf/pdf-js/annotation-fileattachment.pdf differ diff --git a/documents/pdf/pdf-js/annotation-freetext.pdf b/documents/pdf/pdf-js/annotation-freetext.pdf new file mode 100755 index 0000000..69aa0a0 Binary files /dev/null and b/documents/pdf/pdf-js/annotation-freetext.pdf differ diff --git a/documents/pdf/pdf-js/annotation-hidden-noview.pdf b/documents/pdf/pdf-js/annotation-hidden-noview.pdf new file mode 100644 index 0000000..9d0b5f4 Binary files /dev/null and b/documents/pdf/pdf-js/annotation-hidden-noview.pdf differ diff --git a/documents/pdf/pdf-js/annotation-hidden-print.pdf b/documents/pdf/pdf-js/annotation-hidden-print.pdf new file mode 100644 index 0000000..2afd3bd Binary files /dev/null and b/documents/pdf/pdf-js/annotation-hidden-print.pdf differ diff --git a/documents/pdf/pdf-js/annotation-highlight-without-appearance.pdf b/documents/pdf/pdf-js/annotation-highlight-without-appearance.pdf new file mode 100644 index 0000000..f219a03 Binary files /dev/null and b/documents/pdf/pdf-js/annotation-highlight-without-appearance.pdf differ diff --git a/documents/pdf/pdf-js/annotation-highlight.pdf b/documents/pdf/pdf-js/annotation-highlight.pdf new file mode 100644 index 0000000..f4016c2 Binary files /dev/null and b/documents/pdf/pdf-js/annotation-highlight.pdf differ diff --git a/documents/pdf/pdf-js/annotation-ink-without-appearance.pdf b/documents/pdf/pdf-js/annotation-ink-without-appearance.pdf new file mode 100644 index 0000000..3347ba0 Binary files /dev/null and b/documents/pdf/pdf-js/annotation-ink-without-appearance.pdf differ diff --git a/documents/pdf/pdf-js/annotation-line-without-appearance-empty-rect.pdf b/documents/pdf/pdf-js/annotation-line-without-appearance-empty-rect.pdf new file mode 100644 index 0000000..569ad88 Binary files /dev/null and b/documents/pdf/pdf-js/annotation-line-without-appearance-empty-rect.pdf differ diff --git a/documents/pdf/pdf-js/annotation-line-without-appearance.pdf b/documents/pdf/pdf-js/annotation-line-without-appearance.pdf new file mode 100644 index 0000000..d539bd8 Binary files /dev/null and b/documents/pdf/pdf-js/annotation-line-without-appearance.pdf differ diff --git a/documents/pdf/pdf-js/annotation-line.pdf b/documents/pdf/pdf-js/annotation-line.pdf new file mode 100755 index 0000000..e4d2452 Binary files /dev/null and b/documents/pdf/pdf-js/annotation-line.pdf differ diff --git a/documents/pdf/pdf-js/annotation-link-text-popup.pdf b/documents/pdf/pdf-js/annotation-link-text-popup.pdf new file mode 100644 index 0000000..ea0110f Binary files /dev/null and b/documents/pdf/pdf-js/annotation-link-text-popup.pdf differ diff --git a/documents/pdf/pdf-js/annotation-polyline-polygon-without-appearance.pdf b/documents/pdf/pdf-js/annotation-polyline-polygon-without-appearance.pdf new file mode 100644 index 0000000..60cae44 Binary files /dev/null and b/documents/pdf/pdf-js/annotation-polyline-polygon-without-appearance.pdf differ diff --git a/documents/pdf/pdf-js/annotation-polyline-polygon.pdf b/documents/pdf/pdf-js/annotation-polyline-polygon.pdf new file mode 100755 index 0000000..33789fe Binary files /dev/null and b/documents/pdf/pdf-js/annotation-polyline-polygon.pdf differ diff --git a/documents/pdf/pdf-js/annotation-square-circle-without-appearance.pdf b/documents/pdf/pdf-js/annotation-square-circle-without-appearance.pdf new file mode 100644 index 0000000..5dd3aa1 Binary files /dev/null and b/documents/pdf/pdf-js/annotation-square-circle-without-appearance.pdf differ diff --git a/documents/pdf/pdf-js/annotation-square-circle.pdf b/documents/pdf/pdf-js/annotation-square-circle.pdf new file mode 100755 index 0000000..de988cc Binary files /dev/null and b/documents/pdf/pdf-js/annotation-square-circle.pdf differ diff --git a/documents/pdf/pdf-js/annotation-squiggly-without-appearance.pdf b/documents/pdf/pdf-js/annotation-squiggly-without-appearance.pdf new file mode 100644 index 0000000..b1e044b Binary files /dev/null and b/documents/pdf/pdf-js/annotation-squiggly-without-appearance.pdf differ diff --git a/documents/pdf/pdf-js/annotation-squiggly.pdf b/documents/pdf/pdf-js/annotation-squiggly.pdf new file mode 100644 index 0000000..d33ccee Binary files /dev/null and b/documents/pdf/pdf-js/annotation-squiggly.pdf differ diff --git a/documents/pdf/pdf-js/annotation-stamp.pdf b/documents/pdf/pdf-js/annotation-stamp.pdf new file mode 100644 index 0000000..1dc96e6 Binary files /dev/null and b/documents/pdf/pdf-js/annotation-stamp.pdf differ diff --git a/documents/pdf/pdf-js/annotation-strikeout-without-appearance.pdf b/documents/pdf/pdf-js/annotation-strikeout-without-appearance.pdf new file mode 100644 index 0000000..605506d Binary files /dev/null and b/documents/pdf/pdf-js/annotation-strikeout-without-appearance.pdf differ diff --git a/documents/pdf/pdf-js/annotation-strikeout.pdf b/documents/pdf/pdf-js/annotation-strikeout.pdf new file mode 100644 index 0000000..81d0e75 Binary files /dev/null and b/documents/pdf/pdf-js/annotation-strikeout.pdf differ diff --git a/documents/pdf/pdf-js/annotation-text-widget.pdf b/documents/pdf/pdf-js/annotation-text-widget.pdf new file mode 100644 index 0000000..b0adbde Binary files /dev/null and b/documents/pdf/pdf-js/annotation-text-widget.pdf differ diff --git a/documents/pdf/pdf-js/annotation-text-without-popup.pdf b/documents/pdf/pdf-js/annotation-text-without-popup.pdf new file mode 100644 index 0000000..ccf466a Binary files /dev/null and b/documents/pdf/pdf-js/annotation-text-without-popup.pdf differ diff --git a/documents/pdf/pdf-js/annotation-tx.pdf b/documents/pdf/pdf-js/annotation-tx.pdf new file mode 100644 index 0000000..0aac1d4 Binary files /dev/null and b/documents/pdf/pdf-js/annotation-tx.pdf differ diff --git a/documents/pdf/pdf-js/annotation-tx2.pdf b/documents/pdf/pdf-js/annotation-tx2.pdf new file mode 100644 index 0000000..4ac5be6 Binary files /dev/null and b/documents/pdf/pdf-js/annotation-tx2.pdf differ diff --git a/documents/pdf/pdf-js/annotation-tx3.pdf b/documents/pdf/pdf-js/annotation-tx3.pdf new file mode 100644 index 0000000..23cb2d1 Binary files /dev/null and b/documents/pdf/pdf-js/annotation-tx3.pdf differ diff --git a/documents/pdf/pdf-js/annotation-underline-without-appearance.pdf b/documents/pdf/pdf-js/annotation-underline-without-appearance.pdf new file mode 100644 index 0000000..abbd4c9 Binary files /dev/null and b/documents/pdf/pdf-js/annotation-underline-without-appearance.pdf differ diff --git a/documents/pdf/pdf-js/annotation-underline.pdf b/documents/pdf/pdf-js/annotation-underline.pdf new file mode 100644 index 0000000..110b09f Binary files /dev/null and b/documents/pdf/pdf-js/annotation-underline.pdf differ diff --git a/documents/pdf/pdf-js/arabiccidtruetype.pdf b/documents/pdf/pdf-js/arabiccidtruetype.pdf new file mode 100644 index 0000000..199b71d Binary files /dev/null and b/documents/pdf/pdf-js/arabiccidtruetype.pdf differ diff --git a/documents/pdf/pdf-js/arial-unicode-ab-cidfont.pdf b/documents/pdf/pdf-js/arial-unicode-ab-cidfont.pdf new file mode 100644 index 0000000..3af6be1 Binary files /dev/null and b/documents/pdf/pdf-js/arial-unicode-ab-cidfont.pdf differ diff --git a/documents/pdf/pdf-js/arial-unicode-en-cidfont.pdf b/documents/pdf/pdf-js/arial-unicode-en-cidfont.pdf new file mode 100644 index 0000000..1e5dccf Binary files /dev/null and b/documents/pdf/pdf-js/arial-unicode-en-cidfont.pdf differ diff --git a/documents/pdf/pdf-js/asciihexdecode.pdf b/documents/pdf/pdf-js/asciihexdecode.pdf new file mode 100644 index 0000000..476d165 Binary files /dev/null and b/documents/pdf/pdf-js/asciihexdecode.pdf differ diff --git a/documents/pdf/pdf-js/attachment.pdf b/documents/pdf/pdf-js/attachment.pdf new file mode 100644 index 0000000..1759684 Binary files /dev/null and b/documents/pdf/pdf-js/attachment.pdf differ diff --git a/documents/pdf/pdf-js/autoprint.pdf b/documents/pdf/pdf-js/autoprint.pdf new file mode 100755 index 0000000..a182806 Binary files /dev/null and b/documents/pdf/pdf-js/autoprint.pdf differ diff --git a/documents/pdf/pdf-js/bad-pagelabels.pdf b/documents/pdf/pdf-js/bad-pagelabels.pdf new file mode 100644 index 0000000..67c176f Binary files /dev/null and b/documents/pdf/pdf-js/bad-pagelabels.pdf differ diff --git a/documents/pdf/pdf-js/basicapi.pdf b/documents/pdf/pdf-js/basicapi.pdf new file mode 100644 index 0000000..6ce53e0 Binary files /dev/null and b/documents/pdf/pdf-js/basicapi.pdf differ diff --git a/documents/pdf/pdf-js/bigboundingbox.pdf b/documents/pdf/pdf-js/bigboundingbox.pdf new file mode 100644 index 0000000..9f9319f Binary files /dev/null and b/documents/pdf/pdf-js/bigboundingbox.pdf differ diff --git a/documents/pdf/pdf-js/blendmode.pdf b/documents/pdf/pdf-js/blendmode.pdf new file mode 100644 index 0000000..eb46554 Binary files /dev/null and b/documents/pdf/pdf-js/blendmode.pdf differ diff --git a/documents/pdf/pdf-js/boundingbox-invalid.pdf b/documents/pdf/pdf-js/boundingbox-invalid.pdf new file mode 100644 index 0000000..daae6ba Binary files /dev/null and b/documents/pdf/pdf-js/boundingbox-invalid.pdf differ diff --git a/documents/pdf/pdf-js/bug1001080.pdf b/documents/pdf/pdf-js/bug1001080.pdf new file mode 100644 index 0000000..183c3eb Binary files /dev/null and b/documents/pdf/pdf-js/bug1001080.pdf differ diff --git a/documents/pdf/pdf-js/bug1011159.pdf b/documents/pdf/pdf-js/bug1011159.pdf new file mode 100644 index 0000000..11e1e32 Binary files /dev/null and b/documents/pdf/pdf-js/bug1011159.pdf differ diff --git a/documents/pdf/pdf-js/bug1020226.pdf b/documents/pdf/pdf-js/bug1020226.pdf new file mode 100644 index 0000000..9e74405 Binary files /dev/null and b/documents/pdf/pdf-js/bug1020226.pdf differ diff --git a/documents/pdf/pdf-js/bug1020858.pdf b/documents/pdf/pdf-js/bug1020858.pdf new file mode 100644 index 0000000..6da3826 Binary files /dev/null and b/documents/pdf/pdf-js/bug1020858.pdf differ diff --git a/documents/pdf/pdf-js/bug1027533.pdf b/documents/pdf/pdf-js/bug1027533.pdf new file mode 100644 index 0000000..b7dbdfd Binary files /dev/null and b/documents/pdf/pdf-js/bug1027533.pdf differ diff --git a/documents/pdf/pdf-js/bug1028735.pdf b/documents/pdf/pdf-js/bug1028735.pdf new file mode 100644 index 0000000..c964215 Binary files /dev/null and b/documents/pdf/pdf-js/bug1028735.pdf differ diff --git a/documents/pdf/pdf-js/bug1046314.pdf b/documents/pdf/pdf-js/bug1046314.pdf new file mode 100644 index 0000000..b5c5fb7 Binary files /dev/null and b/documents/pdf/pdf-js/bug1046314.pdf differ diff --git a/documents/pdf/pdf-js/bug1050040.pdf b/documents/pdf/pdf-js/bug1050040.pdf new file mode 100644 index 0000000..afd253f Binary files /dev/null and b/documents/pdf/pdf-js/bug1050040.pdf differ diff --git a/documents/pdf/pdf-js/bug1057544.pdf b/documents/pdf/pdf-js/bug1057544.pdf new file mode 100644 index 0000000..b8e2a16 Binary files /dev/null and b/documents/pdf/pdf-js/bug1057544.pdf differ diff --git a/documents/pdf/pdf-js/bug1065245.pdf b/documents/pdf/pdf-js/bug1065245.pdf new file mode 100644 index 0000000..bd53373 Binary files /dev/null and b/documents/pdf/pdf-js/bug1065245.pdf differ diff --git a/documents/pdf/pdf-js/bug1068432.pdf b/documents/pdf/pdf-js/bug1068432.pdf new file mode 100644 index 0000000..0691eee Binary files /dev/null and b/documents/pdf/pdf-js/bug1068432.pdf differ diff --git a/documents/pdf/pdf-js/bug1108301.pdf b/documents/pdf/pdf-js/bug1108301.pdf new file mode 100644 index 0000000..23442b9 Binary files /dev/null and b/documents/pdf/pdf-js/bug1108301.pdf differ diff --git a/documents/pdf/pdf-js/bug1132849.pdf b/documents/pdf/pdf-js/bug1132849.pdf new file mode 100644 index 0000000..a1c493b Binary files /dev/null and b/documents/pdf/pdf-js/bug1132849.pdf differ diff --git a/documents/pdf/pdf-js/bug1146106.pdf b/documents/pdf/pdf-js/bug1146106.pdf new file mode 100644 index 0000000..4b42c69 Binary files /dev/null and b/documents/pdf/pdf-js/bug1146106.pdf differ diff --git a/documents/pdf/pdf-js/bug1151216.pdf b/documents/pdf/pdf-js/bug1151216.pdf new file mode 100644 index 0000000..35a0bc2 Binary files /dev/null and b/documents/pdf/pdf-js/bug1151216.pdf differ diff --git a/documents/pdf/pdf-js/bug1157493.pdf b/documents/pdf/pdf-js/bug1157493.pdf new file mode 100644 index 0000000..9303b55 Binary files /dev/null and b/documents/pdf/pdf-js/bug1157493.pdf differ diff --git a/documents/pdf/pdf-js/bug1175962.pdf b/documents/pdf/pdf-js/bug1175962.pdf new file mode 100644 index 0000000..9060547 Binary files /dev/null and b/documents/pdf/pdf-js/bug1175962.pdf differ diff --git a/documents/pdf/pdf-js/bug1186827.pdf b/documents/pdf/pdf-js/bug1186827.pdf new file mode 100644 index 0000000..b34df69 Binary files /dev/null and b/documents/pdf/pdf-js/bug1186827.pdf differ diff --git a/documents/pdf/pdf-js/bug1200096.pdf b/documents/pdf/pdf-js/bug1200096.pdf new file mode 100644 index 0000000..44ff074 Binary files /dev/null and b/documents/pdf/pdf-js/bug1200096.pdf differ diff --git a/documents/pdf/pdf-js/bug1245391-reduced.pdf b/documents/pdf/pdf-js/bug1245391-reduced.pdf new file mode 100644 index 0000000..fbeb890 Binary files /dev/null and b/documents/pdf/pdf-js/bug1245391-reduced.pdf differ diff --git a/documents/pdf/pdf-js/bug1250079.pdf b/documents/pdf/pdf-js/bug1250079.pdf new file mode 100644 index 0000000..8272f0a Binary files /dev/null and b/documents/pdf/pdf-js/bug1250079.pdf differ diff --git a/documents/pdf/pdf-js/bug1252420.pdf b/documents/pdf/pdf-js/bug1252420.pdf new file mode 100644 index 0000000..054f8b5 Binary files /dev/null and b/documents/pdf/pdf-js/bug1252420.pdf differ diff --git a/documents/pdf/pdf-js/bug1308536.pdf b/documents/pdf/pdf-js/bug1308536.pdf new file mode 100644 index 0000000..250c839 Binary files /dev/null and b/documents/pdf/pdf-js/bug1308536.pdf differ diff --git a/documents/pdf/pdf-js/bug1337429.pdf b/documents/pdf/pdf-js/bug1337429.pdf new file mode 100644 index 0000000..94417fe Binary files /dev/null and b/documents/pdf/pdf-js/bug1337429.pdf differ diff --git a/documents/pdf/pdf-js/bug1365930.pdf b/documents/pdf/pdf-js/bug1365930.pdf new file mode 100644 index 0000000..04e7b04 Binary files /dev/null and b/documents/pdf/pdf-js/bug1365930.pdf differ diff --git a/documents/pdf/pdf-js/bug1392647.pdf b/documents/pdf/pdf-js/bug1392647.pdf new file mode 100644 index 0000000..c325444 Binary files /dev/null and b/documents/pdf/pdf-js/bug1392647.pdf differ diff --git a/documents/pdf/pdf-js/bug1473809.pdf b/documents/pdf/pdf-js/bug1473809.pdf new file mode 100644 index 0000000..8c55c8a Binary files /dev/null and b/documents/pdf/pdf-js/bug1473809.pdf differ diff --git a/documents/pdf/pdf-js/bug1513120-reduced.pdf b/documents/pdf/pdf-js/bug1513120-reduced.pdf new file mode 100644 index 0000000..a351e55 Binary files /dev/null and b/documents/pdf/pdf-js/bug1513120-reduced.pdf differ diff --git a/documents/pdf/pdf-js/bug1529502.pdf b/documents/pdf/pdf-js/bug1529502.pdf new file mode 100644 index 0000000..9c68d0d Binary files /dev/null and b/documents/pdf/pdf-js/bug1529502.pdf differ diff --git a/documents/pdf/pdf-js/bug1538111.pdf b/documents/pdf/pdf-js/bug1538111.pdf new file mode 100644 index 0000000..32278b9 Binary files /dev/null and b/documents/pdf/pdf-js/bug1538111.pdf differ diff --git a/documents/pdf/pdf-js/bug1539074-1.pdf b/documents/pdf/pdf-js/bug1539074-1.pdf new file mode 100755 index 0000000..6eec866 Binary files /dev/null and b/documents/pdf/pdf-js/bug1539074-1.pdf differ diff --git a/documents/pdf/pdf-js/bug1539074.pdf b/documents/pdf/pdf-js/bug1539074.pdf new file mode 100755 index 0000000..e84061f Binary files /dev/null and b/documents/pdf/pdf-js/bug1539074.pdf differ diff --git a/documents/pdf/pdf-js/bug1552113.pdf b/documents/pdf/pdf-js/bug1552113.pdf new file mode 100644 index 0000000..85f2e89 Binary files /dev/null and b/documents/pdf/pdf-js/bug1552113.pdf differ diff --git a/documents/pdf/pdf-js/bug1627427-reduced.pdf b/documents/pdf/pdf-js/bug1627427-reduced.pdf new file mode 100644 index 0000000..99751ea Binary files /dev/null and b/documents/pdf/pdf-js/bug1627427-reduced.pdf differ diff --git a/documents/pdf/pdf-js/bug1650302-reduced.pdf b/documents/pdf/pdf-js/bug1650302-reduced.pdf new file mode 100644 index 0000000..0e7b902 Binary files /dev/null and b/documents/pdf/pdf-js/bug1650302-reduced.pdf differ diff --git a/documents/pdf/pdf-js/bug1669097.pdf b/documents/pdf/pdf-js/bug1669097.pdf new file mode 100755 index 0000000..14cc145 Binary files /dev/null and b/documents/pdf/pdf-js/bug1669097.pdf differ diff --git a/documents/pdf/pdf-js/bug1669099.pdf b/documents/pdf/pdf-js/bug1669099.pdf new file mode 100644 index 0000000..7bc0af7 Binary files /dev/null and b/documents/pdf/pdf-js/bug1669099.pdf differ diff --git a/documents/pdf/pdf-js/bug1671312-arialnarrow.pdf b/documents/pdf/pdf-js/bug1671312-arialnarrow.pdf new file mode 100644 index 0000000..8660f8e Binary files /dev/null and b/documents/pdf/pdf-js/bug1671312-arialnarrow.pdf differ diff --git a/documents/pdf/pdf-js/bug1671312-reduced.pdf b/documents/pdf/pdf-js/bug1671312-reduced.pdf new file mode 100644 index 0000000..246dc29 Binary files /dev/null and b/documents/pdf/pdf-js/bug1671312-reduced.pdf differ diff --git a/documents/pdf/pdf-js/bug1675139.pdf b/documents/pdf/pdf-js/bug1675139.pdf new file mode 100755 index 0000000..bd45a16 Binary files /dev/null and b/documents/pdf/pdf-js/bug1675139.pdf differ diff --git a/documents/pdf/pdf-js/bug1703683-page2-reduced.pdf b/documents/pdf/pdf-js/bug1703683-page2-reduced.pdf new file mode 100644 index 0000000..19280aa Binary files /dev/null and b/documents/pdf/pdf-js/bug1703683-page2-reduced.pdf differ diff --git a/documents/pdf/pdf-js/bug1708040.pdf b/documents/pdf/pdf-js/bug1708040.pdf new file mode 100755 index 0000000..adb3d52 Binary files /dev/null and b/documents/pdf/pdf-js/bug1708040.pdf differ diff --git a/documents/pdf/pdf-js/bug1721218-reduced.pdf b/documents/pdf/pdf-js/bug1721218-reduced.pdf new file mode 100644 index 0000000..1945db5 Binary files /dev/null and b/documents/pdf/pdf-js/bug1721218-reduced.pdf differ diff --git a/documents/pdf/pdf-js/bug1724918.pdf b/documents/pdf/pdf-js/bug1724918.pdf new file mode 100755 index 0000000..5d480e2 Binary files /dev/null and b/documents/pdf/pdf-js/bug1724918.pdf differ diff --git a/documents/pdf/pdf-js/bug1727053.pdf b/documents/pdf/pdf-js/bug1727053.pdf new file mode 100644 index 0000000..6f1ff14 Binary files /dev/null and b/documents/pdf/pdf-js/bug1727053.pdf differ diff --git a/documents/pdf/pdf-js/bug1743245.pdf b/documents/pdf/pdf-js/bug1743245.pdf new file mode 100644 index 0000000..4b3be23 Binary files /dev/null and b/documents/pdf/pdf-js/bug1743245.pdf differ diff --git a/documents/pdf/pdf-js/bug1755507.pdf b/documents/pdf/pdf-js/bug1755507.pdf new file mode 100644 index 0000000..95e5c69 Binary files /dev/null and b/documents/pdf/pdf-js/bug1755507.pdf differ diff --git a/documents/pdf/pdf-js/bug1770750.pdf b/documents/pdf/pdf-js/bug1770750.pdf new file mode 100755 index 0000000..bb07aa0 Binary files /dev/null and b/documents/pdf/pdf-js/bug1770750.pdf differ diff --git a/documents/pdf/pdf-js/bug1771477.pdf b/documents/pdf/pdf-js/bug1771477.pdf new file mode 100644 index 0000000..11e4a98 Binary files /dev/null and b/documents/pdf/pdf-js/bug1771477.pdf differ diff --git a/documents/pdf/pdf-js/bug1782186.pdf b/documents/pdf/pdf-js/bug1782186.pdf new file mode 100755 index 0000000..0e2d7d8 Binary files /dev/null and b/documents/pdf/pdf-js/bug1782186.pdf differ diff --git a/documents/pdf/pdf-js/bug1782564.pdf b/documents/pdf/pdf-js/bug1782564.pdf new file mode 100755 index 0000000..02a1c8a Binary files /dev/null and b/documents/pdf/pdf-js/bug1782564.pdf differ diff --git a/documents/pdf/pdf-js/bug1795263.pdf b/documents/pdf/pdf-js/bug1795263.pdf new file mode 100644 index 0000000..bf646ec Binary files /dev/null and b/documents/pdf/pdf-js/bug1795263.pdf differ diff --git a/documents/pdf/pdf-js/bug1796741.pdf b/documents/pdf/pdf-js/bug1796741.pdf new file mode 100755 index 0000000..a3cc6ee Binary files /dev/null and b/documents/pdf/pdf-js/bug1796741.pdf differ diff --git a/documents/pdf/pdf-js/bug1799927.pdf b/documents/pdf/pdf-js/bug1799927.pdf new file mode 100644 index 0000000..4a2b17e Binary files /dev/null and b/documents/pdf/pdf-js/bug1799927.pdf differ diff --git a/documents/pdf/pdf-js/bug1802888.pdf b/documents/pdf/pdf-js/bug1802888.pdf new file mode 100755 index 0000000..bd203ac Binary files /dev/null and b/documents/pdf/pdf-js/bug1802888.pdf differ diff --git a/documents/pdf/pdf-js/bug1811510.pdf b/documents/pdf/pdf-js/bug1811510.pdf new file mode 100755 index 0000000..1b81cee Binary files /dev/null and b/documents/pdf/pdf-js/bug1811510.pdf differ diff --git a/documents/pdf/pdf-js/bug1811668-reduced.pdf b/documents/pdf/pdf-js/bug1811668-reduced.pdf new file mode 100644 index 0000000..02ca7f1 Binary files /dev/null and b/documents/pdf/pdf-js/bug1811668-reduced.pdf differ diff --git a/documents/pdf/pdf-js/bug1811694.pdf b/documents/pdf/pdf-js/bug1811694.pdf new file mode 100755 index 0000000..5768869 Binary files /dev/null and b/documents/pdf/pdf-js/bug1811694.pdf differ diff --git a/documents/pdf/pdf-js/bug1815476.pdf b/documents/pdf/pdf-js/bug1815476.pdf new file mode 100755 index 0000000..e2180f8 Binary files /dev/null and b/documents/pdf/pdf-js/bug1815476.pdf differ diff --git a/documents/pdf/pdf-js/bug1820909-1.pdf b/documents/pdf/pdf-js/bug1820909-1.pdf new file mode 100755 index 0000000..05a7337 Binary files /dev/null and b/documents/pdf/pdf-js/bug1820909-1.pdf differ diff --git a/documents/pdf/pdf-js/bug1825002.pdf b/documents/pdf/pdf-js/bug1825002.pdf new file mode 100755 index 0000000..47c46db Binary files /dev/null and b/documents/pdf/pdf-js/bug1825002.pdf differ diff --git a/documents/pdf/pdf-js/bug1844576.pdf b/documents/pdf/pdf-js/bug1844576.pdf new file mode 100755 index 0000000..8303a4d Binary files /dev/null and b/documents/pdf/pdf-js/bug1844576.pdf differ diff --git a/documents/pdf/pdf-js/bug1844583.pdf b/documents/pdf/pdf-js/bug1844583.pdf new file mode 100755 index 0000000..936624b Binary files /dev/null and b/documents/pdf/pdf-js/bug1844583.pdf differ diff --git a/documents/pdf/pdf-js/bug1851498.pdf b/documents/pdf/pdf-js/bug1851498.pdf new file mode 100755 index 0000000..3f3ba71 Binary files /dev/null and b/documents/pdf/pdf-js/bug1851498.pdf differ diff --git a/documents/pdf/pdf-js/bug1863910.pdf b/documents/pdf/pdf-js/bug1863910.pdf new file mode 100755 index 0000000..83fb7d0 Binary files /dev/null and b/documents/pdf/pdf-js/bug1863910.pdf differ diff --git a/documents/pdf/pdf-js/bug1865341.pdf b/documents/pdf/pdf-js/bug1865341.pdf new file mode 100755 index 0000000..dff317d Binary files /dev/null and b/documents/pdf/pdf-js/bug1865341.pdf differ diff --git a/documents/pdf/pdf-js/bug1868759.pdf b/documents/pdf/pdf-js/bug1868759.pdf new file mode 100755 index 0000000..66262b0 Binary files /dev/null and b/documents/pdf/pdf-js/bug1868759.pdf differ diff --git a/documents/pdf/pdf-js/bug1871353-1.pdf b/documents/pdf/pdf-js/bug1871353-1.pdf new file mode 100644 index 0000000..d43802e Binary files /dev/null and b/documents/pdf/pdf-js/bug1871353-1.pdf differ diff --git a/documents/pdf/pdf-js/bug1871353.pdf b/documents/pdf/pdf-js/bug1871353.pdf new file mode 100644 index 0000000..aaa5f7f Binary files /dev/null and b/documents/pdf/pdf-js/bug1871353.pdf differ diff --git a/documents/pdf/pdf-js/bug1872721.pdf b/documents/pdf/pdf-js/bug1872721.pdf new file mode 100755 index 0000000..49f5688 Binary files /dev/null and b/documents/pdf/pdf-js/bug1872721.pdf differ diff --git a/documents/pdf/pdf-js/bug1883609.pdf b/documents/pdf/pdf-js/bug1883609.pdf new file mode 100755 index 0000000..a0fb525 Binary files /dev/null and b/documents/pdf/pdf-js/bug1883609.pdf differ diff --git a/documents/pdf/pdf-js/bug1889122.pdf b/documents/pdf/pdf-js/bug1889122.pdf new file mode 100644 index 0000000..bd5afe4 Binary files /dev/null and b/documents/pdf/pdf-js/bug1889122.pdf differ diff --git a/documents/pdf/pdf-js/bug1907000-reduced.pdf b/documents/pdf/pdf-js/bug1907000-reduced.pdf new file mode 100644 index 0000000..eaa0599 Binary files /dev/null and b/documents/pdf/pdf-js/bug1907000-reduced.pdf differ diff --git a/documents/pdf/pdf-js/bug1918115.pdf b/documents/pdf/pdf-js/bug1918115.pdf new file mode 100755 index 0000000..b950a08 Binary files /dev/null and b/documents/pdf/pdf-js/bug1918115.pdf differ diff --git a/documents/pdf/pdf-js/bug1919513.pdf b/documents/pdf/pdf-js/bug1919513.pdf new file mode 100755 index 0000000..16780d2 Binary files /dev/null and b/documents/pdf/pdf-js/bug1919513.pdf differ diff --git a/documents/pdf/pdf-js/bug1922766.pdf b/documents/pdf/pdf-js/bug1922766.pdf new file mode 100755 index 0000000..2e61efa Binary files /dev/null and b/documents/pdf/pdf-js/bug1922766.pdf differ diff --git a/documents/pdf/pdf-js/bug1934157.pdf b/documents/pdf/pdf-js/bug1934157.pdf new file mode 100755 index 0000000..9753283 Binary files /dev/null and b/documents/pdf/pdf-js/bug1934157.pdf differ diff --git a/documents/pdf/pdf-js/bug766086.pdf b/documents/pdf/pdf-js/bug766086.pdf new file mode 100644 index 0000000..de9da9d Binary files /dev/null and b/documents/pdf/pdf-js/bug766086.pdf differ diff --git a/documents/pdf/pdf-js/bug793632.pdf b/documents/pdf/pdf-js/bug793632.pdf new file mode 100644 index 0000000..58d2d27 Binary files /dev/null and b/documents/pdf/pdf-js/bug793632.pdf differ diff --git a/documents/pdf/pdf-js/bug816075.pdf b/documents/pdf/pdf-js/bug816075.pdf new file mode 100644 index 0000000..66c1d06 Binary files /dev/null and b/documents/pdf/pdf-js/bug816075.pdf differ diff --git a/documents/pdf/pdf-js/bug847420.pdf b/documents/pdf/pdf-js/bug847420.pdf new file mode 100644 index 0000000..8200e56 Binary files /dev/null and b/documents/pdf/pdf-js/bug847420.pdf differ diff --git a/documents/pdf/pdf-js/bug850854.pdf b/documents/pdf/pdf-js/bug850854.pdf new file mode 100644 index 0000000..618b153 Binary files /dev/null and b/documents/pdf/pdf-js/bug850854.pdf differ diff --git a/documents/pdf/pdf-js/bug852992-reduced.pdf b/documents/pdf/pdf-js/bug852992-reduced.pdf new file mode 100644 index 0000000..efe90e0 Binary files /dev/null and b/documents/pdf/pdf-js/bug852992-reduced.pdf differ diff --git a/documents/pdf/pdf-js/bug854315.pdf b/documents/pdf/pdf-js/bug854315.pdf new file mode 100644 index 0000000..809c985 Binary files /dev/null and b/documents/pdf/pdf-js/bug854315.pdf differ diff --git a/documents/pdf/pdf-js/bug859204.pdf b/documents/pdf/pdf-js/bug859204.pdf new file mode 100644 index 0000000..53bbbd1 Binary files /dev/null and b/documents/pdf/pdf-js/bug859204.pdf differ diff --git a/documents/pdf/pdf-js/bug860632.pdf b/documents/pdf/pdf-js/bug860632.pdf new file mode 100644 index 0000000..35b6823 Binary files /dev/null and b/documents/pdf/pdf-js/bug860632.pdf differ diff --git a/documents/pdf/pdf-js/bug864847.pdf b/documents/pdf/pdf-js/bug864847.pdf new file mode 100644 index 0000000..21ac90f Binary files /dev/null and b/documents/pdf/pdf-js/bug864847.pdf differ diff --git a/documents/pdf/pdf-js/bug866395.pdf b/documents/pdf/pdf-js/bug866395.pdf new file mode 100644 index 0000000..5b0807f Binary files /dev/null and b/documents/pdf/pdf-js/bug866395.pdf differ diff --git a/documents/pdf/pdf-js/bug868745.pdf b/documents/pdf/pdf-js/bug868745.pdf new file mode 100644 index 0000000..300ce4d Binary files /dev/null and b/documents/pdf/pdf-js/bug868745.pdf differ diff --git a/documents/pdf/pdf-js/bug878026.pdf b/documents/pdf/pdf-js/bug878026.pdf new file mode 100644 index 0000000..b4c83d4 Binary files /dev/null and b/documents/pdf/pdf-js/bug878026.pdf differ diff --git a/documents/pdf/pdf-js/bug886717.pdf b/documents/pdf/pdf-js/bug886717.pdf new file mode 100644 index 0000000..942187c Binary files /dev/null and b/documents/pdf/pdf-js/bug886717.pdf differ diff --git a/documents/pdf/pdf-js/bug893730.pdf b/documents/pdf/pdf-js/bug893730.pdf new file mode 100644 index 0000000..2f39f6e Binary files /dev/null and b/documents/pdf/pdf-js/bug893730.pdf differ diff --git a/documents/pdf/pdf-js/bug894572.pdf b/documents/pdf/pdf-js/bug894572.pdf new file mode 100644 index 0000000..8960f64 Binary files /dev/null and b/documents/pdf/pdf-js/bug894572.pdf differ diff --git a/documents/pdf/pdf-js/bug898853.pdf b/documents/pdf/pdf-js/bug898853.pdf new file mode 100644 index 0000000..e8e6c85 Binary files /dev/null and b/documents/pdf/pdf-js/bug898853.pdf differ diff --git a/documents/pdf/pdf-js/bug900822.pdf b/documents/pdf/pdf-js/bug900822.pdf new file mode 100644 index 0000000..d489c95 Binary files /dev/null and b/documents/pdf/pdf-js/bug900822.pdf differ diff --git a/documents/pdf/pdf-js/bug903856.pdf b/documents/pdf/pdf-js/bug903856.pdf new file mode 100644 index 0000000..510344b Binary files /dev/null and b/documents/pdf/pdf-js/bug903856.pdf differ diff --git a/documents/pdf/pdf-js/bug911034.pdf b/documents/pdf/pdf-js/bug911034.pdf new file mode 100644 index 0000000..c000f66 Binary files /dev/null and b/documents/pdf/pdf-js/bug911034.pdf differ diff --git a/documents/pdf/pdf-js/bug920426.pdf b/documents/pdf/pdf-js/bug920426.pdf new file mode 100644 index 0000000..78a6ea7 Binary files /dev/null and b/documents/pdf/pdf-js/bug920426.pdf differ diff --git a/documents/pdf/pdf-js/bug921409.pdf b/documents/pdf/pdf-js/bug921409.pdf new file mode 100644 index 0000000..478ac23 Binary files /dev/null and b/documents/pdf/pdf-js/bug921409.pdf differ diff --git a/documents/pdf/pdf-js/bug946506.pdf b/documents/pdf/pdf-js/bug946506.pdf new file mode 100644 index 0000000..9e2740d Binary files /dev/null and b/documents/pdf/pdf-js/bug946506.pdf differ diff --git a/documents/pdf/pdf-js/calgray.pdf b/documents/pdf/pdf-js/calgray.pdf new file mode 100644 index 0000000..b0a08d7 Binary files /dev/null and b/documents/pdf/pdf-js/calgray.pdf differ diff --git a/documents/pdf/pdf-js/calrgb.pdf b/documents/pdf/pdf-js/calrgb.pdf new file mode 100644 index 0000000..db3a72d Binary files /dev/null and b/documents/pdf/pdf-js/calrgb.pdf differ diff --git a/documents/pdf/pdf-js/canvas.pdf b/documents/pdf/pdf-js/canvas.pdf new file mode 100644 index 0000000..29c7690 Binary files /dev/null and b/documents/pdf/pdf-js/canvas.pdf differ diff --git a/documents/pdf/pdf-js/ccitt-endofblock-false.pdf b/documents/pdf/pdf-js/ccitt-endofblock-false.pdf new file mode 100644 index 0000000..aae021f Binary files /dev/null and b/documents/pdf/pdf-js/ccitt-endofblock-false.pdf differ diff --git a/documents/pdf/pdf-js/checkbox-bad-appearance.pdf b/documents/pdf/pdf-js/checkbox-bad-appearance.pdf new file mode 100644 index 0000000..3984734 Binary files /dev/null and b/documents/pdf/pdf-js/checkbox-bad-appearance.pdf differ diff --git a/documents/pdf/pdf-js/cid-cff.pdf b/documents/pdf/pdf-js/cid-cff.pdf new file mode 100644 index 0000000..af0e014 Binary files /dev/null and b/documents/pdf/pdf-js/cid-cff.pdf differ diff --git a/documents/pdf/pdf-js/clippath.pdf b/documents/pdf/pdf-js/clippath.pdf new file mode 100644 index 0000000..4055a0e Binary files /dev/null and b/documents/pdf/pdf-js/clippath.pdf differ diff --git a/documents/pdf/pdf-js/close-path-bug.pdf b/documents/pdf/pdf-js/close-path-bug.pdf new file mode 100644 index 0000000..032157f Binary files /dev/null and b/documents/pdf/pdf-js/close-path-bug.pdf differ diff --git a/documents/pdf/pdf-js/cmykjpeg.pdf b/documents/pdf/pdf-js/cmykjpeg.pdf new file mode 100644 index 0000000..7fa77b8 Binary files /dev/null and b/documents/pdf/pdf-js/cmykjpeg.pdf differ diff --git a/documents/pdf/pdf-js/colorkeymask.pdf b/documents/pdf/pdf-js/colorkeymask.pdf new file mode 100644 index 0000000..1d3c63d Binary files /dev/null and b/documents/pdf/pdf-js/colorkeymask.pdf differ diff --git a/documents/pdf/pdf-js/colorspace-atan.pdf b/documents/pdf/pdf-js/colorspace-atan.pdf new file mode 100644 index 0000000..a80cf46 Binary files /dev/null and b/documents/pdf/pdf-js/colorspace-atan.pdf differ diff --git a/documents/pdf/pdf-js/colorspace-cos.pdf b/documents/pdf/pdf-js/colorspace-cos.pdf new file mode 100644 index 0000000..42a58e0 Binary files /dev/null and b/documents/pdf/pdf-js/colorspace-cos.pdf differ diff --git a/documents/pdf/pdf-js/colorspace-sin.pdf b/documents/pdf/pdf-js/colorspace-sin.pdf new file mode 100644 index 0000000..31302c0 Binary files /dev/null and b/documents/pdf/pdf-js/colorspace-sin.pdf differ diff --git a/documents/pdf/pdf-js/complex-ttf-font.pdf b/documents/pdf/pdf-js/complex-ttf-font.pdf new file mode 100644 index 0000000..151014b Binary files /dev/null and b/documents/pdf/pdf-js/complex-ttf-font.pdf differ diff --git a/documents/pdf/pdf-js/contentstreamcycletype3insidetype3.pdf b/documents/pdf/pdf-js/contentstreamcycletype3insidetype3.pdf new file mode 100644 index 0000000..4bbd733 Binary files /dev/null and b/documents/pdf/pdf-js/contentstreamcycletype3insidetype3.pdf differ diff --git a/documents/pdf/pdf-js/contentstreamnocycletype3insidetype3.pdf b/documents/pdf/pdf-js/contentstreamnocycletype3insidetype3.pdf new file mode 100644 index 0000000..29ccd68 Binary files /dev/null and b/documents/pdf/pdf-js/contentstreamnocycletype3insidetype3.pdf differ diff --git a/documents/pdf/pdf-js/coons-allflags-withfunction.pdf b/documents/pdf/pdf-js/coons-allflags-withfunction.pdf new file mode 100644 index 0000000..c74b227 Binary files /dev/null and b/documents/pdf/pdf-js/coons-allflags-withfunction.pdf differ diff --git a/documents/pdf/pdf-js/copy-paste-ligatures.pdf b/documents/pdf/pdf-js/copy-paste-ligatures.pdf new file mode 100755 index 0000000..fbe0f84 Binary files /dev/null and b/documents/pdf/pdf-js/copy-paste-ligatures.pdf differ diff --git a/documents/pdf/pdf-js/decodeacsuccessive.pdf b/documents/pdf/pdf-js/decodeacsuccessive.pdf new file mode 100644 index 0000000..e58bdb9 Binary files /dev/null and b/documents/pdf/pdf-js/decodeacsuccessive.pdf differ diff --git a/documents/pdf/pdf-js/devicen.pdf b/documents/pdf/pdf-js/devicen.pdf new file mode 100644 index 0000000..aaac707 Binary files /dev/null and b/documents/pdf/pdf-js/devicen.pdf differ diff --git a/documents/pdf/pdf-js/doc-actions.pdf b/documents/pdf/pdf-js/doc-actions.pdf new file mode 100644 index 0000000..9a839ad Binary files /dev/null and b/documents/pdf/pdf-js/doc-actions.pdf differ diff --git a/documents/pdf/pdf-js/empty-protected.pdf b/documents/pdf/pdf-js/empty-protected.pdf new file mode 100755 index 0000000..2074616 Binary files /dev/null and b/documents/pdf/pdf-js/empty-protected.pdf differ diff --git a/documents/pdf/pdf-js/empty.pdf b/documents/pdf/pdf-js/empty.pdf new file mode 100755 index 0000000..dddd0f6 Binary files /dev/null and b/documents/pdf/pdf-js/empty.pdf differ diff --git a/documents/pdf/pdf-js/endchar.pdf b/documents/pdf/pdf-js/endchar.pdf new file mode 100644 index 0000000..21704d6 Binary files /dev/null and b/documents/pdf/pdf-js/endchar.pdf differ diff --git a/documents/pdf/pdf-js/evaljs.pdf b/documents/pdf/pdf-js/evaljs.pdf new file mode 100644 index 0000000..b62c2be Binary files /dev/null and b/documents/pdf/pdf-js/evaljs.pdf differ diff --git a/documents/pdf/pdf-js/extgstate.pdf b/documents/pdf/pdf-js/extgstate.pdf new file mode 100644 index 0000000..fb9d01d Binary files /dev/null and b/documents/pdf/pdf-js/extgstate.pdf differ diff --git a/documents/pdf/pdf-js/fields-order.pdf b/documents/pdf/pdf-js/fields-order.pdf new file mode 100755 index 0000000..827acf1 Binary files /dev/null and b/documents/pdf/pdf-js/fields-order.pdf differ diff --git a/documents/pdf/pdf-js/file-pdfjs-form.pdf b/documents/pdf/pdf-js/file-pdfjs-form.pdf new file mode 100755 index 0000000..166d25f Binary files /dev/null and b/documents/pdf/pdf-js/file-pdfjs-form.pdf differ diff --git a/documents/pdf/pdf-js/file-pdfjs-test.pdf b/documents/pdf/pdf-js/file-pdfjs-test.pdf new file mode 100755 index 0000000..5eef36a Binary files /dev/null and b/documents/pdf/pdf-js/file-pdfjs-test.pdf differ diff --git a/documents/pdf/pdf-js/file-url-link.pdf b/documents/pdf/pdf-js/file-url-link.pdf new file mode 100644 index 0000000..e36fdbb Binary files /dev/null and b/documents/pdf/pdf-js/file-url-link.pdf differ diff --git a/documents/pdf/pdf-js/filled-background.pdf b/documents/pdf/pdf-js/filled-background.pdf new file mode 100644 index 0000000..ea49212 Binary files /dev/null and b/documents/pdf/pdf-js/filled-background.pdf differ diff --git a/documents/pdf/pdf-js/find-all.pdf b/documents/pdf/pdf-js/find-all.pdf new file mode 100644 index 0000000..04d74d9 Binary files /dev/null and b/documents/pdf/pdf-js/find-all.pdf differ diff --git a/documents/pdf/pdf-js/font-ascent-descent.pdf b/documents/pdf/pdf-js/font-ascent-descent.pdf new file mode 100755 index 0000000..f856e2e Binary files /dev/null and b/documents/pdf/pdf-js/font-ascent-descent.pdf differ diff --git a/documents/pdf/pdf-js/fraction-highlight.pdf b/documents/pdf/pdf-js/fraction-highlight.pdf new file mode 100644 index 0000000..579243c Binary files /dev/null and b/documents/pdf/pdf-js/fraction-highlight.pdf differ diff --git a/documents/pdf/pdf-js/franz-2.pdf b/documents/pdf/pdf-js/franz-2.pdf new file mode 100644 index 0000000..02cef31 Binary files /dev/null and b/documents/pdf/pdf-js/franz-2.pdf differ diff --git a/documents/pdf/pdf-js/franz.pdf b/documents/pdf/pdf-js/franz.pdf new file mode 100644 index 0000000..a76fcb2 Binary files /dev/null and b/documents/pdf/pdf-js/franz.pdf differ diff --git a/documents/pdf/pdf-js/freeculture.pdf b/documents/pdf/pdf-js/freeculture.pdf new file mode 100644 index 0000000..bf967a5 Binary files /dev/null and b/documents/pdf/pdf-js/freeculture.pdf differ diff --git a/documents/pdf/pdf-js/freetext-no-appearance.pdf b/documents/pdf/pdf-js/freetext-no-appearance.pdf new file mode 100755 index 0000000..b60c7ad Binary files /dev/null and b/documents/pdf/pdf-js/freetext-no-appearance.pdf differ diff --git a/documents/pdf/pdf-js/freetexts.pdf b/documents/pdf/pdf-js/freetexts.pdf new file mode 100755 index 0000000..ef73348 Binary files /dev/null and b/documents/pdf/pdf-js/freetexts.pdf differ diff --git a/documents/pdf/pdf-js/french-diacritics.pdf b/documents/pdf/pdf-js/french-diacritics.pdf new file mode 100644 index 0000000..c79b536 Binary files /dev/null and b/documents/pdf/pdf-js/french-diacritics.pdf differ diff --git a/documents/pdf/pdf-js/german-umlaut-r.pdf b/documents/pdf/pdf-js/german-umlaut-r.pdf new file mode 100644 index 0000000..f42fa59 Binary files /dev/null and b/documents/pdf/pdf-js/german-umlaut-r.pdf differ diff --git a/documents/pdf/pdf-js/ghostscript-698804-1-fuzzed.pdf b/documents/pdf/pdf-js/ghostscript-698804-1-fuzzed.pdf new file mode 100644 index 0000000..bb07f9a Binary files /dev/null and b/documents/pdf/pdf-js/ghostscript-698804-1-fuzzed.pdf differ diff --git a/documents/pdf/pdf-js/glyph-accent.pdf b/documents/pdf/pdf-js/glyph-accent.pdf new file mode 100644 index 0000000..0689fca Binary files /dev/null and b/documents/pdf/pdf-js/glyph-accent.pdf differ diff --git a/documents/pdf/pdf-js/gradientfill.pdf b/documents/pdf/pdf-js/gradientfill.pdf new file mode 100644 index 0000000..cc45fea Binary files /dev/null and b/documents/pdf/pdf-js/gradientfill.pdf differ diff --git a/documents/pdf/pdf-js/helloworld-bad.pdf b/documents/pdf/pdf-js/helloworld-bad.pdf new file mode 100644 index 0000000..3397398 Binary files /dev/null and b/documents/pdf/pdf-js/helloworld-bad.pdf differ diff --git a/documents/pdf/pdf-js/helloworld.pdf b/documents/pdf/pdf-js/helloworld.pdf new file mode 100644 index 0000000..af288cf Binary files /dev/null and b/documents/pdf/pdf-js/helloworld.pdf differ diff --git a/documents/pdf/pdf-js/highlight-popup.pdf b/documents/pdf/pdf-js/highlight-popup.pdf new file mode 100755 index 0000000..1248560 Binary files /dev/null and b/documents/pdf/pdf-js/highlight-popup.pdf differ diff --git a/documents/pdf/pdf-js/highlight.pdf b/documents/pdf/pdf-js/highlight.pdf new file mode 100755 index 0000000..8aaf4d0 Binary files /dev/null and b/documents/pdf/pdf-js/highlight.pdf differ diff --git a/documents/pdf/pdf-js/highlights.pdf b/documents/pdf/pdf-js/highlights.pdf new file mode 100755 index 0000000..4ec8750 Binary files /dev/null and b/documents/pdf/pdf-js/highlights.pdf differ diff --git a/documents/pdf/pdf-js/identitytounicodemap-charcodeof.pdf b/documents/pdf/pdf-js/identitytounicodemap-charcodeof.pdf new file mode 100644 index 0000000..fada851 Binary files /dev/null and b/documents/pdf/pdf-js/identitytounicodemap-charcodeof.pdf differ diff --git a/documents/pdf/pdf-js/images-1bit-grayscale.pdf b/documents/pdf/pdf-js/images-1bit-grayscale.pdf new file mode 100644 index 0000000..fdc658f Binary files /dev/null and b/documents/pdf/pdf-js/images-1bit-grayscale.pdf differ diff --git a/documents/pdf/pdf-js/inks-basic.pdf b/documents/pdf/pdf-js/inks-basic.pdf new file mode 100644 index 0000000..02413fc Binary files /dev/null and b/documents/pdf/pdf-js/inks-basic.pdf differ diff --git a/documents/pdf/pdf-js/inks.pdf b/documents/pdf/pdf-js/inks.pdf new file mode 100644 index 0000000..56f6a83 Binary files /dev/null and b/documents/pdf/pdf-js/inks.pdf differ diff --git a/documents/pdf/pdf-js/issue1002.pdf b/documents/pdf/pdf-js/issue1002.pdf new file mode 100644 index 0000000..4545d9a Binary files /dev/null and b/documents/pdf/pdf-js/issue1002.pdf differ diff --git a/documents/pdf/pdf-js/issue10084-reduced.pdf b/documents/pdf/pdf-js/issue10084-reduced.pdf new file mode 100644 index 0000000..e70adcb Binary files /dev/null and b/documents/pdf/pdf-js/issue10084-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue10301.pdf b/documents/pdf/pdf-js/issue10301.pdf new file mode 100644 index 0000000..f35c83c Binary files /dev/null and b/documents/pdf/pdf-js/issue10301.pdf differ diff --git a/documents/pdf/pdf-js/issue10339-reduced.pdf b/documents/pdf/pdf-js/issue10339-reduced.pdf new file mode 100644 index 0000000..857d976 Binary files /dev/null and b/documents/pdf/pdf-js/issue10339-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue10388-reduced.pdf b/documents/pdf/pdf-js/issue10388-reduced.pdf new file mode 100644 index 0000000..50de1db Binary files /dev/null and b/documents/pdf/pdf-js/issue10388-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue10402.pdf b/documents/pdf/pdf-js/issue10402.pdf new file mode 100644 index 0000000..e7fda42 Binary files /dev/null and b/documents/pdf/pdf-js/issue10402.pdf differ diff --git a/documents/pdf/pdf-js/issue10438-reduced.pdf b/documents/pdf/pdf-js/issue10438-reduced.pdf new file mode 100644 index 0000000..ff29a17 Binary files /dev/null and b/documents/pdf/pdf-js/issue10438-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue1045.pdf b/documents/pdf/pdf-js/issue1045.pdf new file mode 100644 index 0000000..95942af Binary files /dev/null and b/documents/pdf/pdf-js/issue1045.pdf differ diff --git a/documents/pdf/pdf-js/issue10519-reduced.pdf b/documents/pdf/pdf-js/issue10519-reduced.pdf new file mode 100644 index 0000000..1473289 Binary files /dev/null and b/documents/pdf/pdf-js/issue10519-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue10529.pdf b/documents/pdf/pdf-js/issue10529.pdf new file mode 100644 index 0000000..a57fbbe Binary files /dev/null and b/documents/pdf/pdf-js/issue10529.pdf differ diff --git a/documents/pdf/pdf-js/issue10542-reduced.pdf b/documents/pdf/pdf-js/issue10542-reduced.pdf new file mode 100644 index 0000000..689fe9e Binary files /dev/null and b/documents/pdf/pdf-js/issue10542-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue1055r.pdf b/documents/pdf/pdf-js/issue1055r.pdf new file mode 100644 index 0000000..e611658 Binary files /dev/null and b/documents/pdf/pdf-js/issue1055r.pdf differ diff --git a/documents/pdf/pdf-js/issue10572.pdf b/documents/pdf/pdf-js/issue10572.pdf new file mode 100644 index 0000000..f886acb Binary files /dev/null and b/documents/pdf/pdf-js/issue10572.pdf differ diff --git a/documents/pdf/pdf-js/issue10640.pdf b/documents/pdf/pdf-js/issue10640.pdf new file mode 100644 index 0000000..7751b61 Binary files /dev/null and b/documents/pdf/pdf-js/issue10640.pdf differ diff --git a/documents/pdf/pdf-js/issue10665-reduced.pdf b/documents/pdf/pdf-js/issue10665-reduced.pdf new file mode 100644 index 0000000..10bec7e Binary files /dev/null and b/documents/pdf/pdf-js/issue10665-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue10900.pdf b/documents/pdf/pdf-js/issue10900.pdf new file mode 100644 index 0000000..3edd846 Binary files /dev/null and b/documents/pdf/pdf-js/issue10900.pdf differ diff --git a/documents/pdf/pdf-js/issue11016-reduced.pdf b/documents/pdf/pdf-js/issue11016-reduced.pdf new file mode 100644 index 0000000..e3b8cb8 Binary files /dev/null and b/documents/pdf/pdf-js/issue11016-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue11045.pdf b/documents/pdf/pdf-js/issue11045.pdf new file mode 100644 index 0000000..ca87c8a Binary files /dev/null and b/documents/pdf/pdf-js/issue11045.pdf differ diff --git a/documents/pdf/pdf-js/issue11124.pdf b/documents/pdf/pdf-js/issue11124.pdf new file mode 100644 index 0000000..287e888 Binary files /dev/null and b/documents/pdf/pdf-js/issue11124.pdf differ diff --git a/documents/pdf/pdf-js/issue11131-reduced.pdf b/documents/pdf/pdf-js/issue11131-reduced.pdf new file mode 100644 index 0000000..16bb8de Binary files /dev/null and b/documents/pdf/pdf-js/issue11131-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue11144-reduced.pdf b/documents/pdf/pdf-js/issue11144-reduced.pdf new file mode 100644 index 0000000..ec10aed Binary files /dev/null and b/documents/pdf/pdf-js/issue11144-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue11150-reduced.pdf b/documents/pdf/pdf-js/issue11150-reduced.pdf new file mode 100644 index 0000000..e66119d Binary files /dev/null and b/documents/pdf/pdf-js/issue11150-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue11242-reduced.pdf b/documents/pdf/pdf-js/issue11242-reduced.pdf new file mode 100644 index 0000000..5fc11fc Binary files /dev/null and b/documents/pdf/pdf-js/issue11242-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue11279.pdf b/documents/pdf/pdf-js/issue11279.pdf new file mode 100644 index 0000000..f57157d Binary files /dev/null and b/documents/pdf/pdf-js/issue11279.pdf differ diff --git a/documents/pdf/pdf-js/issue11362.pdf b/documents/pdf/pdf-js/issue11362.pdf new file mode 100644 index 0000000..bdda721 Binary files /dev/null and b/documents/pdf/pdf-js/issue11362.pdf differ diff --git a/documents/pdf/pdf-js/issue11403-reduced.pdf b/documents/pdf/pdf-js/issue11403-reduced.pdf new file mode 100644 index 0000000..3ebdd66 Binary files /dev/null and b/documents/pdf/pdf-js/issue11403-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue11442-reduced.pdf b/documents/pdf/pdf-js/issue11442-reduced.pdf new file mode 100644 index 0000000..e5dc175 Binary files /dev/null and b/documents/pdf/pdf-js/issue11442-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue11473.pdf b/documents/pdf/pdf-js/issue11473.pdf new file mode 100644 index 0000000..d45460d Binary files /dev/null and b/documents/pdf/pdf-js/issue11473.pdf differ diff --git a/documents/pdf/pdf-js/issue11477-reduced.pdf b/documents/pdf/pdf-js/issue11477-reduced.pdf new file mode 100644 index 0000000..0a0a3ef Binary files /dev/null and b/documents/pdf/pdf-js/issue11477-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue11549-reduced.pdf b/documents/pdf/pdf-js/issue11549-reduced.pdf new file mode 100644 index 0000000..2514058 Binary files /dev/null and b/documents/pdf/pdf-js/issue11549-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue11555.pdf b/documents/pdf/pdf-js/issue11555.pdf new file mode 100644 index 0000000..41c95a5 Binary files /dev/null and b/documents/pdf/pdf-js/issue11555.pdf differ diff --git a/documents/pdf/pdf-js/issue1155r.pdf b/documents/pdf/pdf-js/issue1155r.pdf new file mode 100644 index 0000000..3d987a2 Binary files /dev/null and b/documents/pdf/pdf-js/issue1155r.pdf differ diff --git a/documents/pdf/pdf-js/issue11578-reduced.pdf b/documents/pdf/pdf-js/issue11578-reduced.pdf new file mode 100644 index 0000000..db69767 Binary files /dev/null and b/documents/pdf/pdf-js/issue11578-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue11651.pdf b/documents/pdf/pdf-js/issue11651.pdf new file mode 100644 index 0000000..734c68c Binary files /dev/null and b/documents/pdf/pdf-js/issue11651.pdf differ diff --git a/documents/pdf/pdf-js/issue11656.pdf b/documents/pdf/pdf-js/issue11656.pdf new file mode 100644 index 0000000..244965d Binary files /dev/null and b/documents/pdf/pdf-js/issue11656.pdf differ diff --git a/documents/pdf/pdf-js/issue11697-reduced.pdf b/documents/pdf/pdf-js/issue11697-reduced.pdf new file mode 100644 index 0000000..51b7602 Binary files /dev/null and b/documents/pdf/pdf-js/issue11697-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue1171.pdf b/documents/pdf/pdf-js/issue1171.pdf new file mode 100644 index 0000000..a382e64 Binary files /dev/null and b/documents/pdf/pdf-js/issue1171.pdf differ diff --git a/documents/pdf/pdf-js/issue11713.pdf b/documents/pdf/pdf-js/issue11713.pdf new file mode 100644 index 0000000..f3f53b8 Binary files /dev/null and b/documents/pdf/pdf-js/issue11713.pdf differ diff --git a/documents/pdf/pdf-js/issue11718-reduced.pdf b/documents/pdf/pdf-js/issue11718-reduced.pdf new file mode 100644 index 0000000..035a733 Binary files /dev/null and b/documents/pdf/pdf-js/issue11718-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue11740-reduced.pdf b/documents/pdf/pdf-js/issue11740-reduced.pdf new file mode 100644 index 0000000..2974f14 Binary files /dev/null and b/documents/pdf/pdf-js/issue11740-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue11768-reduced.pdf b/documents/pdf/pdf-js/issue11768-reduced.pdf new file mode 100644 index 0000000..c06051d Binary files /dev/null and b/documents/pdf/pdf-js/issue11768-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue11878.pdf b/documents/pdf/pdf-js/issue11878.pdf new file mode 100644 index 0000000..b70c668 Binary files /dev/null and b/documents/pdf/pdf-js/issue11878.pdf differ diff --git a/documents/pdf/pdf-js/issue11913.pdf b/documents/pdf/pdf-js/issue11913.pdf new file mode 100644 index 0000000..1097c5b Binary files /dev/null and b/documents/pdf/pdf-js/issue11913.pdf differ diff --git a/documents/pdf/pdf-js/issue11915.pdf b/documents/pdf/pdf-js/issue11915.pdf new file mode 100644 index 0000000..bfe1ede Binary files /dev/null and b/documents/pdf/pdf-js/issue11915.pdf differ diff --git a/documents/pdf/pdf-js/issue11922-reduced.pdf b/documents/pdf/pdf-js/issue11922-reduced.pdf new file mode 100644 index 0000000..d9be38c Binary files /dev/null and b/documents/pdf/pdf-js/issue11922-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue11931.pdf b/documents/pdf/pdf-js/issue11931.pdf new file mode 100644 index 0000000..6ec78cf Binary files /dev/null and b/documents/pdf/pdf-js/issue11931.pdf differ diff --git a/documents/pdf/pdf-js/issue12007-reduced.pdf b/documents/pdf/pdf-js/issue12007-reduced.pdf new file mode 100644 index 0000000..ebafd87 Binary files /dev/null and b/documents/pdf/pdf-js/issue12007-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue12010-reduced.pdf b/documents/pdf/pdf-js/issue12010-reduced.pdf new file mode 100644 index 0000000..197b4d3 Binary files /dev/null and b/documents/pdf/pdf-js/issue12010-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue12120-reduced.pdf b/documents/pdf/pdf-js/issue12120-reduced.pdf new file mode 100644 index 0000000..72c1985 Binary files /dev/null and b/documents/pdf/pdf-js/issue12120-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue12213.pdf b/documents/pdf/pdf-js/issue12213.pdf new file mode 100755 index 0000000..3cf1b2b Binary files /dev/null and b/documents/pdf/pdf-js/issue12213.pdf differ diff --git a/documents/pdf/pdf-js/issue12295.pdf b/documents/pdf/pdf-js/issue12295.pdf new file mode 100644 index 0000000..8d91bb4 Binary files /dev/null and b/documents/pdf/pdf-js/issue12295.pdf differ diff --git a/documents/pdf/pdf-js/issue12337.pdf b/documents/pdf/pdf-js/issue12337.pdf new file mode 100644 index 0000000..4750cca Binary files /dev/null and b/documents/pdf/pdf-js/issue12337.pdf differ diff --git a/documents/pdf/pdf-js/issue12399-reduced.pdf b/documents/pdf/pdf-js/issue12399-reduced.pdf new file mode 100644 index 0000000..d34015b Binary files /dev/null and b/documents/pdf/pdf-js/issue12399-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue12418-reduced.pdf b/documents/pdf/pdf-js/issue12418-reduced.pdf new file mode 100644 index 0000000..461a7ce Binary files /dev/null and b/documents/pdf/pdf-js/issue12418-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue1249.pdf b/documents/pdf/pdf-js/issue1249.pdf new file mode 100644 index 0000000..c5edd78 Binary files /dev/null and b/documents/pdf/pdf-js/issue1249.pdf differ diff --git a/documents/pdf/pdf-js/issue12504.pdf b/documents/pdf/pdf-js/issue12504.pdf new file mode 100644 index 0000000..8cddb37 Binary files /dev/null and b/documents/pdf/pdf-js/issue12504.pdf differ diff --git a/documents/pdf/pdf-js/issue12705.pdf b/documents/pdf/pdf-js/issue12705.pdf new file mode 100644 index 0000000..fc301cc Binary files /dev/null and b/documents/pdf/pdf-js/issue12705.pdf differ diff --git a/documents/pdf/pdf-js/issue12706.pdf b/documents/pdf/pdf-js/issue12706.pdf new file mode 100644 index 0000000..c1a4b37 Binary files /dev/null and b/documents/pdf/pdf-js/issue12706.pdf differ diff --git a/documents/pdf/pdf-js/issue12750.pdf b/documents/pdf/pdf-js/issue12750.pdf new file mode 100644 index 0000000..8907f82 Binary files /dev/null and b/documents/pdf/pdf-js/issue12750.pdf differ diff --git a/documents/pdf/pdf-js/issue12798-page1-reduced.pdf b/documents/pdf/pdf-js/issue12798-page1-reduced.pdf new file mode 100644 index 0000000..2051e05 Binary files /dev/null and b/documents/pdf/pdf-js/issue12798-page1-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue12810.pdf b/documents/pdf/pdf-js/issue12810.pdf new file mode 100644 index 0000000..333da51 Binary files /dev/null and b/documents/pdf/pdf-js/issue12810.pdf differ diff --git a/documents/pdf/pdf-js/issue12823.pdf b/documents/pdf/pdf-js/issue12823.pdf new file mode 100644 index 0000000..088239a Binary files /dev/null and b/documents/pdf/pdf-js/issue12823.pdf differ diff --git a/documents/pdf/pdf-js/issue12841-reduced.pdf b/documents/pdf/pdf-js/issue12841-reduced.pdf new file mode 100644 index 0000000..76a5497 Binary files /dev/null and b/documents/pdf/pdf-js/issue12841-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue1293r.pdf b/documents/pdf/pdf-js/issue1293r.pdf new file mode 100644 index 0000000..9044fff Binary files /dev/null and b/documents/pdf/pdf-js/issue1293r.pdf differ diff --git a/documents/pdf/pdf-js/issue12963.pdf b/documents/pdf/pdf-js/issue12963.pdf new file mode 100644 index 0000000..e0a244a Binary files /dev/null and b/documents/pdf/pdf-js/issue12963.pdf differ diff --git a/documents/pdf/pdf-js/issue13003.pdf b/documents/pdf/pdf-js/issue13003.pdf new file mode 100644 index 0000000..256b709 Binary files /dev/null and b/documents/pdf/pdf-js/issue13003.pdf differ diff --git a/documents/pdf/pdf-js/issue13107-reduced.pdf b/documents/pdf/pdf-js/issue13107-reduced.pdf new file mode 100644 index 0000000..06f6f5a Binary files /dev/null and b/documents/pdf/pdf-js/issue13107-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue13147.pdf b/documents/pdf/pdf-js/issue13147.pdf new file mode 100644 index 0000000..5103e6a Binary files /dev/null and b/documents/pdf/pdf-js/issue13147.pdf differ diff --git a/documents/pdf/pdf-js/issue13193.pdf b/documents/pdf/pdf-js/issue13193.pdf new file mode 100644 index 0000000..00989c6 Binary files /dev/null and b/documents/pdf/pdf-js/issue13193.pdf differ diff --git a/documents/pdf/pdf-js/issue13201.pdf b/documents/pdf/pdf-js/issue13201.pdf new file mode 100644 index 0000000..38230fd Binary files /dev/null and b/documents/pdf/pdf-js/issue13201.pdf differ diff --git a/documents/pdf/pdf-js/issue13211.pdf b/documents/pdf/pdf-js/issue13211.pdf new file mode 100755 index 0000000..ca91a14 Binary files /dev/null and b/documents/pdf/pdf-js/issue13211.pdf differ diff --git a/documents/pdf/pdf-js/issue13226.pdf b/documents/pdf/pdf-js/issue13226.pdf new file mode 100644 index 0000000..bc7dfc2 Binary files /dev/null and b/documents/pdf/pdf-js/issue13226.pdf differ diff --git a/documents/pdf/pdf-js/issue13242.pdf b/documents/pdf/pdf-js/issue13242.pdf new file mode 100644 index 0000000..dd620da Binary files /dev/null and b/documents/pdf/pdf-js/issue13242.pdf differ diff --git a/documents/pdf/pdf-js/issue13269.pdf b/documents/pdf/pdf-js/issue13269.pdf new file mode 100644 index 0000000..7f58ba4 Binary files /dev/null and b/documents/pdf/pdf-js/issue13269.pdf differ diff --git a/documents/pdf/pdf-js/issue13271.pdf b/documents/pdf/pdf-js/issue13271.pdf new file mode 100644 index 0000000..a2c560d Binary files /dev/null and b/documents/pdf/pdf-js/issue13271.pdf differ diff --git a/documents/pdf/pdf-js/issue13316-reduced.pdf b/documents/pdf/pdf-js/issue13316-reduced.pdf new file mode 100644 index 0000000..3155707 Binary files /dev/null and b/documents/pdf/pdf-js/issue13316-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue13325-reduced.pdf b/documents/pdf/pdf-js/issue13325-reduced.pdf new file mode 100644 index 0000000..430860d Binary files /dev/null and b/documents/pdf/pdf-js/issue13325-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue13343.pdf b/documents/pdf/pdf-js/issue13343.pdf new file mode 100644 index 0000000..5b4cb23 Binary files /dev/null and b/documents/pdf/pdf-js/issue13343.pdf differ diff --git a/documents/pdf/pdf-js/issue13372.pdf b/documents/pdf/pdf-js/issue13372.pdf new file mode 100644 index 0000000..4d3b6e1 Binary files /dev/null and b/documents/pdf/pdf-js/issue13372.pdf differ diff --git a/documents/pdf/pdf-js/issue13447.pdf b/documents/pdf/pdf-js/issue13447.pdf new file mode 100644 index 0000000..ec4fc74 Binary files /dev/null and b/documents/pdf/pdf-js/issue13447.pdf differ diff --git a/documents/pdf/pdf-js/issue1350.pdf b/documents/pdf/pdf-js/issue1350.pdf new file mode 100644 index 0000000..fdece85 Binary files /dev/null and b/documents/pdf/pdf-js/issue1350.pdf differ diff --git a/documents/pdf/pdf-js/issue13561-reduced.pdf b/documents/pdf/pdf-js/issue13561-reduced.pdf new file mode 100644 index 0000000..b2c83a0 Binary files /dev/null and b/documents/pdf/pdf-js/issue13561-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue13916.pdf b/documents/pdf/pdf-js/issue13916.pdf new file mode 100644 index 0000000..73770f7 Binary files /dev/null and b/documents/pdf/pdf-js/issue13916.pdf differ diff --git a/documents/pdf/pdf-js/issue13931.pdf b/documents/pdf/pdf-js/issue13931.pdf new file mode 100644 index 0000000..a3767e2 Binary files /dev/null and b/documents/pdf/pdf-js/issue13931.pdf differ diff --git a/documents/pdf/pdf-js/issue14023.pdf b/documents/pdf/pdf-js/issue14023.pdf new file mode 100644 index 0000000..9c123d1 Binary files /dev/null and b/documents/pdf/pdf-js/issue14023.pdf differ diff --git a/documents/pdf/pdf-js/issue14046.pdf b/documents/pdf/pdf-js/issue14046.pdf new file mode 100644 index 0000000..019af7f Binary files /dev/null and b/documents/pdf/pdf-js/issue14046.pdf differ diff --git a/documents/pdf/pdf-js/issue14048.pdf b/documents/pdf/pdf-js/issue14048.pdf new file mode 100644 index 0000000..1f6ee51 Binary files /dev/null and b/documents/pdf/pdf-js/issue14048.pdf differ diff --git a/documents/pdf/pdf-js/issue14117.pdf b/documents/pdf/pdf-js/issue14117.pdf new file mode 100644 index 0000000..8c98689 Binary files /dev/null and b/documents/pdf/pdf-js/issue14117.pdf differ diff --git a/documents/pdf/pdf-js/issue14130.pdf b/documents/pdf/pdf-js/issue14130.pdf new file mode 100644 index 0000000..b8b9da6 Binary files /dev/null and b/documents/pdf/pdf-js/issue14130.pdf differ diff --git a/documents/pdf/pdf-js/issue14165.pdf b/documents/pdf/pdf-js/issue14165.pdf new file mode 100644 index 0000000..a233f26 Binary files /dev/null and b/documents/pdf/pdf-js/issue14165.pdf differ diff --git a/documents/pdf/pdf-js/issue14256.pdf b/documents/pdf/pdf-js/issue14256.pdf new file mode 100644 index 0000000..e96a1c9 Binary files /dev/null and b/documents/pdf/pdf-js/issue14256.pdf differ diff --git a/documents/pdf/pdf-js/issue14267.pdf b/documents/pdf/pdf-js/issue14267.pdf new file mode 100644 index 0000000..af3df9a Binary files /dev/null and b/documents/pdf/pdf-js/issue14267.pdf differ diff --git a/documents/pdf/pdf-js/issue14297.pdf b/documents/pdf/pdf-js/issue14297.pdf new file mode 100644 index 0000000..3a2260d Binary files /dev/null and b/documents/pdf/pdf-js/issue14297.pdf differ diff --git a/documents/pdf/pdf-js/issue14307.pdf b/documents/pdf/pdf-js/issue14307.pdf new file mode 100644 index 0000000..ab517f9 Binary files /dev/null and b/documents/pdf/pdf-js/issue14307.pdf differ diff --git a/documents/pdf/pdf-js/issue14415.pdf b/documents/pdf/pdf-js/issue14415.pdf new file mode 100644 index 0000000..02e44ae Binary files /dev/null and b/documents/pdf/pdf-js/issue14415.pdf differ diff --git a/documents/pdf/pdf-js/issue14438.pdf b/documents/pdf/pdf-js/issue14438.pdf new file mode 100644 index 0000000..123f72c Binary files /dev/null and b/documents/pdf/pdf-js/issue14438.pdf differ diff --git a/documents/pdf/pdf-js/issue14462-reduced.pdf b/documents/pdf/pdf-js/issue14462-reduced.pdf new file mode 100644 index 0000000..4bae7e4 Binary files /dev/null and b/documents/pdf/pdf-js/issue14462-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue14497.pdf b/documents/pdf/pdf-js/issue14497.pdf new file mode 100755 index 0000000..c5ae7f3 Binary files /dev/null and b/documents/pdf/pdf-js/issue14497.pdf differ diff --git a/documents/pdf/pdf-js/issue14502.pdf b/documents/pdf/pdf-js/issue14502.pdf new file mode 100755 index 0000000..9823cbe Binary files /dev/null and b/documents/pdf/pdf-js/issue14502.pdf differ diff --git a/documents/pdf/pdf-js/issue1453.pdf b/documents/pdf/pdf-js/issue1453.pdf new file mode 100644 index 0000000..b5b8703 Binary files /dev/null and b/documents/pdf/pdf-js/issue1453.pdf differ diff --git a/documents/pdf/pdf-js/issue14565.pdf b/documents/pdf/pdf-js/issue14565.pdf new file mode 100644 index 0000000..17615fd Binary files /dev/null and b/documents/pdf/pdf-js/issue14565.pdf differ diff --git a/documents/pdf/pdf-js/issue14618.pdf b/documents/pdf/pdf-js/issue14618.pdf new file mode 100644 index 0000000..6bcfdff Binary files /dev/null and b/documents/pdf/pdf-js/issue14618.pdf differ diff --git a/documents/pdf/pdf-js/issue14627.pdf b/documents/pdf/pdf-js/issue14627.pdf new file mode 100755 index 0000000..275ed8c Binary files /dev/null and b/documents/pdf/pdf-js/issue14627.pdf differ diff --git a/documents/pdf/pdf-js/issue14705.pdf b/documents/pdf/pdf-js/issue14705.pdf new file mode 100644 index 0000000..7dc9c32 Binary files /dev/null and b/documents/pdf/pdf-js/issue14705.pdf differ diff --git a/documents/pdf/pdf-js/issue14755.pdf b/documents/pdf/pdf-js/issue14755.pdf new file mode 100644 index 0000000..6cca41c Binary files /dev/null and b/documents/pdf/pdf-js/issue14755.pdf differ diff --git a/documents/pdf/pdf-js/issue14802.pdf b/documents/pdf/pdf-js/issue14802.pdf new file mode 100644 index 0000000..f7664a9 Binary files /dev/null and b/documents/pdf/pdf-js/issue14802.pdf differ diff --git a/documents/pdf/pdf-js/issue14814.pdf b/documents/pdf/pdf-js/issue14814.pdf new file mode 100644 index 0000000..a7e4746 Binary files /dev/null and b/documents/pdf/pdf-js/issue14814.pdf differ diff --git a/documents/pdf/pdf-js/issue14821.pdf b/documents/pdf/pdf-js/issue14821.pdf new file mode 100644 index 0000000..f41843a Binary files /dev/null and b/documents/pdf/pdf-js/issue14821.pdf differ diff --git a/documents/pdf/pdf-js/issue14847.pdf b/documents/pdf/pdf-js/issue14847.pdf new file mode 100644 index 0000000..4f974eb Binary files /dev/null and b/documents/pdf/pdf-js/issue14847.pdf differ diff --git a/documents/pdf/pdf-js/issue14862.pdf b/documents/pdf/pdf-js/issue14862.pdf new file mode 100755 index 0000000..03c5402 Binary files /dev/null and b/documents/pdf/pdf-js/issue14862.pdf differ diff --git a/documents/pdf/pdf-js/issue14881.pdf b/documents/pdf/pdf-js/issue14881.pdf new file mode 100644 index 0000000..111df5c Binary files /dev/null and b/documents/pdf/pdf-js/issue14881.pdf differ diff --git a/documents/pdf/pdf-js/issue14953.pdf b/documents/pdf/pdf-js/issue14953.pdf new file mode 100644 index 0000000..2b8838a Binary files /dev/null and b/documents/pdf/pdf-js/issue14953.pdf differ diff --git a/documents/pdf/pdf-js/issue14999-reduced.pdf b/documents/pdf/pdf-js/issue14999-reduced.pdf new file mode 100644 index 0000000..c9e4f11 Binary files /dev/null and b/documents/pdf/pdf-js/issue14999-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue15012.pdf b/documents/pdf/pdf-js/issue15012.pdf new file mode 100644 index 0000000..bfad023 Binary files /dev/null and b/documents/pdf/pdf-js/issue15012.pdf differ diff --git a/documents/pdf/pdf-js/issue15053.pdf b/documents/pdf/pdf-js/issue15053.pdf new file mode 100755 index 0000000..f61be51 Binary files /dev/null and b/documents/pdf/pdf-js/issue15053.pdf differ diff --git a/documents/pdf/pdf-js/issue15092.pdf b/documents/pdf/pdf-js/issue15092.pdf new file mode 100755 index 0000000..3eceeb6 Binary files /dev/null and b/documents/pdf/pdf-js/issue15092.pdf differ diff --git a/documents/pdf/pdf-js/issue15096.pdf b/documents/pdf/pdf-js/issue15096.pdf new file mode 100755 index 0000000..5446c88 Binary files /dev/null and b/documents/pdf/pdf-js/issue15096.pdf differ diff --git a/documents/pdf/pdf-js/issue1512r.pdf b/documents/pdf/pdf-js/issue1512r.pdf new file mode 100644 index 0000000..94cb344 Binary files /dev/null and b/documents/pdf/pdf-js/issue1512r.pdf differ diff --git a/documents/pdf/pdf-js/issue15150.pdf b/documents/pdf/pdf-js/issue15150.pdf new file mode 100644 index 0000000..9037a85 Binary files /dev/null and b/documents/pdf/pdf-js/issue15150.pdf differ diff --git a/documents/pdf/pdf-js/issue15262.pdf b/documents/pdf/pdf-js/issue15262.pdf new file mode 100644 index 0000000..88083ce Binary files /dev/null and b/documents/pdf/pdf-js/issue15262.pdf differ diff --git a/documents/pdf/pdf-js/issue15340.pdf b/documents/pdf/pdf-js/issue15340.pdf new file mode 100644 index 0000000..225c060 Binary files /dev/null and b/documents/pdf/pdf-js/issue15340.pdf differ diff --git a/documents/pdf/pdf-js/issue15367.pdf b/documents/pdf/pdf-js/issue15367.pdf new file mode 100644 index 0000000..5cded5a Binary files /dev/null and b/documents/pdf/pdf-js/issue15367.pdf differ diff --git a/documents/pdf/pdf-js/issue15372.pdf b/documents/pdf/pdf-js/issue15372.pdf new file mode 100644 index 0000000..584b740 Binary files /dev/null and b/documents/pdf/pdf-js/issue15372.pdf differ diff --git a/documents/pdf/pdf-js/issue15441.pdf b/documents/pdf/pdf-js/issue15441.pdf new file mode 100644 index 0000000..22598a2 Binary files /dev/null and b/documents/pdf/pdf-js/issue15441.pdf differ diff --git a/documents/pdf/pdf-js/issue15443.pdf b/documents/pdf/pdf-js/issue15443.pdf new file mode 100644 index 0000000..587a5a7 Binary files /dev/null and b/documents/pdf/pdf-js/issue15443.pdf differ diff --git a/documents/pdf/pdf-js/issue15516-reduced.pdf b/documents/pdf/pdf-js/issue15516-reduced.pdf new file mode 100644 index 0000000..5ee095a Binary files /dev/null and b/documents/pdf/pdf-js/issue15516-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue15557.pdf b/documents/pdf/pdf-js/issue15557.pdf new file mode 100644 index 0000000..4aa2e39 Binary files /dev/null and b/documents/pdf/pdf-js/issue15557.pdf differ diff --git a/documents/pdf/pdf-js/issue15590.pdf b/documents/pdf/pdf-js/issue15590.pdf new file mode 100644 index 0000000..146c91c Binary files /dev/null and b/documents/pdf/pdf-js/issue15590.pdf differ diff --git a/documents/pdf/pdf-js/issue15594-reduced.pdf b/documents/pdf/pdf-js/issue15594-reduced.pdf new file mode 100644 index 0000000..3b84d85 Binary files /dev/null and b/documents/pdf/pdf-js/issue15594-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue15597.pdf b/documents/pdf/pdf-js/issue15597.pdf new file mode 100755 index 0000000..7d284ad Binary files /dev/null and b/documents/pdf/pdf-js/issue15597.pdf differ diff --git a/documents/pdf/pdf-js/issue15629.pdf b/documents/pdf/pdf-js/issue15629.pdf new file mode 100644 index 0000000..e2f782e Binary files /dev/null and b/documents/pdf/pdf-js/issue15629.pdf differ diff --git a/documents/pdf/pdf-js/issue15690.pdf b/documents/pdf/pdf-js/issue15690.pdf new file mode 100755 index 0000000..8ec6e74 Binary files /dev/null and b/documents/pdf/pdf-js/issue15690.pdf differ diff --git a/documents/pdf/pdf-js/issue15716.pdf b/documents/pdf/pdf-js/issue15716.pdf new file mode 100644 index 0000000..9734da6 Binary files /dev/null and b/documents/pdf/pdf-js/issue15716.pdf differ diff --git a/documents/pdf/pdf-js/issue15753.pdf b/documents/pdf/pdf-js/issue15753.pdf new file mode 100755 index 0000000..3d06d81 Binary files /dev/null and b/documents/pdf/pdf-js/issue15753.pdf differ diff --git a/documents/pdf/pdf-js/issue15759.pdf b/documents/pdf/pdf-js/issue15759.pdf new file mode 100755 index 0000000..fbcf2af Binary files /dev/null and b/documents/pdf/pdf-js/issue15759.pdf differ diff --git a/documents/pdf/pdf-js/issue15789.pdf b/documents/pdf/pdf-js/issue15789.pdf new file mode 100755 index 0000000..29fb92d Binary files /dev/null and b/documents/pdf/pdf-js/issue15789.pdf differ diff --git a/documents/pdf/pdf-js/issue15815.pdf b/documents/pdf/pdf-js/issue15815.pdf new file mode 100755 index 0000000..b042f34 Binary files /dev/null and b/documents/pdf/pdf-js/issue15815.pdf differ diff --git a/documents/pdf/pdf-js/issue15818.pdf b/documents/pdf/pdf-js/issue15818.pdf new file mode 100755 index 0000000..eea313a Binary files /dev/null and b/documents/pdf/pdf-js/issue15818.pdf differ diff --git a/documents/pdf/pdf-js/issue15893-reduced.pdf b/documents/pdf/pdf-js/issue15893-reduced.pdf new file mode 100644 index 0000000..6520ff8 Binary files /dev/null and b/documents/pdf/pdf-js/issue15893-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue15910.pdf b/documents/pdf/pdf-js/issue15910.pdf new file mode 100644 index 0000000..a997f29 Binary files /dev/null and b/documents/pdf/pdf-js/issue15910.pdf differ diff --git a/documents/pdf/pdf-js/issue15977-reduced.pdf b/documents/pdf/pdf-js/issue15977-reduced.pdf new file mode 100644 index 0000000..15737bc Binary files /dev/null and b/documents/pdf/pdf-js/issue15977-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue16021.pdf b/documents/pdf/pdf-js/issue16021.pdf new file mode 100755 index 0000000..7269ec5 Binary files /dev/null and b/documents/pdf/pdf-js/issue16021.pdf differ diff --git a/documents/pdf/pdf-js/issue16038.pdf b/documents/pdf/pdf-js/issue16038.pdf new file mode 100644 index 0000000..7974467 Binary files /dev/null and b/documents/pdf/pdf-js/issue16038.pdf differ diff --git a/documents/pdf/pdf-js/issue16063.pdf b/documents/pdf/pdf-js/issue16063.pdf new file mode 100755 index 0000000..9b628b6 Binary files /dev/null and b/documents/pdf/pdf-js/issue16063.pdf differ diff --git a/documents/pdf/pdf-js/issue16067.pdf b/documents/pdf/pdf-js/issue16067.pdf new file mode 100755 index 0000000..3b5156d Binary files /dev/null and b/documents/pdf/pdf-js/issue16067.pdf differ diff --git a/documents/pdf/pdf-js/issue16176.pdf b/documents/pdf/pdf-js/issue16176.pdf new file mode 100644 index 0000000..7b3ba26 Binary files /dev/null and b/documents/pdf/pdf-js/issue16176.pdf differ diff --git a/documents/pdf/pdf-js/issue16221.pdf b/documents/pdf/pdf-js/issue16221.pdf new file mode 100755 index 0000000..2b1ae02 Binary files /dev/null and b/documents/pdf/pdf-js/issue16221.pdf differ diff --git a/documents/pdf/pdf-js/issue16224.pdf b/documents/pdf/pdf-js/issue16224.pdf new file mode 100755 index 0000000..8db8593 Binary files /dev/null and b/documents/pdf/pdf-js/issue16224.pdf differ diff --git a/documents/pdf/pdf-js/issue16263.pdf b/documents/pdf/pdf-js/issue16263.pdf new file mode 100644 index 0000000..b8835e8 Binary files /dev/null and b/documents/pdf/pdf-js/issue16263.pdf differ diff --git a/documents/pdf/pdf-js/issue16278.pdf b/documents/pdf/pdf-js/issue16278.pdf new file mode 100644 index 0000000..e94a59d Binary files /dev/null and b/documents/pdf/pdf-js/issue16278.pdf differ diff --git a/documents/pdf/pdf-js/issue16287.pdf b/documents/pdf/pdf-js/issue16287.pdf new file mode 100644 index 0000000..cc1d7c7 Binary files /dev/null and b/documents/pdf/pdf-js/issue16287.pdf differ diff --git a/documents/pdf/pdf-js/issue16316.pdf b/documents/pdf/pdf-js/issue16316.pdf new file mode 100755 index 0000000..378e91b Binary files /dev/null and b/documents/pdf/pdf-js/issue16316.pdf differ diff --git a/documents/pdf/pdf-js/issue16473.pdf b/documents/pdf/pdf-js/issue16473.pdf new file mode 100755 index 0000000..77f9393 Binary files /dev/null and b/documents/pdf/pdf-js/issue16473.pdf differ diff --git a/documents/pdf/pdf-js/issue16500.pdf b/documents/pdf/pdf-js/issue16500.pdf new file mode 100755 index 0000000..1853fe1 Binary files /dev/null and b/documents/pdf/pdf-js/issue16500.pdf differ diff --git a/documents/pdf/pdf-js/issue16538.pdf b/documents/pdf/pdf-js/issue16538.pdf new file mode 100644 index 0000000..94235cc Binary files /dev/null and b/documents/pdf/pdf-js/issue16538.pdf differ diff --git a/documents/pdf/pdf-js/issue16553.pdf b/documents/pdf/pdf-js/issue16553.pdf new file mode 100755 index 0000000..597440e Binary files /dev/null and b/documents/pdf/pdf-js/issue16553.pdf differ diff --git a/documents/pdf/pdf-js/issue1655r.pdf b/documents/pdf/pdf-js/issue1655r.pdf new file mode 100644 index 0000000..32d74cc Binary files /dev/null and b/documents/pdf/pdf-js/issue1655r.pdf differ diff --git a/documents/pdf/pdf-js/issue16633.pdf b/documents/pdf/pdf-js/issue16633.pdf new file mode 100755 index 0000000..78a222e Binary files /dev/null and b/documents/pdf/pdf-js/issue16633.pdf differ diff --git a/documents/pdf/pdf-js/issue17056.pdf b/documents/pdf/pdf-js/issue17056.pdf new file mode 100644 index 0000000..f9bdfb0 Binary files /dev/null and b/documents/pdf/pdf-js/issue17056.pdf differ diff --git a/documents/pdf/pdf-js/issue17064-readonly.pdf b/documents/pdf/pdf-js/issue17064-readonly.pdf new file mode 100644 index 0000000..6eaf6c3 Binary files /dev/null and b/documents/pdf/pdf-js/issue17064-readonly.pdf differ diff --git a/documents/pdf/pdf-js/issue17065.pdf b/documents/pdf/pdf-js/issue17065.pdf new file mode 100644 index 0000000..cf7a526 Binary files /dev/null and b/documents/pdf/pdf-js/issue17065.pdf differ diff --git a/documents/pdf/pdf-js/issue17069.pdf b/documents/pdf/pdf-js/issue17069.pdf new file mode 100755 index 0000000..139587c Binary files /dev/null and b/documents/pdf/pdf-js/issue17069.pdf differ diff --git a/documents/pdf/pdf-js/issue17147.pdf b/documents/pdf/pdf-js/issue17147.pdf new file mode 100644 index 0000000..ad46be4 Binary files /dev/null and b/documents/pdf/pdf-js/issue17147.pdf differ diff --git a/documents/pdf/pdf-js/issue17215.pdf b/documents/pdf/pdf-js/issue17215.pdf new file mode 100755 index 0000000..7ea4a6a Binary files /dev/null and b/documents/pdf/pdf-js/issue17215.pdf differ diff --git a/documents/pdf/pdf-js/issue17492.pdf b/documents/pdf/pdf-js/issue17492.pdf new file mode 100644 index 0000000..12fec2b Binary files /dev/null and b/documents/pdf/pdf-js/issue17492.pdf differ diff --git a/documents/pdf/pdf-js/issue17540.pdf b/documents/pdf/pdf-js/issue17540.pdf new file mode 100644 index 0000000..203d25a Binary files /dev/null and b/documents/pdf/pdf-js/issue17540.pdf differ diff --git a/documents/pdf/pdf-js/issue17554.pdf b/documents/pdf/pdf-js/issue17554.pdf new file mode 100644 index 0000000..2a601bd Binary files /dev/null and b/documents/pdf/pdf-js/issue17554.pdf differ diff --git a/documents/pdf/pdf-js/issue17671.pdf b/documents/pdf/pdf-js/issue17671.pdf new file mode 100755 index 0000000..e8db772 Binary files /dev/null and b/documents/pdf/pdf-js/issue17671.pdf differ diff --git a/documents/pdf/pdf-js/issue17679-2.pdf b/documents/pdf/pdf-js/issue17679-2.pdf new file mode 100644 index 0000000..c00939a Binary files /dev/null and b/documents/pdf/pdf-js/issue17679-2.pdf differ diff --git a/documents/pdf/pdf-js/issue17679.pdf b/documents/pdf/pdf-js/issue17679.pdf new file mode 100644 index 0000000..b8cb04b Binary files /dev/null and b/documents/pdf/pdf-js/issue17679.pdf differ diff --git a/documents/pdf/pdf-js/issue17730.pdf b/documents/pdf/pdf-js/issue17730.pdf new file mode 100644 index 0000000..3f9f08c Binary files /dev/null and b/documents/pdf/pdf-js/issue17730.pdf differ diff --git a/documents/pdf/pdf-js/issue17808.pdf b/documents/pdf/pdf-js/issue17808.pdf new file mode 100755 index 0000000..9930423 Binary files /dev/null and b/documents/pdf/pdf-js/issue17808.pdf differ diff --git a/documents/pdf/pdf-js/issue17846.pdf b/documents/pdf/pdf-js/issue17846.pdf new file mode 100644 index 0000000..e6459bd Binary files /dev/null and b/documents/pdf/pdf-js/issue17846.pdf differ diff --git a/documents/pdf/pdf-js/issue17848.pdf b/documents/pdf/pdf-js/issue17848.pdf new file mode 100644 index 0000000..0ad552b Binary files /dev/null and b/documents/pdf/pdf-js/issue17848.pdf differ diff --git a/documents/pdf/pdf-js/issue17871-bottom-right.pdf b/documents/pdf/pdf-js/issue17871-bottom-right.pdf new file mode 100755 index 0000000..a7e3203 Binary files /dev/null and b/documents/pdf/pdf-js/issue17871-bottom-right.pdf differ diff --git a/documents/pdf/pdf-js/issue17871-top-right.pdf b/documents/pdf/pdf-js/issue17871-top-right.pdf new file mode 100755 index 0000000..4b27df0 Binary files /dev/null and b/documents/pdf/pdf-js/issue17871-top-right.pdf differ diff --git a/documents/pdf/pdf-js/issue17904.pdf b/documents/pdf/pdf-js/issue17904.pdf new file mode 100644 index 0000000..6a36ec7 Binary files /dev/null and b/documents/pdf/pdf-js/issue17904.pdf differ diff --git a/documents/pdf/pdf-js/issue17929.pdf b/documents/pdf/pdf-js/issue17929.pdf new file mode 100755 index 0000000..5895cc5 Binary files /dev/null and b/documents/pdf/pdf-js/issue17929.pdf differ diff --git a/documents/pdf/pdf-js/issue17998.pdf b/documents/pdf/pdf-js/issue17998.pdf new file mode 100755 index 0000000..016c691 Binary files /dev/null and b/documents/pdf/pdf-js/issue17998.pdf differ diff --git a/documents/pdf/pdf-js/issue18030.pdf b/documents/pdf/pdf-js/issue18030.pdf new file mode 100644 index 0000000..ad66a05 Binary files /dev/null and b/documents/pdf/pdf-js/issue18030.pdf differ diff --git a/documents/pdf/pdf-js/issue18036.pdf b/documents/pdf/pdf-js/issue18036.pdf new file mode 100755 index 0000000..bd292b3 Binary files /dev/null and b/documents/pdf/pdf-js/issue18036.pdf differ diff --git a/documents/pdf/pdf-js/issue18042.pdf b/documents/pdf/pdf-js/issue18042.pdf new file mode 100644 index 0000000..2857137 Binary files /dev/null and b/documents/pdf/pdf-js/issue18042.pdf differ diff --git a/documents/pdf/pdf-js/issue18059.pdf b/documents/pdf/pdf-js/issue18059.pdf new file mode 100644 index 0000000..84ff7b3 Binary files /dev/null and b/documents/pdf/pdf-js/issue18059.pdf differ diff --git a/documents/pdf/pdf-js/issue18072.pdf b/documents/pdf/pdf-js/issue18072.pdf new file mode 100644 index 0000000..c616943 Binary files /dev/null and b/documents/pdf/pdf-js/issue18072.pdf differ diff --git a/documents/pdf/pdf-js/issue18099-reduced.pdf b/documents/pdf/pdf-js/issue18099-reduced.pdf new file mode 100644 index 0000000..005ad0e Binary files /dev/null and b/documents/pdf/pdf-js/issue18099-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue18117.pdf b/documents/pdf/pdf-js/issue18117.pdf new file mode 100644 index 0000000..b8ff542 Binary files /dev/null and b/documents/pdf/pdf-js/issue18117.pdf differ diff --git a/documents/pdf/pdf-js/issue18305.pdf b/documents/pdf/pdf-js/issue18305.pdf new file mode 100755 index 0000000..eb260d8 Binary files /dev/null and b/documents/pdf/pdf-js/issue18305.pdf differ diff --git a/documents/pdf/pdf-js/issue18360.pdf b/documents/pdf/pdf-js/issue18360.pdf new file mode 100755 index 0000000..3800ec1 Binary files /dev/null and b/documents/pdf/pdf-js/issue18360.pdf differ diff --git a/documents/pdf/pdf-js/issue18408-reduced.pdf b/documents/pdf/pdf-js/issue18408-reduced.pdf new file mode 100644 index 0000000..985b0c0 Binary files /dev/null and b/documents/pdf/pdf-js/issue18408-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue18536.pdf b/documents/pdf/pdf-js/issue18536.pdf new file mode 100755 index 0000000..774a12d Binary files /dev/null and b/documents/pdf/pdf-js/issue18536.pdf differ diff --git a/documents/pdf/pdf-js/issue18561.pdf b/documents/pdf/pdf-js/issue18561.pdf new file mode 100755 index 0000000..b2452c4 Binary files /dev/null and b/documents/pdf/pdf-js/issue18561.pdf differ diff --git a/documents/pdf/pdf-js/issue18645.pdf b/documents/pdf/pdf-js/issue18645.pdf new file mode 100644 index 0000000..4b4d26b Binary files /dev/null and b/documents/pdf/pdf-js/issue18645.pdf differ diff --git a/documents/pdf/pdf-js/issue18693.pdf b/documents/pdf/pdf-js/issue18693.pdf new file mode 100755 index 0000000..2d8d052 Binary files /dev/null and b/documents/pdf/pdf-js/issue18693.pdf differ diff --git a/documents/pdf/pdf-js/issue18694.pdf b/documents/pdf/pdf-js/issue18694.pdf new file mode 100755 index 0000000..6619f5e Binary files /dev/null and b/documents/pdf/pdf-js/issue18694.pdf differ diff --git a/documents/pdf/pdf-js/issue18823.pdf b/documents/pdf/pdf-js/issue18823.pdf new file mode 100644 index 0000000..1d629d6 Binary files /dev/null and b/documents/pdf/pdf-js/issue18823.pdf differ diff --git a/documents/pdf/pdf-js/issue18894.pdf b/documents/pdf/pdf-js/issue18894.pdf new file mode 100755 index 0000000..d8636ab Binary files /dev/null and b/documents/pdf/pdf-js/issue18894.pdf differ diff --git a/documents/pdf/pdf-js/issue18956.pdf b/documents/pdf/pdf-js/issue18956.pdf new file mode 100755 index 0000000..bca697d Binary files /dev/null and b/documents/pdf/pdf-js/issue18956.pdf differ diff --git a/documents/pdf/pdf-js/issue18986.pdf b/documents/pdf/pdf-js/issue18986.pdf new file mode 100644 index 0000000..bcd926b Binary files /dev/null and b/documents/pdf/pdf-js/issue18986.pdf differ diff --git a/documents/pdf/pdf-js/issue1905.pdf b/documents/pdf/pdf-js/issue1905.pdf new file mode 100644 index 0000000..64e7677 Binary files /dev/null and b/documents/pdf/pdf-js/issue1905.pdf differ diff --git a/documents/pdf/pdf-js/issue19083.pdf b/documents/pdf/pdf-js/issue19083.pdf new file mode 100755 index 0000000..6c31ddb Binary files /dev/null and b/documents/pdf/pdf-js/issue19083.pdf differ diff --git a/documents/pdf/pdf-js/issue19120.pdf b/documents/pdf/pdf-js/issue19120.pdf new file mode 100755 index 0000000..501b044 Binary files /dev/null and b/documents/pdf/pdf-js/issue19120.pdf differ diff --git a/documents/pdf/pdf-js/issue1985.pdf b/documents/pdf/pdf-js/issue1985.pdf new file mode 100644 index 0000000..c374781 Binary files /dev/null and b/documents/pdf/pdf-js/issue1985.pdf differ diff --git a/documents/pdf/pdf-js/issue2017r.pdf b/documents/pdf/pdf-js/issue2017r.pdf new file mode 100644 index 0000000..813b556 Binary files /dev/null and b/documents/pdf/pdf-js/issue2017r.pdf differ diff --git a/documents/pdf/pdf-js/issue2074.pdf b/documents/pdf/pdf-js/issue2074.pdf new file mode 100644 index 0000000..2dc66df Binary files /dev/null and b/documents/pdf/pdf-js/issue2074.pdf differ diff --git a/documents/pdf/pdf-js/issue2099-1.pdf b/documents/pdf/pdf-js/issue2099-1.pdf new file mode 100644 index 0000000..78a1eb3 Binary files /dev/null and b/documents/pdf/pdf-js/issue2099-1.pdf differ diff --git a/documents/pdf/pdf-js/issue2128r.pdf b/documents/pdf/pdf-js/issue2128r.pdf new file mode 100644 index 0000000..1c5df57 Binary files /dev/null and b/documents/pdf/pdf-js/issue2128r.pdf differ diff --git a/documents/pdf/pdf-js/issue215.pdf b/documents/pdf/pdf-js/issue215.pdf new file mode 100644 index 0000000..782a28a Binary files /dev/null and b/documents/pdf/pdf-js/issue215.pdf differ diff --git a/documents/pdf/pdf-js/issue2176.pdf b/documents/pdf/pdf-js/issue2176.pdf new file mode 100644 index 0000000..1545d50 Binary files /dev/null and b/documents/pdf/pdf-js/issue2176.pdf differ diff --git a/documents/pdf/pdf-js/issue2177.pdf b/documents/pdf/pdf-js/issue2177.pdf new file mode 100644 index 0000000..d666f3d Binary files /dev/null and b/documents/pdf/pdf-js/issue2177.pdf differ diff --git a/documents/pdf/pdf-js/issue2391-1.pdf b/documents/pdf/pdf-js/issue2391-1.pdf new file mode 100644 index 0000000..92340b8 Binary files /dev/null and b/documents/pdf/pdf-js/issue2391-1.pdf differ diff --git a/documents/pdf/pdf-js/issue2391-2.pdf b/documents/pdf/pdf-js/issue2391-2.pdf new file mode 100644 index 0000000..11e6023 Binary files /dev/null and b/documents/pdf/pdf-js/issue2391-2.pdf differ diff --git a/documents/pdf/pdf-js/issue2462.pdf b/documents/pdf/pdf-js/issue2462.pdf new file mode 100644 index 0000000..009aacc Binary files /dev/null and b/documents/pdf/pdf-js/issue2462.pdf differ diff --git a/documents/pdf/pdf-js/issue2537r.pdf b/documents/pdf/pdf-js/issue2537r.pdf new file mode 100644 index 0000000..f8e85aa Binary files /dev/null and b/documents/pdf/pdf-js/issue2537r.pdf differ diff --git a/documents/pdf/pdf-js/issue269-1.pdf b/documents/pdf/pdf-js/issue269-1.pdf new file mode 100644 index 0000000..745bd6d Binary files /dev/null and b/documents/pdf/pdf-js/issue269-1.pdf differ diff --git a/documents/pdf/pdf-js/issue269-2.pdf b/documents/pdf/pdf-js/issue269-2.pdf new file mode 100644 index 0000000..83a2ebc Binary files /dev/null and b/documents/pdf/pdf-js/issue269-2.pdf differ diff --git a/documents/pdf/pdf-js/issue2761.pdf b/documents/pdf/pdf-js/issue2761.pdf new file mode 100644 index 0000000..7b1f87b Binary files /dev/null and b/documents/pdf/pdf-js/issue2761.pdf differ diff --git a/documents/pdf/pdf-js/issue2833.pdf b/documents/pdf/pdf-js/issue2833.pdf new file mode 100644 index 0000000..db074fa Binary files /dev/null and b/documents/pdf/pdf-js/issue2833.pdf differ diff --git a/documents/pdf/pdf-js/issue2840.pdf b/documents/pdf/pdf-js/issue2840.pdf new file mode 100644 index 0000000..6dd3ce6 Binary files /dev/null and b/documents/pdf/pdf-js/issue2840.pdf differ diff --git a/documents/pdf/pdf-js/issue2884-reduced.pdf b/documents/pdf/pdf-js/issue2884-reduced.pdf new file mode 100644 index 0000000..c4f74dd Binary files /dev/null and b/documents/pdf/pdf-js/issue2884-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue2931.pdf b/documents/pdf/pdf-js/issue2931.pdf new file mode 100644 index 0000000..b6f2bbb Binary files /dev/null and b/documents/pdf/pdf-js/issue2931.pdf differ diff --git a/documents/pdf/pdf-js/issue2948.pdf b/documents/pdf/pdf-js/issue2948.pdf new file mode 100644 index 0000000..a2c6af6 Binary files /dev/null and b/documents/pdf/pdf-js/issue2948.pdf differ diff --git a/documents/pdf/pdf-js/issue2956.pdf b/documents/pdf/pdf-js/issue2956.pdf new file mode 100644 index 0000000..60ce1f8 Binary files /dev/null and b/documents/pdf/pdf-js/issue2956.pdf differ diff --git a/documents/pdf/pdf-js/issue3025.pdf b/documents/pdf/pdf-js/issue3025.pdf new file mode 100644 index 0000000..dd3e049 Binary files /dev/null and b/documents/pdf/pdf-js/issue3025.pdf differ diff --git a/documents/pdf/pdf-js/issue3061.pdf b/documents/pdf/pdf-js/issue3061.pdf new file mode 100644 index 0000000..29d9775 Binary files /dev/null and b/documents/pdf/pdf-js/issue3061.pdf differ diff --git a/documents/pdf/pdf-js/issue3188.pdf b/documents/pdf/pdf-js/issue3188.pdf new file mode 100644 index 0000000..884a71a Binary files /dev/null and b/documents/pdf/pdf-js/issue3188.pdf differ diff --git a/documents/pdf/pdf-js/issue3205r.pdf b/documents/pdf/pdf-js/issue3205r.pdf new file mode 100644 index 0000000..14b6d15 Binary files /dev/null and b/documents/pdf/pdf-js/issue3205r.pdf differ diff --git a/documents/pdf/pdf-js/issue3207r.pdf b/documents/pdf/pdf-js/issue3207r.pdf new file mode 100644 index 0000000..7ce5fd0 Binary files /dev/null and b/documents/pdf/pdf-js/issue3207r.pdf differ diff --git a/documents/pdf/pdf-js/issue3214.pdf b/documents/pdf/pdf-js/issue3214.pdf new file mode 100644 index 0000000..7d509df Binary files /dev/null and b/documents/pdf/pdf-js/issue3214.pdf differ diff --git a/documents/pdf/pdf-js/issue3263r.pdf b/documents/pdf/pdf-js/issue3263r.pdf new file mode 100644 index 0000000..cb6a2cd Binary files /dev/null and b/documents/pdf/pdf-js/issue3263r.pdf differ diff --git a/documents/pdf/pdf-js/issue3323.pdf b/documents/pdf/pdf-js/issue3323.pdf new file mode 100644 index 0000000..3bc96d5 Binary files /dev/null and b/documents/pdf/pdf-js/issue3323.pdf differ diff --git a/documents/pdf/pdf-js/issue3371.pdf b/documents/pdf/pdf-js/issue3371.pdf new file mode 100644 index 0000000..43b9ea9 Binary files /dev/null and b/documents/pdf/pdf-js/issue3371.pdf differ diff --git a/documents/pdf/pdf-js/issue3405r.pdf b/documents/pdf/pdf-js/issue3405r.pdf new file mode 100644 index 0000000..c5773ce Binary files /dev/null and b/documents/pdf/pdf-js/issue3405r.pdf differ diff --git a/documents/pdf/pdf-js/issue3438.pdf b/documents/pdf/pdf-js/issue3438.pdf new file mode 100644 index 0000000..63f6c6c Binary files /dev/null and b/documents/pdf/pdf-js/issue3438.pdf differ diff --git a/documents/pdf/pdf-js/issue3458.pdf b/documents/pdf/pdf-js/issue3458.pdf new file mode 100644 index 0000000..884dec0 Binary files /dev/null and b/documents/pdf/pdf-js/issue3458.pdf differ diff --git a/documents/pdf/pdf-js/issue3521.pdf b/documents/pdf/pdf-js/issue3521.pdf new file mode 100644 index 0000000..81bb1bf Binary files /dev/null and b/documents/pdf/pdf-js/issue3521.pdf differ diff --git a/documents/pdf/pdf-js/issue3566.pdf b/documents/pdf/pdf-js/issue3566.pdf new file mode 100644 index 0000000..1b52140 Binary files /dev/null and b/documents/pdf/pdf-js/issue3566.pdf differ diff --git a/documents/pdf/pdf-js/issue3584.pdf b/documents/pdf/pdf-js/issue3584.pdf new file mode 100644 index 0000000..c43f7b9 Binary files /dev/null and b/documents/pdf/pdf-js/issue3584.pdf differ diff --git a/documents/pdf/pdf-js/issue3694-reduced.pdf b/documents/pdf/pdf-js/issue3694-reduced.pdf new file mode 100644 index 0000000..301d2db Binary files /dev/null and b/documents/pdf/pdf-js/issue3694-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue3879r.pdf b/documents/pdf/pdf-js/issue3879r.pdf new file mode 100644 index 0000000..dd86032 Binary files /dev/null and b/documents/pdf/pdf-js/issue3879r.pdf differ diff --git a/documents/pdf/pdf-js/issue3885.pdf b/documents/pdf/pdf-js/issue3885.pdf new file mode 100644 index 0000000..f0f2c25 Binary files /dev/null and b/documents/pdf/pdf-js/issue3885.pdf differ diff --git a/documents/pdf/pdf-js/issue3928.pdf b/documents/pdf/pdf-js/issue3928.pdf new file mode 100644 index 0000000..2821c5c Binary files /dev/null and b/documents/pdf/pdf-js/issue3928.pdf differ diff --git a/documents/pdf/pdf-js/issue4061.pdf b/documents/pdf/pdf-js/issue4061.pdf new file mode 100644 index 0000000..a394881 Binary files /dev/null and b/documents/pdf/pdf-js/issue4061.pdf differ diff --git a/documents/pdf/pdf-js/issue4246.pdf b/documents/pdf/pdf-js/issue4246.pdf new file mode 100644 index 0000000..3ea3a40 Binary files /dev/null and b/documents/pdf/pdf-js/issue4246.pdf differ diff --git a/documents/pdf/pdf-js/issue4260-reduced.pdf b/documents/pdf/pdf-js/issue4260-reduced.pdf new file mode 100644 index 0000000..fd163fe Binary files /dev/null and b/documents/pdf/pdf-js/issue4260-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue4304.pdf b/documents/pdf/pdf-js/issue4304.pdf new file mode 100644 index 0000000..b3ebb02 Binary files /dev/null and b/documents/pdf/pdf-js/issue4304.pdf differ diff --git a/documents/pdf/pdf-js/issue4379.pdf b/documents/pdf/pdf-js/issue4379.pdf new file mode 100644 index 0000000..e161ea4 Binary files /dev/null and b/documents/pdf/pdf-js/issue4379.pdf differ diff --git a/documents/pdf/pdf-js/issue4398.pdf b/documents/pdf/pdf-js/issue4398.pdf new file mode 100644 index 0000000..40c1a09 Binary files /dev/null and b/documents/pdf/pdf-js/issue4398.pdf differ diff --git a/documents/pdf/pdf-js/issue4402-reduced.pdf b/documents/pdf/pdf-js/issue4402-reduced.pdf new file mode 100644 index 0000000..5408ebd Binary files /dev/null and b/documents/pdf/pdf-js/issue4402-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue4436r.pdf b/documents/pdf/pdf-js/issue4436r.pdf new file mode 100644 index 0000000..c0b6adb Binary files /dev/null and b/documents/pdf/pdf-js/issue4436r.pdf differ diff --git a/documents/pdf/pdf-js/issue4461.pdf b/documents/pdf/pdf-js/issue4461.pdf new file mode 100644 index 0000000..09d1808 Binary files /dev/null and b/documents/pdf/pdf-js/issue4461.pdf differ diff --git a/documents/pdf/pdf-js/issue4550.pdf b/documents/pdf/pdf-js/issue4550.pdf new file mode 100644 index 0000000..67a2e75 Binary files /dev/null and b/documents/pdf/pdf-js/issue4550.pdf differ diff --git a/documents/pdf/pdf-js/issue4573.pdf b/documents/pdf/pdf-js/issue4573.pdf new file mode 100644 index 0000000..7b40cf2 Binary files /dev/null and b/documents/pdf/pdf-js/issue4573.pdf differ diff --git a/documents/pdf/pdf-js/issue4575.pdf b/documents/pdf/pdf-js/issue4575.pdf new file mode 100644 index 0000000..523ff0b Binary files /dev/null and b/documents/pdf/pdf-js/issue4575.pdf differ diff --git a/documents/pdf/pdf-js/issue4630.pdf b/documents/pdf/pdf-js/issue4630.pdf new file mode 100644 index 0000000..dcabc37 Binary files /dev/null and b/documents/pdf/pdf-js/issue4630.pdf differ diff --git a/documents/pdf/pdf-js/issue4650.pdf b/documents/pdf/pdf-js/issue4650.pdf new file mode 100644 index 0000000..3aebb80 Binary files /dev/null and b/documents/pdf/pdf-js/issue4650.pdf differ diff --git a/documents/pdf/pdf-js/issue4665.pdf b/documents/pdf/pdf-js/issue4665.pdf new file mode 100644 index 0000000..837334c Binary files /dev/null and b/documents/pdf/pdf-js/issue4665.pdf differ diff --git a/documents/pdf/pdf-js/issue4668.pdf b/documents/pdf/pdf-js/issue4668.pdf new file mode 100644 index 0000000..b814b30 Binary files /dev/null and b/documents/pdf/pdf-js/issue4668.pdf differ diff --git a/documents/pdf/pdf-js/issue4684.pdf b/documents/pdf/pdf-js/issue4684.pdf new file mode 100644 index 0000000..b8af8c2 Binary files /dev/null and b/documents/pdf/pdf-js/issue4684.pdf differ diff --git a/documents/pdf/pdf-js/issue4706.pdf b/documents/pdf/pdf-js/issue4706.pdf new file mode 100644 index 0000000..f7ce361 Binary files /dev/null and b/documents/pdf/pdf-js/issue4706.pdf differ diff --git a/documents/pdf/pdf-js/issue4722.pdf b/documents/pdf/pdf-js/issue4722.pdf new file mode 100644 index 0000000..15671da Binary files /dev/null and b/documents/pdf/pdf-js/issue4722.pdf differ diff --git a/documents/pdf/pdf-js/issue4800.pdf b/documents/pdf/pdf-js/issue4800.pdf new file mode 100644 index 0000000..bb71a2e Binary files /dev/null and b/documents/pdf/pdf-js/issue4800.pdf differ diff --git a/documents/pdf/pdf-js/issue4801.pdf b/documents/pdf/pdf-js/issue4801.pdf new file mode 100644 index 0000000..d74cb03 Binary files /dev/null and b/documents/pdf/pdf-js/issue4801.pdf differ diff --git a/documents/pdf/pdf-js/issue4875.pdf b/documents/pdf/pdf-js/issue4875.pdf new file mode 100644 index 0000000..c8d0a5d Binary files /dev/null and b/documents/pdf/pdf-js/issue4875.pdf differ diff --git a/documents/pdf/pdf-js/issue4881.pdf b/documents/pdf/pdf-js/issue4881.pdf new file mode 100644 index 0000000..12b82b6 Binary files /dev/null and b/documents/pdf/pdf-js/issue4881.pdf differ diff --git a/documents/pdf/pdf-js/issue4909.pdf b/documents/pdf/pdf-js/issue4909.pdf new file mode 100644 index 0000000..104ab77 Binary files /dev/null and b/documents/pdf/pdf-js/issue4909.pdf differ diff --git a/documents/pdf/pdf-js/issue4934.pdf b/documents/pdf/pdf-js/issue4934.pdf new file mode 100644 index 0000000..016ab1b Binary files /dev/null and b/documents/pdf/pdf-js/issue4934.pdf differ diff --git a/documents/pdf/pdf-js/issue5010.pdf b/documents/pdf/pdf-js/issue5010.pdf new file mode 100644 index 0000000..7ea55aa Binary files /dev/null and b/documents/pdf/pdf-js/issue5010.pdf differ diff --git a/documents/pdf/pdf-js/issue5039.pdf b/documents/pdf/pdf-js/issue5039.pdf new file mode 100644 index 0000000..6733ecf Binary files /dev/null and b/documents/pdf/pdf-js/issue5039.pdf differ diff --git a/documents/pdf/pdf-js/issue5044.pdf b/documents/pdf/pdf-js/issue5044.pdf new file mode 100644 index 0000000..8491c91 Binary files /dev/null and b/documents/pdf/pdf-js/issue5044.pdf differ diff --git a/documents/pdf/pdf-js/issue5070.pdf b/documents/pdf/pdf-js/issue5070.pdf new file mode 100644 index 0000000..e94c0a3 Binary files /dev/null and b/documents/pdf/pdf-js/issue5070.pdf differ diff --git a/documents/pdf/pdf-js/issue5084.pdf b/documents/pdf/pdf-js/issue5084.pdf new file mode 100644 index 0000000..f4c74ba Binary files /dev/null and b/documents/pdf/pdf-js/issue5084.pdf differ diff --git a/documents/pdf/pdf-js/issue5138.pdf b/documents/pdf/pdf-js/issue5138.pdf new file mode 100644 index 0000000..f784e4e Binary files /dev/null and b/documents/pdf/pdf-js/issue5138.pdf differ diff --git a/documents/pdf/pdf-js/issue5202.pdf b/documents/pdf/pdf-js/issue5202.pdf new file mode 100644 index 0000000..02b5c58 Binary files /dev/null and b/documents/pdf/pdf-js/issue5202.pdf differ diff --git a/documents/pdf/pdf-js/issue5238.pdf b/documents/pdf/pdf-js/issue5238.pdf new file mode 100644 index 0000000..23f27fa Binary files /dev/null and b/documents/pdf/pdf-js/issue5238.pdf differ diff --git a/documents/pdf/pdf-js/issue5244.pdf b/documents/pdf/pdf-js/issue5244.pdf new file mode 100644 index 0000000..3f1faa5 Binary files /dev/null and b/documents/pdf/pdf-js/issue5244.pdf differ diff --git a/documents/pdf/pdf-js/issue5256.pdf b/documents/pdf/pdf-js/issue5256.pdf new file mode 100644 index 0000000..f8d1901 Binary files /dev/null and b/documents/pdf/pdf-js/issue5256.pdf differ diff --git a/documents/pdf/pdf-js/issue5280.pdf b/documents/pdf/pdf-js/issue5280.pdf new file mode 100644 index 0000000..195fdf3 Binary files /dev/null and b/documents/pdf/pdf-js/issue5280.pdf differ diff --git a/documents/pdf/pdf-js/issue5291.pdf b/documents/pdf/pdf-js/issue5291.pdf new file mode 100644 index 0000000..a9b089c Binary files /dev/null and b/documents/pdf/pdf-js/issue5291.pdf differ diff --git a/documents/pdf/pdf-js/issue5334.pdf b/documents/pdf/pdf-js/issue5334.pdf new file mode 100644 index 0000000..aff4c1a Binary files /dev/null and b/documents/pdf/pdf-js/issue5334.pdf differ diff --git a/documents/pdf/pdf-js/issue5421.pdf b/documents/pdf/pdf-js/issue5421.pdf new file mode 100644 index 0000000..e6d2513 Binary files /dev/null and b/documents/pdf/pdf-js/issue5421.pdf differ diff --git a/documents/pdf/pdf-js/issue5470.pdf b/documents/pdf/pdf-js/issue5470.pdf new file mode 100644 index 0000000..34141f5 Binary files /dev/null and b/documents/pdf/pdf-js/issue5470.pdf differ diff --git a/documents/pdf/pdf-js/issue5475.pdf b/documents/pdf/pdf-js/issue5475.pdf new file mode 100644 index 0000000..bfe96d7 Binary files /dev/null and b/documents/pdf/pdf-js/issue5475.pdf differ diff --git a/documents/pdf/pdf-js/issue5481.pdf b/documents/pdf/pdf-js/issue5481.pdf new file mode 100644 index 0000000..6f64597 Binary files /dev/null and b/documents/pdf/pdf-js/issue5481.pdf differ diff --git a/documents/pdf/pdf-js/issue5501.pdf b/documents/pdf/pdf-js/issue5501.pdf new file mode 100644 index 0000000..aa58807 Binary files /dev/null and b/documents/pdf/pdf-js/issue5501.pdf differ diff --git a/documents/pdf/pdf-js/issue5540.pdf b/documents/pdf/pdf-js/issue5540.pdf new file mode 100644 index 0000000..9da3489 Binary files /dev/null and b/documents/pdf/pdf-js/issue5540.pdf differ diff --git a/documents/pdf/pdf-js/issue5549.pdf b/documents/pdf/pdf-js/issue5549.pdf new file mode 100644 index 0000000..969ebc4 Binary files /dev/null and b/documents/pdf/pdf-js/issue5549.pdf differ diff --git a/documents/pdf/pdf-js/issue5564-reduced.pdf b/documents/pdf/pdf-js/issue5564-reduced.pdf new file mode 100644 index 0000000..ddb97a3 Binary files /dev/null and b/documents/pdf/pdf-js/issue5564-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue5567.pdf b/documents/pdf/pdf-js/issue5567.pdf new file mode 100644 index 0000000..11962df Binary files /dev/null and b/documents/pdf/pdf-js/issue5567.pdf differ diff --git a/documents/pdf/pdf-js/issue5599.pdf b/documents/pdf/pdf-js/issue5599.pdf new file mode 100644 index 0000000..3c75127 Binary files /dev/null and b/documents/pdf/pdf-js/issue5599.pdf differ diff --git a/documents/pdf/pdf-js/issue5677.pdf b/documents/pdf/pdf-js/issue5677.pdf new file mode 100644 index 0000000..10c9f49 Binary files /dev/null and b/documents/pdf/pdf-js/issue5677.pdf differ diff --git a/documents/pdf/pdf-js/issue5686.pdf b/documents/pdf/pdf-js/issue5686.pdf new file mode 100644 index 0000000..c221d3b Binary files /dev/null and b/documents/pdf/pdf-js/issue5686.pdf differ diff --git a/documents/pdf/pdf-js/issue5701.pdf b/documents/pdf/pdf-js/issue5701.pdf new file mode 100644 index 0000000..d542c7d Binary files /dev/null and b/documents/pdf/pdf-js/issue5701.pdf differ diff --git a/documents/pdf/pdf-js/issue5704.pdf b/documents/pdf/pdf-js/issue5704.pdf new file mode 100644 index 0000000..02c3d82 Binary files /dev/null and b/documents/pdf/pdf-js/issue5704.pdf differ diff --git a/documents/pdf/pdf-js/issue5734.pdf b/documents/pdf/pdf-js/issue5734.pdf new file mode 100644 index 0000000..9d30cf1 Binary files /dev/null and b/documents/pdf/pdf-js/issue5734.pdf differ diff --git a/documents/pdf/pdf-js/issue5747.pdf b/documents/pdf/pdf-js/issue5747.pdf new file mode 100644 index 0000000..0acaf87 Binary files /dev/null and b/documents/pdf/pdf-js/issue5747.pdf differ diff --git a/documents/pdf/pdf-js/issue5751.pdf b/documents/pdf/pdf-js/issue5751.pdf new file mode 100644 index 0000000..25e8224 Binary files /dev/null and b/documents/pdf/pdf-js/issue5751.pdf differ diff --git a/documents/pdf/pdf-js/issue5801.pdf b/documents/pdf/pdf-js/issue5801.pdf new file mode 100644 index 0000000..5af8a1f Binary files /dev/null and b/documents/pdf/pdf-js/issue5801.pdf differ diff --git a/documents/pdf/pdf-js/issue5804.pdf b/documents/pdf/pdf-js/issue5804.pdf new file mode 100644 index 0000000..0123c7e Binary files /dev/null and b/documents/pdf/pdf-js/issue5804.pdf differ diff --git a/documents/pdf/pdf-js/issue5808.pdf b/documents/pdf/pdf-js/issue5808.pdf new file mode 100644 index 0000000..4413e90 Binary files /dev/null and b/documents/pdf/pdf-js/issue5808.pdf differ diff --git a/documents/pdf/pdf-js/issue5874.pdf b/documents/pdf/pdf-js/issue5874.pdf new file mode 100644 index 0000000..e462dc8 Binary files /dev/null and b/documents/pdf/pdf-js/issue5874.pdf differ diff --git a/documents/pdf/pdf-js/issue5896.pdf b/documents/pdf/pdf-js/issue5896.pdf new file mode 100644 index 0000000..5e604a9 Binary files /dev/null and b/documents/pdf/pdf-js/issue5896.pdf differ diff --git a/documents/pdf/pdf-js/issue5946.pdf b/documents/pdf/pdf-js/issue5946.pdf new file mode 100644 index 0000000..47d9163 Binary files /dev/null and b/documents/pdf/pdf-js/issue5946.pdf differ diff --git a/documents/pdf/pdf-js/issue5954.pdf b/documents/pdf/pdf-js/issue5954.pdf new file mode 100644 index 0000000..9c4c43a Binary files /dev/null and b/documents/pdf/pdf-js/issue5954.pdf differ diff --git a/documents/pdf/pdf-js/issue5972.pdf b/documents/pdf/pdf-js/issue5972.pdf new file mode 100644 index 0000000..65846bc Binary files /dev/null and b/documents/pdf/pdf-js/issue5972.pdf differ diff --git a/documents/pdf/pdf-js/issue5994.pdf b/documents/pdf/pdf-js/issue5994.pdf new file mode 100644 index 0000000..e003d01 Binary files /dev/null and b/documents/pdf/pdf-js/issue5994.pdf differ diff --git a/documents/pdf/pdf-js/issue6006.pdf b/documents/pdf/pdf-js/issue6006.pdf new file mode 100644 index 0000000..68880e5 Binary files /dev/null and b/documents/pdf/pdf-js/issue6006.pdf differ diff --git a/documents/pdf/pdf-js/issue6010-1.pdf b/documents/pdf/pdf-js/issue6010-1.pdf new file mode 100644 index 0000000..13ee478 Binary files /dev/null and b/documents/pdf/pdf-js/issue6010-1.pdf differ diff --git a/documents/pdf/pdf-js/issue6010-2.pdf b/documents/pdf/pdf-js/issue6010-2.pdf new file mode 100644 index 0000000..37ffdf6 Binary files /dev/null and b/documents/pdf/pdf-js/issue6010-2.pdf differ diff --git a/documents/pdf/pdf-js/issue6019.pdf b/documents/pdf/pdf-js/issue6019.pdf new file mode 100644 index 0000000..4237a52 Binary files /dev/null and b/documents/pdf/pdf-js/issue6019.pdf differ diff --git a/documents/pdf/pdf-js/issue6068.pdf b/documents/pdf/pdf-js/issue6068.pdf new file mode 100644 index 0000000..7cd2050 Binary files /dev/null and b/documents/pdf/pdf-js/issue6068.pdf differ diff --git a/documents/pdf/pdf-js/issue6081.pdf b/documents/pdf/pdf-js/issue6081.pdf new file mode 100644 index 0000000..4b3b3ed Binary files /dev/null and b/documents/pdf/pdf-js/issue6081.pdf differ diff --git a/documents/pdf/pdf-js/issue6099.pdf b/documents/pdf/pdf-js/issue6099.pdf new file mode 100644 index 0000000..5772c8f Binary files /dev/null and b/documents/pdf/pdf-js/issue6099.pdf differ diff --git a/documents/pdf/pdf-js/issue6106.pdf b/documents/pdf/pdf-js/issue6106.pdf new file mode 100644 index 0000000..6bdf31e Binary files /dev/null and b/documents/pdf/pdf-js/issue6106.pdf differ diff --git a/documents/pdf/pdf-js/issue6108.pdf b/documents/pdf/pdf-js/issue6108.pdf new file mode 100644 index 0000000..f46f115 Binary files /dev/null and b/documents/pdf/pdf-js/issue6108.pdf differ diff --git a/documents/pdf/pdf-js/issue6113.pdf b/documents/pdf/pdf-js/issue6113.pdf new file mode 100644 index 0000000..c7cf212 Binary files /dev/null and b/documents/pdf/pdf-js/issue6113.pdf differ diff --git a/documents/pdf/pdf-js/issue6127.pdf b/documents/pdf/pdf-js/issue6127.pdf new file mode 100644 index 0000000..b858143 Binary files /dev/null and b/documents/pdf/pdf-js/issue6127.pdf differ diff --git a/documents/pdf/pdf-js/issue6132.pdf b/documents/pdf/pdf-js/issue6132.pdf new file mode 100644 index 0000000..d442482 Binary files /dev/null and b/documents/pdf/pdf-js/issue6132.pdf differ diff --git a/documents/pdf/pdf-js/issue6151.pdf b/documents/pdf/pdf-js/issue6151.pdf new file mode 100644 index 0000000..de9dc35 Binary files /dev/null and b/documents/pdf/pdf-js/issue6151.pdf differ diff --git a/documents/pdf/pdf-js/issue6179-reduced.pdf b/documents/pdf/pdf-js/issue6179-reduced.pdf new file mode 100644 index 0000000..e3122f6 Binary files /dev/null and b/documents/pdf/pdf-js/issue6179-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue6204.pdf b/documents/pdf/pdf-js/issue6204.pdf new file mode 100644 index 0000000..63c03d2 Binary files /dev/null and b/documents/pdf/pdf-js/issue6204.pdf differ diff --git a/documents/pdf/pdf-js/issue6231-1.pdf b/documents/pdf/pdf-js/issue6231-1.pdf new file mode 100644 index 0000000..5c73cf7 Binary files /dev/null and b/documents/pdf/pdf-js/issue6231-1.pdf differ diff --git a/documents/pdf/pdf-js/issue6286.pdf b/documents/pdf/pdf-js/issue6286.pdf new file mode 100644 index 0000000..bf4b41a Binary files /dev/null and b/documents/pdf/pdf-js/issue6286.pdf differ diff --git a/documents/pdf/pdf-js/issue6296.pdf b/documents/pdf/pdf-js/issue6296.pdf new file mode 100644 index 0000000..509d0a8 Binary files /dev/null and b/documents/pdf/pdf-js/issue6296.pdf differ diff --git a/documents/pdf/pdf-js/issue6298.pdf b/documents/pdf/pdf-js/issue6298.pdf new file mode 100644 index 0000000..a694572 Binary files /dev/null and b/documents/pdf/pdf-js/issue6298.pdf differ diff --git a/documents/pdf/pdf-js/issue6336.pdf b/documents/pdf/pdf-js/issue6336.pdf new file mode 100644 index 0000000..3285a47 Binary files /dev/null and b/documents/pdf/pdf-js/issue6336.pdf differ diff --git a/documents/pdf/pdf-js/issue6342.pdf b/documents/pdf/pdf-js/issue6342.pdf new file mode 100644 index 0000000..d67c3c2 Binary files /dev/null and b/documents/pdf/pdf-js/issue6342.pdf differ diff --git a/documents/pdf/pdf-js/issue6387.pdf b/documents/pdf/pdf-js/issue6387.pdf new file mode 100644 index 0000000..e1cf91e Binary files /dev/null and b/documents/pdf/pdf-js/issue6387.pdf differ diff --git a/documents/pdf/pdf-js/issue6410.pdf b/documents/pdf/pdf-js/issue6410.pdf new file mode 100644 index 0000000..cec4064 Binary files /dev/null and b/documents/pdf/pdf-js/issue6410.pdf differ diff --git a/documents/pdf/pdf-js/issue6413.pdf b/documents/pdf/pdf-js/issue6413.pdf new file mode 100644 index 0000000..0349aea Binary files /dev/null and b/documents/pdf/pdf-js/issue6413.pdf differ diff --git a/documents/pdf/pdf-js/issue6541.pdf b/documents/pdf/pdf-js/issue6541.pdf new file mode 100644 index 0000000..0afcfb0 Binary files /dev/null and b/documents/pdf/pdf-js/issue6541.pdf differ diff --git a/documents/pdf/pdf-js/issue6605.pdf b/documents/pdf/pdf-js/issue6605.pdf new file mode 100644 index 0000000..3577b10 Binary files /dev/null and b/documents/pdf/pdf-js/issue6605.pdf differ diff --git a/documents/pdf/pdf-js/issue6612.pdf b/documents/pdf/pdf-js/issue6612.pdf new file mode 100644 index 0000000..dab58d8 Binary files /dev/null and b/documents/pdf/pdf-js/issue6612.pdf differ diff --git a/documents/pdf/pdf-js/issue6621.pdf b/documents/pdf/pdf-js/issue6621.pdf new file mode 100644 index 0000000..716b1fb Binary files /dev/null and b/documents/pdf/pdf-js/issue6621.pdf differ diff --git a/documents/pdf/pdf-js/issue6652.pdf b/documents/pdf/pdf-js/issue6652.pdf new file mode 100644 index 0000000..abb35c6 Binary files /dev/null and b/documents/pdf/pdf-js/issue6652.pdf differ diff --git a/documents/pdf/pdf-js/issue6721-reduced.pdf b/documents/pdf/pdf-js/issue6721-reduced.pdf new file mode 100644 index 0000000..84c397a Binary files /dev/null and b/documents/pdf/pdf-js/issue6721-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue6769-no-matrix.pdf b/documents/pdf/pdf-js/issue6769-no-matrix.pdf new file mode 100644 index 0000000..3dc099e Binary files /dev/null and b/documents/pdf/pdf-js/issue6769-no-matrix.pdf differ diff --git a/documents/pdf/pdf-js/issue6769.pdf b/documents/pdf/pdf-js/issue6769.pdf new file mode 100644 index 0000000..ed34b8a Binary files /dev/null and b/documents/pdf/pdf-js/issue6769.pdf differ diff --git a/documents/pdf/pdf-js/issue6782.pdf b/documents/pdf/pdf-js/issue6782.pdf new file mode 100644 index 0000000..61f4cec Binary files /dev/null and b/documents/pdf/pdf-js/issue6782.pdf differ diff --git a/documents/pdf/pdf-js/issue6889.pdf b/documents/pdf/pdf-js/issue6889.pdf new file mode 100644 index 0000000..973fb7b Binary files /dev/null and b/documents/pdf/pdf-js/issue6889.pdf differ diff --git a/documents/pdf/pdf-js/issue6894.pdf b/documents/pdf/pdf-js/issue6894.pdf new file mode 100644 index 0000000..bb58484 Binary files /dev/null and b/documents/pdf/pdf-js/issue6894.pdf differ diff --git a/documents/pdf/pdf-js/issue6901.pdf b/documents/pdf/pdf-js/issue6901.pdf new file mode 100644 index 0000000..a2653a9 Binary files /dev/null and b/documents/pdf/pdf-js/issue6901.pdf differ diff --git a/documents/pdf/pdf-js/issue6931-reduced.pdf b/documents/pdf/pdf-js/issue6931-reduced.pdf new file mode 100644 index 0000000..3bd282d Binary files /dev/null and b/documents/pdf/pdf-js/issue6931-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue6961.pdf b/documents/pdf/pdf-js/issue6961.pdf new file mode 100644 index 0000000..2996579 Binary files /dev/null and b/documents/pdf/pdf-js/issue6961.pdf differ diff --git a/documents/pdf/pdf-js/issue6962.pdf b/documents/pdf/pdf-js/issue6962.pdf new file mode 100644 index 0000000..832f634 Binary files /dev/null and b/documents/pdf/pdf-js/issue6962.pdf differ diff --git a/documents/pdf/pdf-js/issue7014.pdf b/documents/pdf/pdf-js/issue7014.pdf new file mode 100644 index 0000000..be31b81 Binary files /dev/null and b/documents/pdf/pdf-js/issue7014.pdf differ diff --git a/documents/pdf/pdf-js/issue7020.pdf b/documents/pdf/pdf-js/issue7020.pdf new file mode 100644 index 0000000..4960af9 Binary files /dev/null and b/documents/pdf/pdf-js/issue7020.pdf differ diff --git a/documents/pdf/pdf-js/issue7074-reduced.pdf b/documents/pdf/pdf-js/issue7074-reduced.pdf new file mode 100644 index 0000000..e342424 Binary files /dev/null and b/documents/pdf/pdf-js/issue7074-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue7101.pdf b/documents/pdf/pdf-js/issue7101.pdf new file mode 100644 index 0000000..f23c171 Binary files /dev/null and b/documents/pdf/pdf-js/issue7101.pdf differ diff --git a/documents/pdf/pdf-js/issue7115.pdf b/documents/pdf/pdf-js/issue7115.pdf new file mode 100644 index 0000000..e99eb11 Binary files /dev/null and b/documents/pdf/pdf-js/issue7115.pdf differ diff --git a/documents/pdf/pdf-js/issue7180.pdf b/documents/pdf/pdf-js/issue7180.pdf new file mode 100644 index 0000000..a5c0a12 Binary files /dev/null and b/documents/pdf/pdf-js/issue7180.pdf differ diff --git a/documents/pdf/pdf-js/issue7200.pdf b/documents/pdf/pdf-js/issue7200.pdf new file mode 100644 index 0000000..2b80405 Binary files /dev/null and b/documents/pdf/pdf-js/issue7200.pdf differ diff --git a/documents/pdf/pdf-js/issue7229.pdf b/documents/pdf/pdf-js/issue7229.pdf new file mode 100644 index 0000000..1335363 Binary files /dev/null and b/documents/pdf/pdf-js/issue7229.pdf differ diff --git a/documents/pdf/pdf-js/issue7339-reduced.pdf b/documents/pdf/pdf-js/issue7339-reduced.pdf new file mode 100644 index 0000000..1cf4d52 Binary files /dev/null and b/documents/pdf/pdf-js/issue7339-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue7403.pdf b/documents/pdf/pdf-js/issue7403.pdf new file mode 100644 index 0000000..aff7ad1 Binary files /dev/null and b/documents/pdf/pdf-js/issue7403.pdf differ diff --git a/documents/pdf/pdf-js/issue7406.pdf b/documents/pdf/pdf-js/issue7406.pdf new file mode 100644 index 0000000..1a49c8f Binary files /dev/null and b/documents/pdf/pdf-js/issue7406.pdf differ diff --git a/documents/pdf/pdf-js/issue7426.pdf b/documents/pdf/pdf-js/issue7426.pdf new file mode 100644 index 0000000..9f18340 Binary files /dev/null and b/documents/pdf/pdf-js/issue7426.pdf differ diff --git a/documents/pdf/pdf-js/issue7439.pdf b/documents/pdf/pdf-js/issue7439.pdf new file mode 100644 index 0000000..7940dfa Binary files /dev/null and b/documents/pdf/pdf-js/issue7439.pdf differ diff --git a/documents/pdf/pdf-js/issue7446.pdf b/documents/pdf/pdf-js/issue7446.pdf new file mode 100644 index 0000000..df87167 Binary files /dev/null and b/documents/pdf/pdf-js/issue7446.pdf differ diff --git a/documents/pdf/pdf-js/issue7454.pdf b/documents/pdf/pdf-js/issue7454.pdf new file mode 100644 index 0000000..9fa42ba Binary files /dev/null and b/documents/pdf/pdf-js/issue7454.pdf differ diff --git a/documents/pdf/pdf-js/issue7492.pdf b/documents/pdf/pdf-js/issue7492.pdf new file mode 100644 index 0000000..b2e7346 Binary files /dev/null and b/documents/pdf/pdf-js/issue7492.pdf differ diff --git a/documents/pdf/pdf-js/issue7507.pdf b/documents/pdf/pdf-js/issue7507.pdf new file mode 100644 index 0000000..1a56d2c Binary files /dev/null and b/documents/pdf/pdf-js/issue7507.pdf differ diff --git a/documents/pdf/pdf-js/issue7544.pdf b/documents/pdf/pdf-js/issue7544.pdf new file mode 100644 index 0000000..e5fd48b Binary files /dev/null and b/documents/pdf/pdf-js/issue7544.pdf differ diff --git a/documents/pdf/pdf-js/issue7580.pdf b/documents/pdf/pdf-js/issue7580.pdf new file mode 100644 index 0000000..709efb9 Binary files /dev/null and b/documents/pdf/pdf-js/issue7580.pdf differ diff --git a/documents/pdf/pdf-js/issue7598.pdf b/documents/pdf/pdf-js/issue7598.pdf new file mode 100644 index 0000000..42f2131 Binary files /dev/null and b/documents/pdf/pdf-js/issue7598.pdf differ diff --git a/documents/pdf/pdf-js/issue7665.pdf b/documents/pdf/pdf-js/issue7665.pdf new file mode 100644 index 0000000..66f77b0 Binary files /dev/null and b/documents/pdf/pdf-js/issue7665.pdf differ diff --git a/documents/pdf/pdf-js/issue7696.pdf b/documents/pdf/pdf-js/issue7696.pdf new file mode 100644 index 0000000..8430216 Binary files /dev/null and b/documents/pdf/pdf-js/issue7696.pdf differ diff --git a/documents/pdf/pdf-js/issue7769.pdf b/documents/pdf/pdf-js/issue7769.pdf new file mode 100644 index 0000000..8697423 Binary files /dev/null and b/documents/pdf/pdf-js/issue7769.pdf differ diff --git a/documents/pdf/pdf-js/issue7835.pdf b/documents/pdf/pdf-js/issue7835.pdf new file mode 100644 index 0000000..6c69f78 Binary files /dev/null and b/documents/pdf/pdf-js/issue7835.pdf differ diff --git a/documents/pdf/pdf-js/issue7847-radial.pdf b/documents/pdf/pdf-js/issue7847-radial.pdf new file mode 100644 index 0000000..b7a5719 Binary files /dev/null and b/documents/pdf/pdf-js/issue7847-radial.pdf differ diff --git a/documents/pdf/pdf-js/issue7855.pdf b/documents/pdf/pdf-js/issue7855.pdf new file mode 100644 index 0000000..375a803 Binary files /dev/null and b/documents/pdf/pdf-js/issue7855.pdf differ diff --git a/documents/pdf/pdf-js/issue7872.pdf b/documents/pdf/pdf-js/issue7872.pdf new file mode 100644 index 0000000..cf42fe1 Binary files /dev/null and b/documents/pdf/pdf-js/issue7872.pdf differ diff --git a/documents/pdf/pdf-js/issue7878.pdf b/documents/pdf/pdf-js/issue7878.pdf new file mode 100644 index 0000000..d160cd3 Binary files /dev/null and b/documents/pdf/pdf-js/issue7878.pdf differ diff --git a/documents/pdf/pdf-js/issue7891-bc0.pdf b/documents/pdf/pdf-js/issue7891-bc0.pdf new file mode 100644 index 0000000..d446974 Binary files /dev/null and b/documents/pdf/pdf-js/issue7891-bc0.pdf differ diff --git a/documents/pdf/pdf-js/issue7891-bc1.pdf b/documents/pdf/pdf-js/issue7891-bc1.pdf new file mode 100644 index 0000000..78a1519 Binary files /dev/null and b/documents/pdf/pdf-js/issue7891-bc1.pdf differ diff --git a/documents/pdf/pdf-js/issue7901.pdf b/documents/pdf/pdf-js/issue7901.pdf new file mode 100644 index 0000000..efe2213 Binary files /dev/null and b/documents/pdf/pdf-js/issue7901.pdf differ diff --git a/documents/pdf/pdf-js/issue8061.pdf b/documents/pdf/pdf-js/issue8061.pdf new file mode 100644 index 0000000..db4be09 Binary files /dev/null and b/documents/pdf/pdf-js/issue8061.pdf differ diff --git a/documents/pdf/pdf-js/issue8088.pdf b/documents/pdf/pdf-js/issue8088.pdf new file mode 100644 index 0000000..41676e1 Binary files /dev/null and b/documents/pdf/pdf-js/issue8088.pdf differ diff --git a/documents/pdf/pdf-js/issue8092.pdf b/documents/pdf/pdf-js/issue8092.pdf new file mode 100644 index 0000000..d1986fe Binary files /dev/null and b/documents/pdf/pdf-js/issue8092.pdf differ diff --git a/documents/pdf/pdf-js/issue8097-reduced.pdf b/documents/pdf/pdf-js/issue8097-reduced.pdf new file mode 100644 index 0000000..10b96aa Binary files /dev/null and b/documents/pdf/pdf-js/issue8097-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue8111.pdf b/documents/pdf/pdf-js/issue8111.pdf new file mode 100644 index 0000000..d5ad9d4 Binary files /dev/null and b/documents/pdf/pdf-js/issue8111.pdf differ diff --git a/documents/pdf/pdf-js/issue8125.pdf b/documents/pdf/pdf-js/issue8125.pdf new file mode 100644 index 0000000..7c7b2ba Binary files /dev/null and b/documents/pdf/pdf-js/issue8125.pdf differ diff --git a/documents/pdf/pdf-js/issue8187.pdf b/documents/pdf/pdf-js/issue8187.pdf new file mode 100644 index 0000000..a77d730 Binary files /dev/null and b/documents/pdf/pdf-js/issue8187.pdf differ diff --git a/documents/pdf/pdf-js/issue8229.pdf b/documents/pdf/pdf-js/issue8229.pdf new file mode 100644 index 0000000..611b25f Binary files /dev/null and b/documents/pdf/pdf-js/issue8229.pdf differ diff --git a/documents/pdf/pdf-js/issue8234.pdf b/documents/pdf/pdf-js/issue8234.pdf new file mode 100644 index 0000000..fe9b739 Binary files /dev/null and b/documents/pdf/pdf-js/issue8234.pdf differ diff --git a/documents/pdf/pdf-js/issue8276-reduced.pdf b/documents/pdf/pdf-js/issue8276-reduced.pdf new file mode 100644 index 0000000..6974675 Binary files /dev/null and b/documents/pdf/pdf-js/issue8276-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue8372.pdf b/documents/pdf/pdf-js/issue8372.pdf new file mode 100644 index 0000000..63dc30e Binary files /dev/null and b/documents/pdf/pdf-js/issue8372.pdf differ diff --git a/documents/pdf/pdf-js/issue840.pdf b/documents/pdf/pdf-js/issue840.pdf new file mode 100644 index 0000000..de59e9d Binary files /dev/null and b/documents/pdf/pdf-js/issue840.pdf differ diff --git a/documents/pdf/pdf-js/issue8424.pdf b/documents/pdf/pdf-js/issue8424.pdf new file mode 100644 index 0000000..7a50d1f Binary files /dev/null and b/documents/pdf/pdf-js/issue8424.pdf differ diff --git a/documents/pdf/pdf-js/issue845r.pdf b/documents/pdf/pdf-js/issue845r.pdf new file mode 100644 index 0000000..e5c4c5c Binary files /dev/null and b/documents/pdf/pdf-js/issue845r.pdf differ diff --git a/documents/pdf/pdf-js/issue8480.pdf b/documents/pdf/pdf-js/issue8480.pdf new file mode 100644 index 0000000..d093934 Binary files /dev/null and b/documents/pdf/pdf-js/issue8480.pdf differ diff --git a/documents/pdf/pdf-js/issue8565.pdf b/documents/pdf/pdf-js/issue8565.pdf new file mode 100644 index 0000000..f29a949 Binary files /dev/null and b/documents/pdf/pdf-js/issue8565.pdf differ diff --git a/documents/pdf/pdf-js/issue8570.pdf b/documents/pdf/pdf-js/issue8570.pdf new file mode 100644 index 0000000..42c4214 Binary files /dev/null and b/documents/pdf/pdf-js/issue8570.pdf differ diff --git a/documents/pdf/pdf-js/issue8586.pdf b/documents/pdf/pdf-js/issue8586.pdf new file mode 100644 index 0000000..eba9b6d Binary files /dev/null and b/documents/pdf/pdf-js/issue8586.pdf differ diff --git a/documents/pdf/pdf-js/issue8697.pdf b/documents/pdf/pdf-js/issue8697.pdf new file mode 100644 index 0000000..8504447 Binary files /dev/null and b/documents/pdf/pdf-js/issue8697.pdf differ diff --git a/documents/pdf/pdf-js/issue8702.pdf b/documents/pdf/pdf-js/issue8702.pdf new file mode 100644 index 0000000..b73f6a2 Binary files /dev/null and b/documents/pdf/pdf-js/issue8702.pdf differ diff --git a/documents/pdf/pdf-js/issue8707.pdf b/documents/pdf/pdf-js/issue8707.pdf new file mode 100644 index 0000000..cefbee8 Binary files /dev/null and b/documents/pdf/pdf-js/issue8707.pdf differ diff --git a/documents/pdf/pdf-js/issue8795-reduced.pdf b/documents/pdf/pdf-js/issue8795-reduced.pdf new file mode 100644 index 0000000..1bfbec5 Binary files /dev/null and b/documents/pdf/pdf-js/issue8795-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue8798r.pdf b/documents/pdf/pdf-js/issue8798r.pdf new file mode 100644 index 0000000..e0e155c Binary files /dev/null and b/documents/pdf/pdf-js/issue8798r.pdf differ diff --git a/documents/pdf/pdf-js/issue8823.pdf b/documents/pdf/pdf-js/issue8823.pdf new file mode 100644 index 0000000..fc36097 Binary files /dev/null and b/documents/pdf/pdf-js/issue8823.pdf differ diff --git a/documents/pdf/pdf-js/issue8844.pdf b/documents/pdf/pdf-js/issue8844.pdf new file mode 100644 index 0000000..421dfb4 Binary files /dev/null and b/documents/pdf/pdf-js/issue8844.pdf differ diff --git a/documents/pdf/pdf-js/issue8960-reduced.pdf b/documents/pdf/pdf-js/issue8960-reduced.pdf new file mode 100644 index 0000000..9412ac6 Binary files /dev/null and b/documents/pdf/pdf-js/issue8960-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue9017-reduced.pdf b/documents/pdf/pdf-js/issue9017-reduced.pdf new file mode 100644 index 0000000..d890617 Binary files /dev/null and b/documents/pdf/pdf-js/issue9017-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue9084.pdf b/documents/pdf/pdf-js/issue9084.pdf new file mode 100644 index 0000000..a3ab477 Binary files /dev/null and b/documents/pdf/pdf-js/issue9084.pdf differ diff --git a/documents/pdf/pdf-js/issue9105-other.pdf b/documents/pdf/pdf-js/issue9105-other.pdf new file mode 100644 index 0000000..864ec1b Binary files /dev/null and b/documents/pdf/pdf-js/issue9105-other.pdf differ diff --git a/documents/pdf/pdf-js/issue9105-reduced.pdf b/documents/pdf/pdf-js/issue9105-reduced.pdf new file mode 100644 index 0000000..791fa53 Binary files /dev/null and b/documents/pdf/pdf-js/issue9105-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue918.pdf b/documents/pdf/pdf-js/issue918.pdf new file mode 100644 index 0000000..d1fc22f Binary files /dev/null and b/documents/pdf/pdf-js/issue918.pdf differ diff --git a/documents/pdf/pdf-js/issue9243.pdf b/documents/pdf/pdf-js/issue9243.pdf new file mode 100644 index 0000000..a09cb6d Binary files /dev/null and b/documents/pdf/pdf-js/issue9243.pdf differ diff --git a/documents/pdf/pdf-js/issue925.pdf b/documents/pdf/pdf-js/issue925.pdf new file mode 100755 index 0000000..7cec5b1 Binary files /dev/null and b/documents/pdf/pdf-js/issue925.pdf differ diff --git a/documents/pdf/pdf-js/issue9252.pdf b/documents/pdf/pdf-js/issue9252.pdf new file mode 100644 index 0000000..c183c55 Binary files /dev/null and b/documents/pdf/pdf-js/issue9252.pdf differ diff --git a/documents/pdf/pdf-js/issue9262-reduced.pdf b/documents/pdf/pdf-js/issue9262-reduced.pdf new file mode 100644 index 0000000..acd3524 Binary files /dev/null and b/documents/pdf/pdf-js/issue9262-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue9278.pdf b/documents/pdf/pdf-js/issue9278.pdf new file mode 100644 index 0000000..f642c55 Binary files /dev/null and b/documents/pdf/pdf-js/issue9278.pdf differ diff --git a/documents/pdf/pdf-js/issue9291.pdf b/documents/pdf/pdf-js/issue9291.pdf new file mode 100644 index 0000000..47f27e2 Binary files /dev/null and b/documents/pdf/pdf-js/issue9291.pdf differ diff --git a/documents/pdf/pdf-js/issue9418.pdf b/documents/pdf/pdf-js/issue9418.pdf new file mode 100644 index 0000000..b903ace Binary files /dev/null and b/documents/pdf/pdf-js/issue9418.pdf differ diff --git a/documents/pdf/pdf-js/issue9458.pdf b/documents/pdf/pdf-js/issue9458.pdf new file mode 100644 index 0000000..03caddb Binary files /dev/null and b/documents/pdf/pdf-js/issue9458.pdf differ diff --git a/documents/pdf/pdf-js/issue9534-reduced.pdf b/documents/pdf/pdf-js/issue9534-reduced.pdf new file mode 100644 index 0000000..33b8f22 Binary files /dev/null and b/documents/pdf/pdf-js/issue9534-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue9655-reduced.pdf b/documents/pdf/pdf-js/issue9655-reduced.pdf new file mode 100644 index 0000000..b50395b Binary files /dev/null and b/documents/pdf/pdf-js/issue9655-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue9713.pdf b/documents/pdf/pdf-js/issue9713.pdf new file mode 100644 index 0000000..98addb3 Binary files /dev/null and b/documents/pdf/pdf-js/issue9713.pdf differ diff --git a/documents/pdf/pdf-js/issue9915-reduced.pdf b/documents/pdf/pdf-js/issue9915-reduced.pdf new file mode 100644 index 0000000..3ce6900 Binary files /dev/null and b/documents/pdf/pdf-js/issue9915-reduced.pdf differ diff --git a/documents/pdf/pdf-js/issue9940.pdf b/documents/pdf/pdf-js/issue9940.pdf new file mode 100644 index 0000000..acfa82f Binary files /dev/null and b/documents/pdf/pdf-js/issue9940.pdf differ diff --git a/documents/pdf/pdf-js/issue9949.pdf b/documents/pdf/pdf-js/issue9949.pdf new file mode 100644 index 0000000..b763661 Binary files /dev/null and b/documents/pdf/pdf-js/issue9949.pdf differ diff --git a/documents/pdf/pdf-js/issue9972-1.pdf b/documents/pdf/pdf-js/issue9972-1.pdf new file mode 100644 index 0000000..c6f74aa Binary files /dev/null and b/documents/pdf/pdf-js/issue9972-1.pdf differ diff --git a/documents/pdf/pdf-js/issue9972-2.pdf b/documents/pdf/pdf-js/issue9972-2.pdf new file mode 100644 index 0000000..4438658 Binary files /dev/null and b/documents/pdf/pdf-js/issue9972-2.pdf differ diff --git a/documents/pdf/pdf-js/issue9972-3.pdf b/documents/pdf/pdf-js/issue9972-3.pdf new file mode 100644 index 0000000..44119fe Binary files /dev/null and b/documents/pdf/pdf-js/issue9972-3.pdf differ diff --git a/documents/pdf/pdf-js/javauninstall-7r.pdf b/documents/pdf/pdf-js/javauninstall-7r.pdf new file mode 100644 index 0000000..4b43ed6 Binary files /dev/null and b/documents/pdf/pdf-js/javauninstall-7r.pdf differ diff --git a/documents/pdf/pdf-js/jbig2-symbol-offset.pdf b/documents/pdf/pdf-js/jbig2-symbol-offset.pdf new file mode 100644 index 0000000..2ec3b83 Binary files /dev/null and b/documents/pdf/pdf-js/jbig2-symbol-offset.pdf differ diff --git a/documents/pdf/pdf-js/jp2k-resetprob.pdf b/documents/pdf/pdf-js/jp2k-resetprob.pdf new file mode 100644 index 0000000..3beb24a Binary files /dev/null and b/documents/pdf/pdf-js/jp2k-resetprob.pdf differ diff --git a/documents/pdf/pdf-js/js-authors.pdf b/documents/pdf/pdf-js/js-authors.pdf new file mode 100644 index 0000000..c076757 Binary files /dev/null and b/documents/pdf/pdf-js/js-authors.pdf differ diff --git a/documents/pdf/pdf-js/js-buttons.pdf b/documents/pdf/pdf-js/js-buttons.pdf new file mode 100644 index 0000000..7e37782 Binary files /dev/null and b/documents/pdf/pdf-js/js-buttons.pdf differ diff --git a/documents/pdf/pdf-js/js-colors.pdf b/documents/pdf/pdf-js/js-colors.pdf new file mode 100644 index 0000000..46fc2a9 Binary files /dev/null and b/documents/pdf/pdf-js/js-colors.pdf differ diff --git a/documents/pdf/pdf-js/listbox-actions.pdf b/documents/pdf/pdf-js/listbox-actions.pdf new file mode 100644 index 0000000..1139f88 Binary files /dev/null and b/documents/pdf/pdf-js/listbox-actions.pdf differ diff --git a/documents/pdf/pdf-js/mixedfonts.pdf b/documents/pdf/pdf-js/mixedfonts.pdf new file mode 100644 index 0000000..968bf64 Binary files /dev/null and b/documents/pdf/pdf-js/mixedfonts.pdf differ diff --git a/documents/pdf/pdf-js/mmtype1.pdf b/documents/pdf/pdf-js/mmtype1.pdf new file mode 100644 index 0000000..90354d4 Binary files /dev/null and b/documents/pdf/pdf-js/mmtype1.pdf differ diff --git a/documents/pdf/pdf-js/multiline.pdf b/documents/pdf/pdf-js/multiline.pdf new file mode 100755 index 0000000..afee5a4 Binary files /dev/null and b/documents/pdf/pdf-js/multiline.pdf differ diff --git a/documents/pdf/pdf-js/multiple-filters-length-zero.pdf b/documents/pdf/pdf-js/multiple-filters-length-zero.pdf new file mode 100644 index 0000000..ccb39ac Binary files /dev/null and b/documents/pdf/pdf-js/multiple-filters-length-zero.pdf differ diff --git a/documents/pdf/pdf-js/noembed-eucjp.pdf b/documents/pdf/pdf-js/noembed-eucjp.pdf new file mode 100644 index 0000000..814d35a Binary files /dev/null and b/documents/pdf/pdf-js/noembed-eucjp.pdf differ diff --git a/documents/pdf/pdf-js/noembed-identity-2.pdf b/documents/pdf/pdf-js/noembed-identity-2.pdf new file mode 100644 index 0000000..0e27ea0 Binary files /dev/null and b/documents/pdf/pdf-js/noembed-identity-2.pdf differ diff --git a/documents/pdf/pdf-js/noembed-identity.pdf b/documents/pdf/pdf-js/noembed-identity.pdf new file mode 100644 index 0000000..80924b3 Binary files /dev/null and b/documents/pdf/pdf-js/noembed-identity.pdf differ diff --git a/documents/pdf/pdf-js/noembed-jis7.pdf b/documents/pdf/pdf-js/noembed-jis7.pdf new file mode 100644 index 0000000..1f2a34a Binary files /dev/null and b/documents/pdf/pdf-js/noembed-jis7.pdf differ diff --git a/documents/pdf/pdf-js/noembed-sjis.pdf b/documents/pdf/pdf-js/noembed-sjis.pdf new file mode 100644 index 0000000..77b68f7 Binary files /dev/null and b/documents/pdf/pdf-js/noembed-sjis.pdf differ diff --git a/documents/pdf/pdf-js/non-embedded-nuptialscript.pdf b/documents/pdf/pdf-js/non-embedded-nuptialscript.pdf new file mode 100644 index 0000000..76669d4 Binary files /dev/null and b/documents/pdf/pdf-js/non-embedded-nuptialscript.pdf differ diff --git a/documents/pdf/pdf-js/openoffice.pdf b/documents/pdf/pdf-js/openoffice.pdf new file mode 100644 index 0000000..e40e7bc Binary files /dev/null and b/documents/pdf/pdf-js/openoffice.pdf differ diff --git a/documents/pdf/pdf-js/operator-in-tj-array.pdf b/documents/pdf/pdf-js/operator-in-tj-array.pdf new file mode 100644 index 0000000..8cf5709 Binary files /dev/null and b/documents/pdf/pdf-js/operator-in-tj-array.pdf differ diff --git a/documents/pdf/pdf-js/pages-tree-refs.pdf b/documents/pdf/pdf-js/pages-tree-refs.pdf new file mode 100644 index 0000000..8eb4d0b Binary files /dev/null and b/documents/pdf/pdf-js/pages-tree-refs.pdf differ diff --git a/documents/pdf/pdf-js/pattern-text-embedded-font.pdf b/documents/pdf/pdf-js/pattern-text-embedded-font.pdf new file mode 100644 index 0000000..2b9e8c0 Binary files /dev/null and b/documents/pdf/pdf-js/pattern-text-embedded-font.pdf differ diff --git a/documents/pdf/pdf-js/pdfbox-3148-2-fuzzed.pdf b/documents/pdf/pdf-js/pdfbox-3148-2-fuzzed.pdf new file mode 100644 index 0000000..dac79d9 Binary files /dev/null and b/documents/pdf/pdf-js/pdfbox-3148-2-fuzzed.pdf differ diff --git a/documents/pdf/pdf-js/pdfbox-4352-0.pdf b/documents/pdf/pdf-js/pdfbox-4352-0.pdf new file mode 100644 index 0000000..757345c Binary files /dev/null and b/documents/pdf/pdf-js/pdfbox-4352-0.pdf differ diff --git a/documents/pdf/pdf-js/pdfjs-7562-reduced.pdf b/documents/pdf/pdf-js/pdfjs-7562-reduced.pdf new file mode 100644 index 0000000..b42d6d4 Binary files /dev/null and b/documents/pdf/pdf-js/pdfjs-7562-reduced.pdf differ diff --git a/documents/pdf/pdf-js/pdfjs-9279-reduced.pdf b/documents/pdf/pdf-js/pdfjs-9279-reduced.pdf new file mode 100644 index 0000000..643234a Binary files /dev/null and b/documents/pdf/pdf-js/pdfjs-9279-reduced.pdf differ diff --git a/documents/pdf/pdf-js/pdfjs-wikipedia.pdf b/documents/pdf/pdf-js/pdfjs-wikipedia.pdf new file mode 100755 index 0000000..d874a43 Binary files /dev/null and b/documents/pdf/pdf-js/pdfjs-wikipedia.pdf differ diff --git a/documents/pdf/pdf-js/pdfjsbad1586.pdf b/documents/pdf/pdf-js/pdfjsbad1586.pdf new file mode 100644 index 0000000..fae41ae Binary files /dev/null and b/documents/pdf/pdf-js/pdfjsbad1586.pdf differ diff --git a/documents/pdf/pdf-js/pdfkit-compressed.pdf b/documents/pdf/pdf-js/pdfkit-compressed.pdf new file mode 100644 index 0000000..73f8f39 Binary files /dev/null and b/documents/pdf/pdf-js/pdfkit-compressed.pdf differ diff --git a/documents/pdf/pdf-js/pdkids.pdf b/documents/pdf/pdf-js/pdkids.pdf new file mode 100644 index 0000000..4d292ac Binary files /dev/null and b/documents/pdf/pdf-js/pdkids.pdf differ diff --git a/documents/pdf/pdf-js/personwithdog.pdf b/documents/pdf/pdf-js/personwithdog.pdf new file mode 100755 index 0000000..0027dfc Binary files /dev/null and b/documents/pdf/pdf-js/personwithdog.pdf differ diff --git a/documents/pdf/pdf-js/poppler-395-0-fuzzed.pdf b/documents/pdf/pdf-js/poppler-395-0-fuzzed.pdf new file mode 100644 index 0000000..f94a653 Binary files /dev/null and b/documents/pdf/pdf-js/poppler-395-0-fuzzed.pdf differ diff --git a/documents/pdf/pdf-js/poppler-67295-0.pdf b/documents/pdf/pdf-js/poppler-67295-0.pdf new file mode 100644 index 0000000..f9fd9c9 Binary files /dev/null and b/documents/pdf/pdf-js/poppler-67295-0.pdf differ diff --git a/documents/pdf/pdf-js/poppler-742-0-fuzzed.pdf b/documents/pdf/pdf-js/poppler-742-0-fuzzed.pdf new file mode 100644 index 0000000..88f3666 Binary files /dev/null and b/documents/pdf/pdf-js/poppler-742-0-fuzzed.pdf differ diff --git a/documents/pdf/pdf-js/poppler-85140-0.pdf b/documents/pdf/pdf-js/poppler-85140-0.pdf new file mode 100644 index 0000000..c347c6c Binary files /dev/null and b/documents/pdf/pdf-js/poppler-85140-0.pdf differ diff --git a/documents/pdf/pdf-js/poppler-90-0-fuzzed.pdf b/documents/pdf/pdf-js/poppler-90-0-fuzzed.pdf new file mode 100644 index 0000000..e909d20 Binary files /dev/null and b/documents/pdf/pdf-js/poppler-90-0-fuzzed.pdf differ diff --git a/documents/pdf/pdf-js/poppler-91414-0-53.pdf b/documents/pdf/pdf-js/poppler-91414-0-53.pdf new file mode 100644 index 0000000..783e663 Binary files /dev/null and b/documents/pdf/pdf-js/poppler-91414-0-53.pdf differ diff --git a/documents/pdf/pdf-js/poppler-91414-0-54.pdf b/documents/pdf/pdf-js/poppler-91414-0-54.pdf new file mode 100644 index 0000000..95cc870 Binary files /dev/null and b/documents/pdf/pdf-js/poppler-91414-0-54.pdf differ diff --git a/documents/pdf/pdf-js/poppler-937-0-fuzzed.pdf b/documents/pdf/pdf-js/poppler-937-0-fuzzed.pdf new file mode 100644 index 0000000..adcb895 Binary files /dev/null and b/documents/pdf/pdf-js/poppler-937-0-fuzzed.pdf differ diff --git a/documents/pdf/pdf-js/pr12564.pdf b/documents/pdf/pdf-js/pr12564.pdf new file mode 100644 index 0000000..4762b4d Binary files /dev/null and b/documents/pdf/pdf-js/pr12564.pdf differ diff --git a/documents/pdf/pdf-js/pr12828.pdf b/documents/pdf/pdf-js/pr12828.pdf new file mode 100644 index 0000000..44f46ed Binary files /dev/null and b/documents/pdf/pdf-js/pr12828.pdf differ diff --git a/documents/pdf/pdf-js/pr4922.pdf b/documents/pdf/pdf-js/pr4922.pdf new file mode 100644 index 0000000..8d873b8 Binary files /dev/null and b/documents/pdf/pdf-js/pr4922.pdf differ diff --git a/documents/pdf/pdf-js/pr6531-1.pdf b/documents/pdf/pdf-js/pr6531-1.pdf new file mode 100644 index 0000000..73eb7fa Binary files /dev/null and b/documents/pdf/pdf-js/pr6531-1.pdf differ diff --git a/documents/pdf/pdf-js/pr6531-2.pdf b/documents/pdf/pdf-js/pr6531-2.pdf new file mode 100644 index 0000000..01f38c1 Binary files /dev/null and b/documents/pdf/pdf-js/pr6531-2.pdf differ diff --git a/documents/pdf/pdf-js/pr7352.pdf b/documents/pdf/pdf-js/pr7352.pdf new file mode 100644 index 0000000..af6e74f Binary files /dev/null and b/documents/pdf/pdf-js/pr7352.pdf differ diff --git a/documents/pdf/pdf-js/prefilled-f1040.pdf b/documents/pdf/pdf-js/prefilled-f1040.pdf new file mode 100644 index 0000000..fd4f82f Binary files /dev/null and b/documents/pdf/pdf-js/prefilled-f1040.pdf differ diff --git a/documents/pdf/pdf-js/quadpoints.pdf b/documents/pdf/pdf-js/quadpoints.pdf new file mode 100644 index 0000000..7f87f7f Binary files /dev/null and b/documents/pdf/pdf-js/quadpoints.pdf differ diff --git a/documents/pdf/pdf-js/rc-annotation.pdf b/documents/pdf/pdf-js/rc-annotation.pdf new file mode 100644 index 0000000..249ff96 Binary files /dev/null and b/documents/pdf/pdf-js/rc-annotation.pdf differ diff --git a/documents/pdf/pdf-js/redhat-1531897-0.pdf b/documents/pdf/pdf-js/redhat-1531897-0.pdf new file mode 100644 index 0000000..0404fa4 Binary files /dev/null and b/documents/pdf/pdf-js/redhat-1531897-0.pdf differ diff --git a/documents/pdf/pdf-js/resetform.pdf b/documents/pdf/pdf-js/resetform.pdf new file mode 100644 index 0000000..c439a47 Binary files /dev/null and b/documents/pdf/pdf-js/resetform.pdf differ diff --git a/documents/pdf/pdf-js/rotated-freetexts.pdf b/documents/pdf/pdf-js/rotated-freetexts.pdf new file mode 100755 index 0000000..9f7fd4c Binary files /dev/null and b/documents/pdf/pdf-js/rotated-freetexts.pdf differ diff --git a/documents/pdf/pdf-js/rotated-ink.pdf b/documents/pdf/pdf-js/rotated-ink.pdf new file mode 100644 index 0000000..1b61c0c Binary files /dev/null and b/documents/pdf/pdf-js/rotated-ink.pdf differ diff --git a/documents/pdf/pdf-js/rotated.pdf b/documents/pdf/pdf-js/rotated.pdf new file mode 100644 index 0000000..8ff3d43 Binary files /dev/null and b/documents/pdf/pdf-js/rotated.pdf differ diff --git a/documents/pdf/pdf-js/rotation.pdf b/documents/pdf/pdf-js/rotation.pdf new file mode 100644 index 0000000..104ec00 Binary files /dev/null and b/documents/pdf/pdf-js/rotation.pdf differ diff --git a/documents/pdf/pdf-js/s2.pdf b/documents/pdf/pdf-js/s2.pdf new file mode 100644 index 0000000..3597c67 Binary files /dev/null and b/documents/pdf/pdf-js/s2.pdf differ diff --git a/documents/pdf/pdf-js/scan-bad.pdf b/documents/pdf/pdf-js/scan-bad.pdf new file mode 100755 index 0000000..7a1d21b Binary files /dev/null and b/documents/pdf/pdf-js/scan-bad.pdf differ diff --git a/documents/pdf/pdf-js/scorecard-reduced.pdf b/documents/pdf/pdf-js/scorecard-reduced.pdf new file mode 100644 index 0000000..e603bc7 Binary files /dev/null and b/documents/pdf/pdf-js/scorecard-reduced.pdf differ diff --git a/documents/pdf/pdf-js/sechandler.pdf b/documents/pdf/pdf-js/sechandler.pdf new file mode 100644 index 0000000..915bded Binary files /dev/null and b/documents/pdf/pdf-js/sechandler.pdf differ diff --git a/documents/pdf/pdf-js/shading-extend.pdf b/documents/pdf/pdf-js/shading-extend.pdf new file mode 100644 index 0000000..88274f4 Binary files /dev/null and b/documents/pdf/pdf-js/shading-extend.pdf differ diff --git a/documents/pdf/pdf-js/showtext-shadingpattern.pdf b/documents/pdf/pdf-js/showtext-shadingpattern.pdf new file mode 100644 index 0000000..fb559f8 Binary files /dev/null and b/documents/pdf/pdf-js/showtext-shadingpattern.pdf differ diff --git a/documents/pdf/pdf-js/simpletype3font.pdf b/documents/pdf/pdf-js/simpletype3font.pdf new file mode 100644 index 0000000..5a68e29 Binary files /dev/null and b/documents/pdf/pdf-js/simpletype3font.pdf differ diff --git a/documents/pdf/pdf-js/sizes.pdf b/documents/pdf/pdf-js/sizes.pdf new file mode 100644 index 0000000..6e0e59c Binary files /dev/null and b/documents/pdf/pdf-js/sizes.pdf differ diff --git a/documents/pdf/pdf-js/smaskdim.pdf b/documents/pdf/pdf-js/smaskdim.pdf new file mode 100755 index 0000000..a5daf0a Binary files /dev/null and b/documents/pdf/pdf-js/smaskdim.pdf differ diff --git a/documents/pdf/pdf-js/stamps.pdf b/documents/pdf/pdf-js/stamps.pdf new file mode 100755 index 0000000..9494995 Binary files /dev/null and b/documents/pdf/pdf-js/stamps.pdf differ diff --git a/documents/pdf/pdf-js/standard-fonts.pdf b/documents/pdf/pdf-js/standard-fonts.pdf new file mode 100644 index 0000000..59d6c59 Binary files /dev/null and b/documents/pdf/pdf-js/standard-fonts.pdf differ diff --git a/documents/pdf/pdf-js/structure-simple.pdf b/documents/pdf/pdf-js/structure-simple.pdf new file mode 100644 index 0000000..d78e0f2 Binary files /dev/null and b/documents/pdf/pdf-js/structure-simple.pdf differ diff --git a/documents/pdf/pdf-js/tagged-stamp.pdf b/documents/pdf/pdf-js/tagged-stamp.pdf new file mode 100755 index 0000000..544d49c Binary files /dev/null and b/documents/pdf/pdf-js/tagged-stamp.pdf differ diff --git a/documents/pdf/pdf-js/tamreview.pdf b/documents/pdf/pdf-js/tamreview.pdf new file mode 100644 index 0000000..4a67926 Binary files /dev/null and b/documents/pdf/pdf-js/tamreview.pdf differ diff --git a/documents/pdf/pdf-js/tensor-allflags-withfunction.pdf b/documents/pdf/pdf-js/tensor-allflags-withfunction.pdf new file mode 100644 index 0000000..7eb6684 Binary files /dev/null and b/documents/pdf/pdf-js/tensor-allflags-withfunction.pdf differ diff --git a/documents/pdf/pdf-js/test-plusminus.pdf b/documents/pdf/pdf-js/test-plusminus.pdf new file mode 100644 index 0000000..5243d53 Binary files /dev/null and b/documents/pdf/pdf-js/test-plusminus.pdf differ diff --git a/documents/pdf/pdf-js/text-clip-cff-cid.pdf b/documents/pdf/pdf-js/text-clip-cff-cid.pdf new file mode 100644 index 0000000..781afdc Binary files /dev/null and b/documents/pdf/pdf-js/text-clip-cff-cid.pdf differ diff --git a/documents/pdf/pdf-js/textfields.pdf b/documents/pdf/pdf-js/textfields.pdf new file mode 100755 index 0000000..bd8628e Binary files /dev/null and b/documents/pdf/pdf-js/textfields.pdf differ diff --git a/documents/pdf/pdf-js/thuluthfeatures.pdf b/documents/pdf/pdf-js/thuluthfeatures.pdf new file mode 100755 index 0000000..145167b Binary files /dev/null and b/documents/pdf/pdf-js/thuluthfeatures.pdf differ diff --git a/documents/pdf/pdf-js/tiling-pattern-box.pdf b/documents/pdf/pdf-js/tiling-pattern-box.pdf new file mode 100644 index 0000000..80f7a6c Binary files /dev/null and b/documents/pdf/pdf-js/tiling-pattern-box.pdf differ diff --git a/documents/pdf/pdf-js/tiling-pattern-large-steps.pdf b/documents/pdf/pdf-js/tiling-pattern-large-steps.pdf new file mode 100644 index 0000000..fd0899d Binary files /dev/null and b/documents/pdf/pdf-js/tiling-pattern-large-steps.pdf differ diff --git a/documents/pdf/pdf-js/tracemonkey-a11y.pdf b/documents/pdf/pdf-js/tracemonkey-a11y.pdf new file mode 100644 index 0000000..02de161 Binary files /dev/null and b/documents/pdf/pdf-js/tracemonkey-a11y.pdf differ diff --git a/documents/pdf/pdf-js/tracemonkey-freetext.pdf b/documents/pdf/pdf-js/tracemonkey-freetext.pdf new file mode 100755 index 0000000..ed370cf Binary files /dev/null and b/documents/pdf/pdf-js/tracemonkey-freetext.pdf differ diff --git a/documents/pdf/pdf-js/tracemonkey.pdf b/documents/pdf/pdf-js/tracemonkey.pdf new file mode 100644 index 0000000..ab7caa6 Binary files /dev/null and b/documents/pdf/pdf-js/tracemonkey.pdf differ diff --git a/documents/pdf/pdf-js/transparency-group.pdf b/documents/pdf/pdf-js/transparency-group.pdf new file mode 100644 index 0000000..3f1def4 Binary files /dev/null and b/documents/pdf/pdf-js/transparency-group.pdf differ diff --git a/documents/pdf/pdf-js/transparent.pdf b/documents/pdf/pdf-js/transparent.pdf new file mode 100644 index 0000000..118b8bd Binary files /dev/null and b/documents/pdf/pdf-js/transparent.pdf differ diff --git a/documents/pdf/pdf-js/truetype-without-cmap.pdf b/documents/pdf/pdf-js/truetype-without-cmap.pdf new file mode 100644 index 0000000..53ea41d Binary files /dev/null and b/documents/pdf/pdf-js/truetype-without-cmap.pdf differ diff --git a/documents/pdf/pdf-js/type4psfunc.pdf b/documents/pdf/pdf-js/type4psfunc.pdf new file mode 100755 index 0000000..69fdc2f Binary files /dev/null and b/documents/pdf/pdf-js/type4psfunc.pdf differ diff --git a/documents/pdf/pdf-js/vertical.pdf b/documents/pdf/pdf-js/vertical.pdf new file mode 100644 index 0000000..a39a33a Binary files /dev/null and b/documents/pdf/pdf-js/vertical.pdf differ diff --git a/documents/pdf/pdf-js/visibility-expressions.pdf b/documents/pdf/pdf-js/visibility-expressions.pdf new file mode 100644 index 0000000..270ab4a Binary files /dev/null and b/documents/pdf/pdf-js/visibility-expressions.pdf differ diff --git a/documents/pdf/pdf-js/widget-hidden-print.pdf b/documents/pdf/pdf-js/widget-hidden-print.pdf new file mode 100644 index 0000000..8de105a Binary files /dev/null and b/documents/pdf/pdf-js/widget-hidden-print.pdf differ diff --git a/documents/pdf/pdf-js/xfa-filled-imm1344e.pdf b/documents/pdf/pdf-js/xfa-filled-imm1344e.pdf new file mode 100644 index 0000000..81a74ef Binary files /dev/null and b/documents/pdf/pdf-js/xfa-filled-imm1344e.pdf differ diff --git a/documents/pdf/pdf-js/xfa-issue14315.pdf b/documents/pdf/pdf-js/xfa-issue14315.pdf new file mode 100644 index 0000000..0683df8 Binary files /dev/null and b/documents/pdf/pdf-js/xfa-issue14315.pdf differ diff --git a/documents/pdf/pdf-js/xobject-image.pdf b/documents/pdf/pdf-js/xobject-image.pdf new file mode 100644 index 0000000..9f7026e Binary files /dev/null and b/documents/pdf/pdf-js/xobject-image.pdf differ diff --git a/documents/pdf/pdf-js/xref-command-missing.pdf b/documents/pdf/pdf-js/xref-command-missing.pdf new file mode 100644 index 0000000..35dece6 Binary files /dev/null and b/documents/pdf/pdf-js/xref-command-missing.pdf differ diff --git a/documents/pdf/pdf-js/zapfdingbats.pdf b/documents/pdf/pdf-js/zapfdingbats.pdf new file mode 100644 index 0000000..a33af42 Binary files /dev/null and b/documents/pdf/pdf-js/zapfdingbats.pdf differ diff --git a/documents/pdf/pdf-js/zero-descent.pdf b/documents/pdf/pdf-js/zero-descent.pdf new file mode 100644 index 0000000..1bb8294 Binary files /dev/null and b/documents/pdf/pdf-js/zero-descent.pdf differ diff --git a/documents/pdf/pdf-js/zerowidthline.pdf b/documents/pdf/pdf-js/zerowidthline.pdf new file mode 100644 index 0000000..65a15e1 Binary files /dev/null and b/documents/pdf/pdf-js/zerowidthline.pdf differ diff --git a/documents/pdf/pikepdf/1biticc.pdf b/documents/pdf/pikepdf/1biticc.pdf new file mode 100644 index 0000000..b21b8b4 Binary files /dev/null and b/documents/pdf/pikepdf/1biticc.pdf differ diff --git a/documents/pdf/pikepdf/378014596.pdf b/documents/pdf/pikepdf/378014596.pdf new file mode 100644 index 0000000..fd1c915 Binary files /dev/null and b/documents/pdf/pikepdf/378014596.pdf differ diff --git a/documents/pdf/pikepdf/aquamarine-cie.pdf b/documents/pdf/pikepdf/aquamarine-cie.pdf new file mode 100644 index 0000000..2a7cfea Binary files /dev/null and b/documents/pdf/pikepdf/aquamarine-cie.pdf differ diff --git a/documents/pdf/pikepdf/ccitt-endofline-true.pdf b/documents/pdf/pikepdf/ccitt-endofline-true.pdf new file mode 100644 index 0000000..6c2f01e Binary files /dev/null and b/documents/pdf/pikepdf/ccitt-endofline-true.pdf differ diff --git a/documents/pdf/pikepdf/cmyk-jpeg.pdf b/documents/pdf/pikepdf/cmyk-jpeg.pdf new file mode 100644 index 0000000..211e4b1 Binary files /dev/null and b/documents/pdf/pikepdf/cmyk-jpeg.pdf differ diff --git a/documents/pdf/pikepdf/congress-gray.pdf b/documents/pdf/pikepdf/congress-gray.pdf new file mode 100644 index 0000000..a4fda7f Binary files /dev/null and b/documents/pdf/pikepdf/congress-gray.pdf differ diff --git a/documents/pdf/pikepdf/congress.pdf b/documents/pdf/pikepdf/congress.pdf new file mode 100644 index 0000000..f7edbdb Binary files /dev/null and b/documents/pdf/pikepdf/congress.pdf differ diff --git a/documents/pdf/pikepdf/ctm-cm.pdf b/documents/pdf/pikepdf/ctm-cm.pdf new file mode 100644 index 0000000..bcbca62 Binary files /dev/null and b/documents/pdf/pikepdf/ctm-cm.pdf differ diff --git a/documents/pdf/pikepdf/cyclic-toc.pdf b/documents/pdf/pikepdf/cyclic-toc.pdf new file mode 100644 index 0000000..b3d32a4 Binary files /dev/null and b/documents/pdf/pikepdf/cyclic-toc.pdf differ diff --git a/documents/pdf/pikepdf/form-210966.pdf b/documents/pdf/pikepdf/form-210966.pdf new file mode 100644 index 0000000..db417ea Binary files /dev/null and b/documents/pdf/pikepdf/form-210966.pdf differ diff --git a/documents/pdf/pikepdf/form-dd0293.pdf b/documents/pdf/pikepdf/form-dd0293.pdf new file mode 100644 index 0000000..bc6d9c4 Binary files /dev/null and b/documents/pdf/pikepdf/form-dd0293.pdf differ diff --git a/documents/pdf/pikepdf/form.pdf b/documents/pdf/pikepdf/form.pdf new file mode 100644 index 0000000..6197294 Binary files /dev/null and b/documents/pdf/pikepdf/form.pdf differ diff --git a/documents/pdf/pikepdf/formxobject.pdf b/documents/pdf/pikepdf/formxobject.pdf new file mode 100644 index 0000000..34fa8d2 Binary files /dev/null and b/documents/pdf/pikepdf/formxobject.pdf differ diff --git a/documents/pdf/pikepdf/fourpages.pdf b/documents/pdf/pikepdf/fourpages.pdf new file mode 100644 index 0000000..b9280fd Binary files /dev/null and b/documents/pdf/pikepdf/fourpages.pdf differ diff --git a/documents/pdf/pikepdf/graph-encrypted.pdf b/documents/pdf/pikepdf/graph-encrypted.pdf new file mode 100644 index 0000000..bde8de8 Binary files /dev/null and b/documents/pdf/pikepdf/graph-encrypted.pdf differ diff --git a/documents/pdf/pikepdf/graph.pdf b/documents/pdf/pikepdf/graph.pdf new file mode 100644 index 0000000..812f493 Binary files /dev/null and b/documents/pdf/pikepdf/graph.pdf differ diff --git a/documents/pdf/pikepdf/image-mono-inline.pdf b/documents/pdf/pikepdf/image-mono-inline.pdf new file mode 100644 index 0000000..34ac5c6 Binary files /dev/null and b/documents/pdf/pikepdf/image-mono-inline.pdf differ diff --git a/documents/pdf/pikepdf/invalid-creationdate.pdf b/documents/pdf/pikepdf/invalid-creationdate.pdf new file mode 100644 index 0000000..5f5c0d0 Binary files /dev/null and b/documents/pdf/pikepdf/invalid-creationdate.pdf differ diff --git a/documents/pdf/pikepdf/jbig2.pdf b/documents/pdf/pikepdf/jbig2.pdf new file mode 100644 index 0000000..513a72e Binary files /dev/null and b/documents/pdf/pikepdf/jbig2.pdf differ diff --git a/documents/pdf/pikepdf/jbig2global.pdf b/documents/pdf/pikepdf/jbig2global.pdf new file mode 100644 index 0000000..d887828 Binary files /dev/null and b/documents/pdf/pikepdf/jbig2global.pdf differ diff --git a/documents/pdf/pikepdf/multiline-diffmap-font.pdf b/documents/pdf/pikepdf/multiline-diffmap-font.pdf new file mode 100644 index 0000000..3b2294c Binary files /dev/null and b/documents/pdf/pikepdf/multiline-diffmap-font.pdf differ diff --git a/documents/pdf/pikepdf/newline-buffer-test.pdf b/documents/pdf/pikepdf/newline-buffer-test.pdf new file mode 100644 index 0000000..118a996 Binary files /dev/null and b/documents/pdf/pikepdf/newline-buffer-test.pdf differ diff --git a/documents/pdf/pikepdf/outlines.pdf b/documents/pdf/pikepdf/outlines.pdf new file mode 100644 index 0000000..c997723 Binary files /dev/null and b/documents/pdf/pikepdf/outlines.pdf differ diff --git a/documents/pdf/pikepdf/pal-1bit-rgb.pdf b/documents/pdf/pikepdf/pal-1bit-rgb.pdf new file mode 100644 index 0000000..1759917 Binary files /dev/null and b/documents/pdf/pikepdf/pal-1bit-rgb.pdf differ diff --git a/documents/pdf/pikepdf/pal-1bit-trivial.pdf b/documents/pdf/pikepdf/pal-1bit-trivial.pdf new file mode 100644 index 0000000..1cf66b1 Binary files /dev/null and b/documents/pdf/pikepdf/pal-1bit-trivial.pdf differ diff --git a/documents/pdf/pikepdf/pal.pdf b/documents/pdf/pikepdf/pal.pdf new file mode 100644 index 0000000..ec967b0 Binary files /dev/null and b/documents/pdf/pikepdf/pal.pdf differ diff --git a/documents/pdf/pikepdf/pdfx.pdf b/documents/pdf/pikepdf/pdfx.pdf new file mode 100755 index 0000000..c6e24d2 Binary files /dev/null and b/documents/pdf/pikepdf/pdfx.pdf differ diff --git a/documents/pdf/pikepdf/pike-flate-jp2.pdf b/documents/pdf/pikepdf/pike-flate-jp2.pdf new file mode 100644 index 0000000..22f56ef Binary files /dev/null and b/documents/pdf/pikepdf/pike-flate-jp2.pdf differ diff --git a/documents/pdf/pikepdf/pike-jp2.pdf b/documents/pdf/pikepdf/pike-jp2.pdf new file mode 100644 index 0000000..d9c5944 Binary files /dev/null and b/documents/pdf/pikepdf/pike-jp2.pdf differ diff --git a/documents/pdf/pikepdf/pink-palette-icc.pdf b/documents/pdf/pikepdf/pink-palette-icc.pdf new file mode 100644 index 0000000..7666a31 Binary files /dev/null and b/documents/pdf/pikepdf/pink-palette-icc.pdf differ diff --git a/documents/pdf/pikepdf/rle.pdf b/documents/pdf/pikepdf/rle.pdf new file mode 100644 index 0000000..cb10a4a Binary files /dev/null and b/documents/pdf/pikepdf/rle.pdf differ diff --git a/documents/pdf/pikepdf/sandwich.pdf b/documents/pdf/pikepdf/sandwich.pdf new file mode 100644 index 0000000..a7f3453 Binary files /dev/null and b/documents/pdf/pikepdf/sandwich.pdf differ diff --git a/documents/pdf/pikepdf/small.pdf b/documents/pdf/pikepdf/small.pdf new file mode 100644 index 0000000..a846f91 Binary files /dev/null and b/documents/pdf/pikepdf/small.pdf differ diff --git a/documents/pdf/pikepdf/verapdf-test-suite-6-2-10-t02-pass-a.pdf b/documents/pdf/pikepdf/verapdf-test-suite-6-2-10-t02-pass-a.pdf new file mode 100644 index 0000000..ccfec6a Binary files /dev/null and b/documents/pdf/pikepdf/verapdf-test-suite-6-2-10-t02-pass-a.pdf differ diff --git a/documents/pdf/pikepdf/verapdf-test-suite-6-2-3-3-t01-fail-c.pdf b/documents/pdf/pikepdf/verapdf-test-suite-6-2-3-3-t01-fail-c.pdf new file mode 100644 index 0000000..d943b01 Binary files /dev/null and b/documents/pdf/pikepdf/verapdf-test-suite-6-2-3-3-t01-fail-c.pdf differ diff --git a/documents/pdf/qpdf/1-1.pdf b/documents/pdf/qpdf/1-1.pdf new file mode 100644 index 0000000..f649436 Binary files /dev/null and b/documents/pdf/qpdf/1-1.pdf differ diff --git a/documents/pdf/qpdf/1-out.pdf b/documents/pdf/qpdf/1-out.pdf new file mode 100644 index 0000000..81ff8ac Binary files /dev/null and b/documents/pdf/qpdf/1-out.pdf differ diff --git a/documents/pdf/qpdf/1.pdf b/documents/pdf/qpdf/1.pdf new file mode 100644 index 0000000..2d8e5af Binary files /dev/null and b/documents/pdf/qpdf/1.pdf differ diff --git a/documents/pdf/qpdf/11-pages-with-labels.pdf b/documents/pdf/qpdf/11-pages-with-labels.pdf new file mode 100644 index 0000000..c1f8e8d Binary files /dev/null and b/documents/pdf/qpdf/11-pages-with-labels.pdf differ diff --git a/documents/pdf/qpdf/11-pages.pdf b/documents/pdf/qpdf/11-pages.pdf new file mode 100644 index 0000000..c6091c5 Binary files /dev/null and b/documents/pdf/qpdf/11-pages.pdf differ diff --git a/documents/pdf/qpdf/2-out.pdf b/documents/pdf/qpdf/2-out.pdf new file mode 100644 index 0000000..84328b5 Binary files /dev/null and b/documents/pdf/qpdf/2-out.pdf differ diff --git a/documents/pdf/qpdf/2.pdf b/documents/pdf/qpdf/2.pdf new file mode 100644 index 0000000..c4bb6f6 Binary files /dev/null and b/documents/pdf/qpdf/2.pdf differ diff --git a/documents/pdf/qpdf/20-pages.pdf b/documents/pdf/qpdf/20-pages.pdf new file mode 100644 index 0000000..0c985d0 Binary files /dev/null and b/documents/pdf/qpdf/20-pages.pdf differ diff --git a/documents/pdf/qpdf/2pages.pdf b/documents/pdf/qpdf/2pages.pdf new file mode 100644 index 0000000..0c459b8 Binary files /dev/null and b/documents/pdf/qpdf/2pages.pdf differ diff --git a/documents/pdf/qpdf/4.pdf b/documents/pdf/qpdf/4.pdf new file mode 100644 index 0000000..26e1187 Binary files /dev/null and b/documents/pdf/qpdf/4.pdf differ diff --git a/documents/pdf/qpdf/5.pdf b/documents/pdf/qpdf/5.pdf new file mode 100644 index 0000000..91a25d2 Binary files /dev/null and b/documents/pdf/qpdf/5.pdf differ diff --git a/documents/pdf/qpdf/add-attachments-1.pdf b/documents/pdf/qpdf/add-attachments-1.pdf new file mode 100644 index 0000000..d5fb4d5 Binary files /dev/null and b/documents/pdf/qpdf/add-attachments-1.pdf differ diff --git a/documents/pdf/qpdf/add-attachments-2.pdf b/documents/pdf/qpdf/add-attachments-2.pdf new file mode 100644 index 0000000..cd6dcc6 Binary files /dev/null and b/documents/pdf/qpdf/add-attachments-2.pdf differ diff --git a/documents/pdf/qpdf/add-contents.pdf b/documents/pdf/qpdf/add-contents.pdf new file mode 100644 index 0000000..171e2e2 Binary files /dev/null and b/documents/pdf/qpdf/add-contents.pdf differ diff --git a/documents/pdf/qpdf/annotation-no-resources-out.pdf b/documents/pdf/qpdf/annotation-no-resources-out.pdf new file mode 100644 index 0000000..3dec9b4 Binary files /dev/null and b/documents/pdf/qpdf/annotation-no-resources-out.pdf differ diff --git a/documents/pdf/qpdf/annotation-no-resources.pdf b/documents/pdf/qpdf/annotation-no-resources.pdf new file mode 100644 index 0000000..24602d7 Binary files /dev/null and b/documents/pdf/qpdf/annotation-no-resources.pdf differ diff --git a/documents/pdf/qpdf/annotations-foreign-file-out.pdf b/documents/pdf/qpdf/annotations-foreign-file-out.pdf new file mode 100644 index 0000000..00980fd Binary files /dev/null and b/documents/pdf/qpdf/annotations-foreign-file-out.pdf differ diff --git a/documents/pdf/qpdf/annotations-no-acroform-with-p-out.pdf b/documents/pdf/qpdf/annotations-no-acroform-with-p-out.pdf new file mode 100644 index 0000000..978341d Binary files /dev/null and b/documents/pdf/qpdf/annotations-no-acroform-with-p-out.pdf differ diff --git a/documents/pdf/qpdf/annotations-no-acroform-with-p.pdf b/documents/pdf/qpdf/annotations-no-acroform-with-p.pdf new file mode 100644 index 0000000..69314aa Binary files /dev/null and b/documents/pdf/qpdf/annotations-no-acroform-with-p.pdf differ diff --git a/documents/pdf/qpdf/annotations-no-acroform.pdf b/documents/pdf/qpdf/annotations-no-acroform.pdf new file mode 100644 index 0000000..eaca31b Binary files /dev/null and b/documents/pdf/qpdf/annotations-no-acroform.pdf differ diff --git a/documents/pdf/qpdf/annotations-out-1.pdf b/documents/pdf/qpdf/annotations-out-1.pdf new file mode 100644 index 0000000..d1428a8 Binary files /dev/null and b/documents/pdf/qpdf/annotations-out-1.pdf differ diff --git a/documents/pdf/qpdf/annotations-out.pdf b/documents/pdf/qpdf/annotations-out.pdf new file mode 100644 index 0000000..a670afd Binary files /dev/null and b/documents/pdf/qpdf/annotations-out.pdf differ diff --git a/documents/pdf/qpdf/annotations-rotated-180.pdf b/documents/pdf/qpdf/annotations-rotated-180.pdf new file mode 100644 index 0000000..d69ce44 Binary files /dev/null and b/documents/pdf/qpdf/annotations-rotated-180.pdf differ diff --git a/documents/pdf/qpdf/annotations-rotated-270.pdf b/documents/pdf/qpdf/annotations-rotated-270.pdf new file mode 100644 index 0000000..6897a0b Binary files /dev/null and b/documents/pdf/qpdf/annotations-rotated-270.pdf differ diff --git a/documents/pdf/qpdf/annotations-rotated-90.pdf b/documents/pdf/qpdf/annotations-rotated-90.pdf new file mode 100644 index 0000000..8b194b8 Binary files /dev/null and b/documents/pdf/qpdf/annotations-rotated-90.pdf differ diff --git a/documents/pdf/qpdf/annotations-same-file-out.pdf b/documents/pdf/qpdf/annotations-same-file-out.pdf new file mode 100644 index 0000000..1217afc Binary files /dev/null and b/documents/pdf/qpdf/annotations-same-file-out.pdf differ diff --git a/documents/pdf/qpdf/annotations.pdf b/documents/pdf/qpdf/annotations.pdf new file mode 100644 index 0000000..51750b6 Binary files /dev/null and b/documents/pdf/qpdf/annotations.pdf differ diff --git a/documents/pdf/qpdf/appearances-1-rotated.pdf b/documents/pdf/qpdf/appearances-1-rotated.pdf new file mode 100644 index 0000000..0089caf Binary files /dev/null and b/documents/pdf/qpdf/appearances-1-rotated.pdf differ diff --git a/documents/pdf/qpdf/appearances-1.pdf b/documents/pdf/qpdf/appearances-1.pdf new file mode 100644 index 0000000..c8c1293 Binary files /dev/null and b/documents/pdf/qpdf/appearances-1.pdf differ diff --git a/documents/pdf/qpdf/appearances-11.pdf b/documents/pdf/qpdf/appearances-11.pdf new file mode 100644 index 0000000..5aa0f19 Binary files /dev/null and b/documents/pdf/qpdf/appearances-11.pdf differ diff --git a/documents/pdf/qpdf/appearances-12.pdf b/documents/pdf/qpdf/appearances-12.pdf new file mode 100644 index 0000000..d6fe1b1 Binary files /dev/null and b/documents/pdf/qpdf/appearances-12.pdf differ diff --git a/documents/pdf/qpdf/appearances-2.pdf b/documents/pdf/qpdf/appearances-2.pdf new file mode 100644 index 0000000..4880dfe Binary files /dev/null and b/documents/pdf/qpdf/appearances-2.pdf differ diff --git a/documents/pdf/qpdf/appearances-a-more.pdf b/documents/pdf/qpdf/appearances-a-more.pdf new file mode 100644 index 0000000..5710fb2 Binary files /dev/null and b/documents/pdf/qpdf/appearances-a-more.pdf differ diff --git a/documents/pdf/qpdf/appearances-a-more2.pdf b/documents/pdf/qpdf/appearances-a-more2.pdf new file mode 100644 index 0000000..0310af1 Binary files /dev/null and b/documents/pdf/qpdf/appearances-a-more2.pdf differ diff --git a/documents/pdf/qpdf/appearances-a-more3.pdf b/documents/pdf/qpdf/appearances-a-more3.pdf new file mode 100644 index 0000000..b4786e0 Binary files /dev/null and b/documents/pdf/qpdf/appearances-a-more3.pdf differ diff --git a/documents/pdf/qpdf/appearances-a.pdf b/documents/pdf/qpdf/appearances-a.pdf new file mode 100644 index 0000000..beff5fa Binary files /dev/null and b/documents/pdf/qpdf/appearances-a.pdf differ diff --git a/documents/pdf/qpdf/appearances-b.pdf b/documents/pdf/qpdf/appearances-b.pdf new file mode 100644 index 0000000..ec12d2a Binary files /dev/null and b/documents/pdf/qpdf/appearances-b.pdf differ diff --git a/documents/pdf/qpdf/appearances-quack.pdf b/documents/pdf/qpdf/appearances-quack.pdf new file mode 100644 index 0000000..12d8cad Binary files /dev/null and b/documents/pdf/qpdf/appearances-quack.pdf differ diff --git a/documents/pdf/qpdf/append-page-content-damaged.pdf b/documents/pdf/qpdf/append-page-content-damaged.pdf new file mode 100644 index 0000000..4118530 Binary files /dev/null and b/documents/pdf/qpdf/append-page-content-damaged.pdf differ diff --git a/documents/pdf/qpdf/append-page-content.pdf b/documents/pdf/qpdf/append-page-content.pdf new file mode 100644 index 0000000..7695163 Binary files /dev/null and b/documents/pdf/qpdf/append-page-content.pdf differ diff --git a/documents/pdf/qpdf/append-xref-loop-fixed.pdf b/documents/pdf/qpdf/append-xref-loop-fixed.pdf new file mode 100644 index 0000000..4dc400c Binary files /dev/null and b/documents/pdf/qpdf/append-xref-loop-fixed.pdf differ diff --git a/documents/pdf/qpdf/append-xref-loop.pdf b/documents/pdf/qpdf/append-xref-loop.pdf new file mode 100644 index 0000000..d7b153e Binary files /dev/null and b/documents/pdf/qpdf/append-xref-loop.pdf differ diff --git a/documents/pdf/qpdf/attach.pdf b/documents/pdf/qpdf/attach.pdf new file mode 100644 index 0000000..dfaaef9 Binary files /dev/null and b/documents/pdf/qpdf/attach.pdf differ diff --git a/documents/pdf/qpdf/attachment-fields.pdf b/documents/pdf/qpdf/attachment-fields.pdf new file mode 100644 index 0000000..bf5f242 Binary files /dev/null and b/documents/pdf/qpdf/attachment-fields.pdf differ diff --git a/documents/pdf/qpdf/bad-data-out.pdf b/documents/pdf/qpdf/bad-data-out.pdf new file mode 100644 index 0000000..aeedb1a Binary files /dev/null and b/documents/pdf/qpdf/bad-data-out.pdf differ diff --git a/documents/pdf/qpdf/bad-data.pdf b/documents/pdf/qpdf/bad-data.pdf new file mode 100644 index 0000000..55ef9da Binary files /dev/null and b/documents/pdf/qpdf/bad-data.pdf differ diff --git a/documents/pdf/qpdf/bad-encryption-length.pdf b/documents/pdf/qpdf/bad-encryption-length.pdf new file mode 100644 index 0000000..0c3ec2b Binary files /dev/null and b/documents/pdf/qpdf/bad-encryption-length.pdf differ diff --git a/documents/pdf/qpdf/bad-jpeg-out.pdf b/documents/pdf/qpdf/bad-jpeg-out.pdf new file mode 100644 index 0000000..359a06b Binary files /dev/null and b/documents/pdf/qpdf/bad-jpeg-out.pdf differ diff --git a/documents/pdf/qpdf/bad-jpeg.pdf b/documents/pdf/qpdf/bad-jpeg.pdf new file mode 100644 index 0000000..4aacae9 Binary files /dev/null and b/documents/pdf/qpdf/bad-jpeg.pdf differ diff --git a/documents/pdf/qpdf/bad-token-startxref.pdf b/documents/pdf/qpdf/bad-token-startxref.pdf new file mode 100644 index 0000000..966bac7 Binary files /dev/null and b/documents/pdf/qpdf/bad-token-startxref.pdf differ diff --git a/documents/pdf/qpdf/bad-xref-entry.pdf b/documents/pdf/qpdf/bad-xref-entry.pdf new file mode 100644 index 0000000..9fd9767 Binary files /dev/null and b/documents/pdf/qpdf/bad-xref-entry.pdf differ diff --git a/documents/pdf/qpdf/bad-xref.pdf b/documents/pdf/qpdf/bad-xref.pdf new file mode 100644 index 0000000..d3f96e9 Binary files /dev/null and b/documents/pdf/qpdf/bad-xref.pdf differ diff --git a/documents/pdf/qpdf/bad10.pdf b/documents/pdf/qpdf/bad10.pdf new file mode 100644 index 0000000..589fed6 Binary files /dev/null and b/documents/pdf/qpdf/bad10.pdf differ diff --git a/documents/pdf/qpdf/bad11.pdf b/documents/pdf/qpdf/bad11.pdf new file mode 100644 index 0000000..1924f3e Binary files /dev/null and b/documents/pdf/qpdf/bad11.pdf differ diff --git a/documents/pdf/qpdf/bad12.pdf b/documents/pdf/qpdf/bad12.pdf new file mode 100644 index 0000000..9d1a517 Binary files /dev/null and b/documents/pdf/qpdf/bad12.pdf differ diff --git a/documents/pdf/qpdf/bad13.pdf b/documents/pdf/qpdf/bad13.pdf new file mode 100644 index 0000000..00fb4b5 Binary files /dev/null and b/documents/pdf/qpdf/bad13.pdf differ diff --git a/documents/pdf/qpdf/bad14.pdf b/documents/pdf/qpdf/bad14.pdf new file mode 100644 index 0000000..1b0ceaf Binary files /dev/null and b/documents/pdf/qpdf/bad14.pdf differ diff --git a/documents/pdf/qpdf/bad15.pdf b/documents/pdf/qpdf/bad15.pdf new file mode 100644 index 0000000..e534c13 Binary files /dev/null and b/documents/pdf/qpdf/bad15.pdf differ diff --git a/documents/pdf/qpdf/bad16.pdf b/documents/pdf/qpdf/bad16.pdf new file mode 100644 index 0000000..c8dfe10 Binary files /dev/null and b/documents/pdf/qpdf/bad16.pdf differ diff --git a/documents/pdf/qpdf/bad17.pdf b/documents/pdf/qpdf/bad17.pdf new file mode 100644 index 0000000..d34cd05 Binary files /dev/null and b/documents/pdf/qpdf/bad17.pdf differ diff --git a/documents/pdf/qpdf/bad18.pdf b/documents/pdf/qpdf/bad18.pdf new file mode 100644 index 0000000..cafefa0 Binary files /dev/null and b/documents/pdf/qpdf/bad18.pdf differ diff --git a/documents/pdf/qpdf/bad19.pdf b/documents/pdf/qpdf/bad19.pdf new file mode 100644 index 0000000..c263814 Binary files /dev/null and b/documents/pdf/qpdf/bad19.pdf differ diff --git a/documents/pdf/qpdf/bad2.pdf b/documents/pdf/qpdf/bad2.pdf new file mode 100644 index 0000000..8db09d2 Binary files /dev/null and b/documents/pdf/qpdf/bad2.pdf differ diff --git a/documents/pdf/qpdf/bad20.pdf b/documents/pdf/qpdf/bad20.pdf new file mode 100644 index 0000000..c9418f6 Binary files /dev/null and b/documents/pdf/qpdf/bad20.pdf differ diff --git a/documents/pdf/qpdf/bad21.pdf b/documents/pdf/qpdf/bad21.pdf new file mode 100644 index 0000000..2da41b4 Binary files /dev/null and b/documents/pdf/qpdf/bad21.pdf differ diff --git a/documents/pdf/qpdf/bad22.pdf b/documents/pdf/qpdf/bad22.pdf new file mode 100644 index 0000000..20580b5 Binary files /dev/null and b/documents/pdf/qpdf/bad22.pdf differ diff --git a/documents/pdf/qpdf/bad23.pdf b/documents/pdf/qpdf/bad23.pdf new file mode 100644 index 0000000..3e356c1 Binary files /dev/null and b/documents/pdf/qpdf/bad23.pdf differ diff --git a/documents/pdf/qpdf/bad24.pdf b/documents/pdf/qpdf/bad24.pdf new file mode 100644 index 0000000..4de0aae Binary files /dev/null and b/documents/pdf/qpdf/bad24.pdf differ diff --git a/documents/pdf/qpdf/bad25.pdf b/documents/pdf/qpdf/bad25.pdf new file mode 100644 index 0000000..f2f315e Binary files /dev/null and b/documents/pdf/qpdf/bad25.pdf differ diff --git a/documents/pdf/qpdf/bad26.pdf b/documents/pdf/qpdf/bad26.pdf new file mode 100644 index 0000000..dc8e0cf Binary files /dev/null and b/documents/pdf/qpdf/bad26.pdf differ diff --git a/documents/pdf/qpdf/bad27.pdf b/documents/pdf/qpdf/bad27.pdf new file mode 100644 index 0000000..d230f89 Binary files /dev/null and b/documents/pdf/qpdf/bad27.pdf differ diff --git a/documents/pdf/qpdf/bad28.pdf b/documents/pdf/qpdf/bad28.pdf new file mode 100644 index 0000000..048cfaf Binary files /dev/null and b/documents/pdf/qpdf/bad28.pdf differ diff --git a/documents/pdf/qpdf/bad29.pdf b/documents/pdf/qpdf/bad29.pdf new file mode 100644 index 0000000..715cee7 Binary files /dev/null and b/documents/pdf/qpdf/bad29.pdf differ diff --git a/documents/pdf/qpdf/bad3.pdf b/documents/pdf/qpdf/bad3.pdf new file mode 100644 index 0000000..123d247 Binary files /dev/null and b/documents/pdf/qpdf/bad3.pdf differ diff --git a/documents/pdf/qpdf/bad30.pdf b/documents/pdf/qpdf/bad30.pdf new file mode 100644 index 0000000..d312de8 Binary files /dev/null and b/documents/pdf/qpdf/bad30.pdf differ diff --git a/documents/pdf/qpdf/bad31.pdf b/documents/pdf/qpdf/bad31.pdf new file mode 100644 index 0000000..4555035 Binary files /dev/null and b/documents/pdf/qpdf/bad31.pdf differ diff --git a/documents/pdf/qpdf/bad32.pdf b/documents/pdf/qpdf/bad32.pdf new file mode 100644 index 0000000..dee8dc2 Binary files /dev/null and b/documents/pdf/qpdf/bad32.pdf differ diff --git a/documents/pdf/qpdf/bad33.pdf b/documents/pdf/qpdf/bad33.pdf new file mode 100644 index 0000000..df16c2a Binary files /dev/null and b/documents/pdf/qpdf/bad33.pdf differ diff --git a/documents/pdf/qpdf/bad34.pdf b/documents/pdf/qpdf/bad34.pdf new file mode 100644 index 0000000..1db3e35 Binary files /dev/null and b/documents/pdf/qpdf/bad34.pdf differ diff --git a/documents/pdf/qpdf/bad35.pdf b/documents/pdf/qpdf/bad35.pdf new file mode 100644 index 0000000..8c58fe3 Binary files /dev/null and b/documents/pdf/qpdf/bad35.pdf differ diff --git a/documents/pdf/qpdf/bad36.pdf b/documents/pdf/qpdf/bad36.pdf new file mode 100644 index 0000000..ddd5e97 Binary files /dev/null and b/documents/pdf/qpdf/bad36.pdf differ diff --git a/documents/pdf/qpdf/bad37.pdf b/documents/pdf/qpdf/bad37.pdf new file mode 100644 index 0000000..8807230 Binary files /dev/null and b/documents/pdf/qpdf/bad37.pdf differ diff --git a/documents/pdf/qpdf/bad38.pdf b/documents/pdf/qpdf/bad38.pdf new file mode 100644 index 0000000..00090fc Binary files /dev/null and b/documents/pdf/qpdf/bad38.pdf differ diff --git a/documents/pdf/qpdf/bad39.pdf b/documents/pdf/qpdf/bad39.pdf new file mode 100644 index 0000000..7348206 Binary files /dev/null and b/documents/pdf/qpdf/bad39.pdf differ diff --git a/documents/pdf/qpdf/bad4.pdf b/documents/pdf/qpdf/bad4.pdf new file mode 100644 index 0000000..31c2aff Binary files /dev/null and b/documents/pdf/qpdf/bad4.pdf differ diff --git a/documents/pdf/qpdf/bad40.pdf b/documents/pdf/qpdf/bad40.pdf new file mode 100644 index 0000000..56ad1fd Binary files /dev/null and b/documents/pdf/qpdf/bad40.pdf differ diff --git a/documents/pdf/qpdf/bad5.pdf b/documents/pdf/qpdf/bad5.pdf new file mode 100644 index 0000000..82a8469 Binary files /dev/null and b/documents/pdf/qpdf/bad5.pdf differ diff --git a/documents/pdf/qpdf/bad6.pdf b/documents/pdf/qpdf/bad6.pdf new file mode 100644 index 0000000..d278d54 Binary files /dev/null and b/documents/pdf/qpdf/bad6.pdf differ diff --git a/documents/pdf/qpdf/bad7.pdf b/documents/pdf/qpdf/bad7.pdf new file mode 100644 index 0000000..0cb55d5 Binary files /dev/null and b/documents/pdf/qpdf/bad7.pdf differ diff --git a/documents/pdf/qpdf/bad8.pdf b/documents/pdf/qpdf/bad8.pdf new file mode 100644 index 0000000..6081071 Binary files /dev/null and b/documents/pdf/qpdf/bad8.pdf differ diff --git a/documents/pdf/qpdf/bad9.pdf b/documents/pdf/qpdf/bad9.pdf new file mode 100644 index 0000000..fe953b8 Binary files /dev/null and b/documents/pdf/qpdf/bad9.pdf differ diff --git a/documents/pdf/qpdf/badlin1.pdf b/documents/pdf/qpdf/badlin1.pdf new file mode 100644 index 0000000..fcfee72 Binary files /dev/null and b/documents/pdf/qpdf/badlin1.pdf differ diff --git a/documents/pdf/qpdf/big-ostream.pdf b/documents/pdf/qpdf/big-ostream.pdf new file mode 100644 index 0000000..2a11204 Binary files /dev/null and b/documents/pdf/qpdf/big-ostream.pdf differ diff --git a/documents/pdf/qpdf/boxes-flattened.pdf b/documents/pdf/qpdf/boxes-flattened.pdf new file mode 100644 index 0000000..d3660b8 Binary files /dev/null and b/documents/pdf/qpdf/boxes-flattened.pdf differ diff --git a/documents/pdf/qpdf/boxes.pdf b/documents/pdf/qpdf/boxes.pdf new file mode 100644 index 0000000..d148f2e Binary files /dev/null and b/documents/pdf/qpdf/boxes.pdf differ diff --git a/documents/pdf/qpdf/boxes2.pdf b/documents/pdf/qpdf/boxes2.pdf new file mode 100644 index 0000000..85cc11a Binary files /dev/null and b/documents/pdf/qpdf/boxes2.pdf differ diff --git a/documents/pdf/qpdf/broken-decode-parms-no-filter.pdf b/documents/pdf/qpdf/broken-decode-parms-no-filter.pdf new file mode 100644 index 0000000..d596c82 Binary files /dev/null and b/documents/pdf/qpdf/broken-decode-parms-no-filter.pdf differ diff --git a/documents/pdf/qpdf/broken-lzw.pdf b/documents/pdf/qpdf/broken-lzw.pdf new file mode 100644 index 0000000..cd39515 Binary files /dev/null and b/documents/pdf/qpdf/broken-lzw.pdf differ diff --git a/documents/pdf/qpdf/button-set-broken-out.pdf b/documents/pdf/qpdf/button-set-broken-out.pdf new file mode 100644 index 0000000..4ddf6e7 Binary files /dev/null and b/documents/pdf/qpdf/button-set-broken-out.pdf differ diff --git a/documents/pdf/qpdf/button-set-broken.pdf b/documents/pdf/qpdf/button-set-broken.pdf new file mode 100644 index 0000000..0d51f90 Binary files /dev/null and b/documents/pdf/qpdf/button-set-broken.pdf differ diff --git a/documents/pdf/qpdf/button-set-out.pdf b/documents/pdf/qpdf/button-set-out.pdf new file mode 100644 index 0000000..b132875 Binary files /dev/null and b/documents/pdf/qpdf/button-set-out.pdf differ diff --git a/documents/pdf/qpdf/button-set.pdf b/documents/pdf/qpdf/button-set.pdf new file mode 100644 index 0000000..b3695ea Binary files /dev/null and b/documents/pdf/qpdf/button-set.pdf differ diff --git a/documents/pdf/qpdf/c-decrypt-r5-with-user.pdf b/documents/pdf/qpdf/c-decrypt-r5-with-user.pdf new file mode 100644 index 0000000..108411e Binary files /dev/null and b/documents/pdf/qpdf/c-decrypt-r5-with-user.pdf differ diff --git a/documents/pdf/qpdf/c-decrypt-r6-with-owner.pdf b/documents/pdf/qpdf/c-decrypt-r6-with-owner.pdf new file mode 100644 index 0000000..9caed50 Binary files /dev/null and b/documents/pdf/qpdf/c-decrypt-r6-with-owner.pdf differ diff --git a/documents/pdf/qpdf/c-decrypt-with-user.pdf b/documents/pdf/qpdf/c-decrypt-with-user.pdf new file mode 100644 index 0000000..df47e7d Binary files /dev/null and b/documents/pdf/qpdf/c-decrypt-with-user.pdf differ diff --git a/documents/pdf/qpdf/c-empty.pdf b/documents/pdf/qpdf/c-empty.pdf new file mode 100644 index 0000000..6dea4c6 Binary files /dev/null and b/documents/pdf/qpdf/c-empty.pdf differ diff --git a/documents/pdf/qpdf/c-foreign.pdf b/documents/pdf/qpdf/c-foreign.pdf new file mode 100644 index 0000000..11d08b0 Binary files /dev/null and b/documents/pdf/qpdf/c-foreign.pdf differ diff --git a/documents/pdf/qpdf/c-ignore-xref-streams.pdf b/documents/pdf/qpdf/c-ignore-xref-streams.pdf new file mode 100644 index 0000000..f00bc6d Binary files /dev/null and b/documents/pdf/qpdf/c-ignore-xref-streams.pdf differ diff --git a/documents/pdf/qpdf/c-indirect-objects-out.pdf b/documents/pdf/qpdf/c-indirect-objects-out.pdf new file mode 100644 index 0000000..01398ea Binary files /dev/null and b/documents/pdf/qpdf/c-indirect-objects-out.pdf differ diff --git a/documents/pdf/qpdf/c-info-out.pdf b/documents/pdf/qpdf/c-info-out.pdf new file mode 100644 index 0000000..0ada381 Binary files /dev/null and b/documents/pdf/qpdf/c-info-out.pdf differ diff --git a/documents/pdf/qpdf/c-info2-in.pdf b/documents/pdf/qpdf/c-info2-in.pdf new file mode 100644 index 0000000..8e749fe Binary files /dev/null and b/documents/pdf/qpdf/c-info2-in.pdf differ diff --git a/documents/pdf/qpdf/c-linearized.pdf b/documents/pdf/qpdf/c-linearized.pdf new file mode 100644 index 0000000..7074ab4 Binary files /dev/null and b/documents/pdf/qpdf/c-linearized.pdf differ diff --git a/documents/pdf/qpdf/c-new-stream.pdf b/documents/pdf/qpdf/c-new-stream.pdf new file mode 100644 index 0000000..1e4f577 Binary files /dev/null and b/documents/pdf/qpdf/c-new-stream.pdf differ diff --git a/documents/pdf/qpdf/c-no-options.pdf b/documents/pdf/qpdf/c-no-options.pdf new file mode 100644 index 0000000..4ce1a61 Binary files /dev/null and b/documents/pdf/qpdf/c-no-options.pdf differ diff --git a/documents/pdf/qpdf/c-no-original-object-ids.pdf b/documents/pdf/qpdf/c-no-original-object-ids.pdf new file mode 100644 index 0000000..e7cd470 Binary files /dev/null and b/documents/pdf/qpdf/c-no-original-object-ids.pdf differ diff --git a/documents/pdf/qpdf/c-normalized-content.pdf b/documents/pdf/qpdf/c-normalized-content.pdf new file mode 100644 index 0000000..e779f2a Binary files /dev/null and b/documents/pdf/qpdf/c-normalized-content.pdf differ diff --git a/documents/pdf/qpdf/c-object-handle-creation-out.pdf b/documents/pdf/qpdf/c-object-handle-creation-out.pdf new file mode 100644 index 0000000..c745f09 Binary files /dev/null and b/documents/pdf/qpdf/c-object-handle-creation-out.pdf differ diff --git a/documents/pdf/qpdf/c-object-handles-out.pdf b/documents/pdf/qpdf/c-object-handles-out.pdf new file mode 100644 index 0000000..61a6914 Binary files /dev/null and b/documents/pdf/qpdf/c-object-handles-out.pdf differ diff --git a/documents/pdf/qpdf/c-object-streams.pdf b/documents/pdf/qpdf/c-object-streams.pdf new file mode 100644 index 0000000..8c453c7 Binary files /dev/null and b/documents/pdf/qpdf/c-object-streams.pdf differ diff --git a/documents/pdf/qpdf/c-pages.pdf b/documents/pdf/qpdf/c-pages.pdf new file mode 100644 index 0000000..688fd9f Binary files /dev/null and b/documents/pdf/qpdf/c-pages.pdf differ diff --git a/documents/pdf/qpdf/c-qdf.pdf b/documents/pdf/qpdf/c-qdf.pdf new file mode 100644 index 0000000..7aaf105 Binary files /dev/null and b/documents/pdf/qpdf/c-qdf.pdf differ diff --git a/documents/pdf/qpdf/c-r2.pdf b/documents/pdf/qpdf/c-r2.pdf new file mode 100644 index 0000000..b17c0b8 Binary files /dev/null and b/documents/pdf/qpdf/c-r2.pdf differ diff --git a/documents/pdf/qpdf/c-r3.pdf b/documents/pdf/qpdf/c-r3.pdf new file mode 100644 index 0000000..9e42c3a Binary files /dev/null and b/documents/pdf/qpdf/c-r3.pdf differ diff --git a/documents/pdf/qpdf/c-r4.pdf b/documents/pdf/qpdf/c-r4.pdf new file mode 100644 index 0000000..528549d Binary files /dev/null and b/documents/pdf/qpdf/c-r4.pdf differ diff --git a/documents/pdf/qpdf/c-r5-in.pdf b/documents/pdf/qpdf/c-r5-in.pdf new file mode 100644 index 0000000..4552aa5 Binary files /dev/null and b/documents/pdf/qpdf/c-r5-in.pdf differ diff --git a/documents/pdf/qpdf/c-r6-in.pdf b/documents/pdf/qpdf/c-r6-in.pdf new file mode 100644 index 0000000..cdb02b7 Binary files /dev/null and b/documents/pdf/qpdf/c-r6-in.pdf differ diff --git a/documents/pdf/qpdf/c-uncompressed-streams.pdf b/documents/pdf/qpdf/c-uncompressed-streams.pdf new file mode 100644 index 0000000..e9f5707 Binary files /dev/null and b/documents/pdf/qpdf/c-uncompressed-streams.pdf differ diff --git a/documents/pdf/qpdf/catalgg.pdf b/documents/pdf/qpdf/catalgg.pdf new file mode 100644 index 0000000..a8be975 Binary files /dev/null and b/documents/pdf/qpdf/catalgg.pdf differ diff --git a/documents/pdf/qpdf/coalesce-out.pdf b/documents/pdf/qpdf/coalesce-out.pdf new file mode 100644 index 0000000..8cddec0 Binary files /dev/null and b/documents/pdf/qpdf/coalesce-out.pdf differ diff --git a/documents/pdf/qpdf/coalesce.pdf b/documents/pdf/qpdf/coalesce.pdf new file mode 100644 index 0000000..22a1f31 Binary files /dev/null and b/documents/pdf/qpdf/coalesce.pdf differ diff --git a/documents/pdf/qpdf/collate-even.pdf b/documents/pdf/qpdf/collate-even.pdf new file mode 100644 index 0000000..cbfc468 Binary files /dev/null and b/documents/pdf/qpdf/collate-even.pdf differ diff --git a/documents/pdf/qpdf/collate-odd.pdf b/documents/pdf/qpdf/collate-odd.pdf new file mode 100644 index 0000000..aab009e Binary files /dev/null and b/documents/pdf/qpdf/collate-odd.pdf differ diff --git a/documents/pdf/qpdf/comment-annotation-direct-out.pdf b/documents/pdf/qpdf/comment-annotation-direct-out.pdf new file mode 100644 index 0000000..dac3a63 Binary files /dev/null and b/documents/pdf/qpdf/comment-annotation-direct-out.pdf differ diff --git a/documents/pdf/qpdf/comment-annotation-direct.pdf b/documents/pdf/qpdf/comment-annotation-direct.pdf new file mode 100644 index 0000000..47d7432 Binary files /dev/null and b/documents/pdf/qpdf/comment-annotation-direct.pdf differ diff --git a/documents/pdf/qpdf/comment-annotation-out.pdf b/documents/pdf/qpdf/comment-annotation-out.pdf new file mode 100644 index 0000000..d41729a Binary files /dev/null and b/documents/pdf/qpdf/comment-annotation-out.pdf differ diff --git a/documents/pdf/qpdf/comment-annotation.pdf b/documents/pdf/qpdf/comment-annotation.pdf new file mode 100644 index 0000000..e04e978 Binary files /dev/null and b/documents/pdf/qpdf/comment-annotation.pdf differ diff --git a/documents/pdf/qpdf/compressed-metadata-out-normal.pdf b/documents/pdf/qpdf/compressed-metadata-out-normal.pdf new file mode 100644 index 0000000..20319bb Binary files /dev/null and b/documents/pdf/qpdf/compressed-metadata-out-normal.pdf differ diff --git a/documents/pdf/qpdf/compressed-metadata.pdf b/documents/pdf/qpdf/compressed-metadata.pdf new file mode 100644 index 0000000..e1e7bc1 Binary files /dev/null and b/documents/pdf/qpdf/compressed-metadata.pdf differ diff --git a/documents/pdf/qpdf/content-stream-errors.pdf b/documents/pdf/qpdf/content-stream-errors.pdf new file mode 100644 index 0000000..b64d5d8 Binary files /dev/null and b/documents/pdf/qpdf/content-stream-errors.pdf differ diff --git a/documents/pdf/qpdf/copied-positive-p.pdf b/documents/pdf/qpdf/copied-positive-p.pdf new file mode 100644 index 0000000..97ce9da Binary files /dev/null and b/documents/pdf/qpdf/copied-positive-p.pdf differ diff --git a/documents/pdf/qpdf/copy-attachments-2.pdf b/documents/pdf/qpdf/copy-attachments-2.pdf new file mode 100644 index 0000000..f898453 Binary files /dev/null and b/documents/pdf/qpdf/copy-attachments-2.pdf differ diff --git a/documents/pdf/qpdf/copy-foreign-objects-in.pdf b/documents/pdf/qpdf/copy-foreign-objects-in.pdf new file mode 100644 index 0000000..7ba5ca5 Binary files /dev/null and b/documents/pdf/qpdf/copy-foreign-objects-in.pdf differ diff --git a/documents/pdf/qpdf/copy-foreign-objects-out1.pdf b/documents/pdf/qpdf/copy-foreign-objects-out1.pdf new file mode 100644 index 0000000..dd2c72a Binary files /dev/null and b/documents/pdf/qpdf/copy-foreign-objects-out1.pdf differ diff --git a/documents/pdf/qpdf/copy-foreign-objects-out2.pdf b/documents/pdf/qpdf/copy-foreign-objects-out2.pdf new file mode 100644 index 0000000..36ba31e Binary files /dev/null and b/documents/pdf/qpdf/copy-foreign-objects-out2.pdf differ diff --git a/documents/pdf/qpdf/copy-foreign-objects-out3.pdf b/documents/pdf/qpdf/copy-foreign-objects-out3.pdf new file mode 100644 index 0000000..d8f73b2 Binary files /dev/null and b/documents/pdf/qpdf/copy-foreign-objects-out3.pdf differ diff --git a/documents/pdf/qpdf/damaged-inline-image-out.pdf b/documents/pdf/qpdf/damaged-inline-image-out.pdf new file mode 100644 index 0000000..ab96cd2 Binary files /dev/null and b/documents/pdf/qpdf/damaged-inline-image-out.pdf differ diff --git a/documents/pdf/qpdf/damaged-inline-image.pdf b/documents/pdf/qpdf/damaged-inline-image.pdf new file mode 100644 index 0000000..ee3705a Binary files /dev/null and b/documents/pdf/qpdf/damaged-inline-image.pdf differ diff --git a/documents/pdf/qpdf/damaged-stream.pdf b/documents/pdf/qpdf/damaged-stream.pdf new file mode 100644 index 0000000..6292129 Binary files /dev/null and b/documents/pdf/qpdf/damaged-stream.pdf differ diff --git a/documents/pdf/qpdf/dangling-bad-xref-dangling-out.pdf b/documents/pdf/qpdf/dangling-bad-xref-dangling-out.pdf new file mode 100644 index 0000000..83c27b6 Binary files /dev/null and b/documents/pdf/qpdf/dangling-bad-xref-dangling-out.pdf differ diff --git a/documents/pdf/qpdf/dangling-bad-xref.pdf b/documents/pdf/qpdf/dangling-bad-xref.pdf new file mode 100644 index 0000000..9d50af9 Binary files /dev/null and b/documents/pdf/qpdf/dangling-bad-xref.pdf differ diff --git a/documents/pdf/qpdf/dangling-refs-dangling-out.pdf b/documents/pdf/qpdf/dangling-refs-dangling-out.pdf new file mode 100644 index 0000000..f3f039f Binary files /dev/null and b/documents/pdf/qpdf/dangling-refs-dangling-out.pdf differ diff --git a/documents/pdf/qpdf/dangling-refs.pdf b/documents/pdf/qpdf/dangling-refs.pdf new file mode 100644 index 0000000..ab9968e Binary files /dev/null and b/documents/pdf/qpdf/dangling-refs.pdf differ diff --git a/documents/pdf/qpdf/decrypted-crypt-filter.pdf b/documents/pdf/qpdf/decrypted-crypt-filter.pdf new file mode 100644 index 0000000..e036a16 Binary files /dev/null and b/documents/pdf/qpdf/decrypted-crypt-filter.pdf differ diff --git a/documents/pdf/qpdf/decrypted-positive-p.pdf b/documents/pdf/qpdf/decrypted-positive-p.pdf new file mode 100644 index 0000000..1f38ee8 Binary files /dev/null and b/documents/pdf/qpdf/decrypted-positive-p.pdf differ diff --git a/documents/pdf/qpdf/deep-duplicate-pages.pdf b/documents/pdf/qpdf/deep-duplicate-pages.pdf new file mode 100644 index 0000000..43f9de3 Binary files /dev/null and b/documents/pdf/qpdf/deep-duplicate-pages.pdf differ diff --git a/documents/pdf/qpdf/default-da-q-out.pdf b/documents/pdf/qpdf/default-da-q-out.pdf new file mode 100644 index 0000000..8cf8fdc Binary files /dev/null and b/documents/pdf/qpdf/default-da-q-out.pdf differ diff --git a/documents/pdf/qpdf/default-da-q.pdf b/documents/pdf/qpdf/default-da-q.pdf new file mode 100644 index 0000000..fa6b1d2 Binary files /dev/null and b/documents/pdf/qpdf/default-da-q.pdf differ diff --git a/documents/pdf/qpdf/deterministic-id-in.pdf b/documents/pdf/qpdf/deterministic-id-in.pdf new file mode 100644 index 0000000..c3d34ee Binary files /dev/null and b/documents/pdf/qpdf/deterministic-id-in.pdf differ diff --git a/documents/pdf/qpdf/diff-data-enc.pdf b/documents/pdf/qpdf/diff-data-enc.pdf new file mode 100644 index 0000000..891a5f3 Binary files /dev/null and b/documents/pdf/qpdf/diff-data-enc.pdf differ diff --git a/documents/pdf/qpdf/diff-data-size-unc.pdf b/documents/pdf/qpdf/diff-data-size-unc.pdf new file mode 100644 index 0000000..62b4200 Binary files /dev/null and b/documents/pdf/qpdf/diff-data-size-unc.pdf differ diff --git a/documents/pdf/qpdf/diff-data-size.pdf b/documents/pdf/qpdf/diff-data-size.pdf new file mode 100644 index 0000000..21fbcdb Binary files /dev/null and b/documents/pdf/qpdf/diff-data-size.pdf differ diff --git a/documents/pdf/qpdf/diff-data-unc.pdf b/documents/pdf/qpdf/diff-data-unc.pdf new file mode 100644 index 0000000..d02990b Binary files /dev/null and b/documents/pdf/qpdf/diff-data-unc.pdf differ diff --git a/documents/pdf/qpdf/diff-data.pdf b/documents/pdf/qpdf/diff-data.pdf new file mode 100644 index 0000000..5814f08 Binary files /dev/null and b/documents/pdf/qpdf/diff-data.pdf differ diff --git a/documents/pdf/qpdf/diff-id.pdf b/documents/pdf/qpdf/diff-id.pdf new file mode 100644 index 0000000..3525a4b Binary files /dev/null and b/documents/pdf/qpdf/diff-id.pdf differ diff --git a/documents/pdf/qpdf/diff-non-stream.pdf b/documents/pdf/qpdf/diff-non-stream.pdf new file mode 100644 index 0000000..c12e1b4 Binary files /dev/null and b/documents/pdf/qpdf/diff-non-stream.pdf differ diff --git a/documents/pdf/qpdf/diff-num-objects.pdf b/documents/pdf/qpdf/diff-num-objects.pdf new file mode 100644 index 0000000..b0da622 Binary files /dev/null and b/documents/pdf/qpdf/diff-num-objects.pdf differ diff --git a/documents/pdf/qpdf/diff-object-type.pdf b/documents/pdf/qpdf/diff-object-type.pdf new file mode 100644 index 0000000..5d4c2f5 Binary files /dev/null and b/documents/pdf/qpdf/diff-object-type.pdf differ diff --git a/documents/pdf/qpdf/diff-stream-dict.pdf b/documents/pdf/qpdf/diff-stream-dict.pdf new file mode 100644 index 0000000..e7b8763 Binary files /dev/null and b/documents/pdf/qpdf/diff-stream-dict.pdf differ diff --git a/documents/pdf/qpdf/digitally-signed.pdf b/documents/pdf/qpdf/digitally-signed.pdf new file mode 100644 index 0000000..ddf0e5d Binary files /dev/null and b/documents/pdf/qpdf/digitally-signed.pdf differ diff --git a/documents/pdf/qpdf/direct-dr-out.pdf b/documents/pdf/qpdf/direct-dr-out.pdf new file mode 100644 index 0000000..835b73b Binary files /dev/null and b/documents/pdf/qpdf/direct-dr-out.pdf differ diff --git a/documents/pdf/qpdf/direct-dr.pdf b/documents/pdf/qpdf/direct-dr.pdf new file mode 100644 index 0000000..d0d5415 Binary files /dev/null and b/documents/pdf/qpdf/direct-dr.pdf differ diff --git a/documents/pdf/qpdf/direct-outlines.pdf b/documents/pdf/qpdf/direct-outlines.pdf new file mode 100644 index 0000000..3dd3a3a Binary files /dev/null and b/documents/pdf/qpdf/direct-outlines.pdf differ diff --git a/documents/pdf/qpdf/direct-pages-fixed.pdf b/documents/pdf/qpdf/direct-pages-fixed.pdf new file mode 100644 index 0000000..3e07aec Binary files /dev/null and b/documents/pdf/qpdf/direct-pages-fixed.pdf differ diff --git a/documents/pdf/qpdf/direct-pages.pdf b/documents/pdf/qpdf/direct-pages.pdf new file mode 100644 index 0000000..39e0b83 Binary files /dev/null and b/documents/pdf/qpdf/direct-pages.pdf differ diff --git a/documents/pdf/qpdf/dr-with-indirect-item-out.pdf b/documents/pdf/qpdf/dr-with-indirect-item-out.pdf new file mode 100644 index 0000000..d7ae44f Binary files /dev/null and b/documents/pdf/qpdf/dr-with-indirect-item-out.pdf differ diff --git a/documents/pdf/qpdf/dr-with-indirect-item.pdf b/documents/pdf/qpdf/dr-with-indirect-item.pdf new file mode 100644 index 0000000..7f0809a Binary files /dev/null and b/documents/pdf/qpdf/dr-with-indirect-item.pdf differ diff --git a/documents/pdf/qpdf/duplicate-page-inherited-1-fixed.pdf b/documents/pdf/qpdf/duplicate-page-inherited-1-fixed.pdf new file mode 100644 index 0000000..d11d968 Binary files /dev/null and b/documents/pdf/qpdf/duplicate-page-inherited-1-fixed.pdf differ diff --git a/documents/pdf/qpdf/duplicate-page-inherited-2-fixed.pdf b/documents/pdf/qpdf/duplicate-page-inherited-2-fixed.pdf new file mode 100644 index 0000000..67335b6 Binary files /dev/null and b/documents/pdf/qpdf/duplicate-page-inherited-2-fixed.pdf differ diff --git a/documents/pdf/qpdf/duplicate-page-inherited.pdf b/documents/pdf/qpdf/duplicate-page-inherited.pdf new file mode 100644 index 0000000..42716ef Binary files /dev/null and b/documents/pdf/qpdf/duplicate-page-inherited.pdf differ diff --git a/documents/pdf/qpdf/duplicate-pages.pdf b/documents/pdf/qpdf/duplicate-pages.pdf new file mode 100644 index 0000000..46b5e88 Binary files /dev/null and b/documents/pdf/qpdf/duplicate-pages.pdf differ diff --git a/documents/pdf/qpdf/empty-decode-parms-out.pdf b/documents/pdf/qpdf/empty-decode-parms-out.pdf new file mode 100644 index 0000000..37abf6e Binary files /dev/null and b/documents/pdf/qpdf/empty-decode-parms-out.pdf differ diff --git a/documents/pdf/qpdf/empty-decode-parms.pdf b/documents/pdf/qpdf/empty-decode-parms.pdf new file mode 100644 index 0000000..e5a9b4a Binary files /dev/null and b/documents/pdf/qpdf/empty-decode-parms.pdf differ diff --git a/documents/pdf/qpdf/empty-info.pdf b/documents/pdf/qpdf/empty-info.pdf new file mode 100644 index 0000000..6606647 Binary files /dev/null and b/documents/pdf/qpdf/empty-info.pdf differ diff --git a/documents/pdf/qpdf/empty-object.pdf b/documents/pdf/qpdf/empty-object.pdf new file mode 100644 index 0000000..d8ff25c Binary files /dev/null and b/documents/pdf/qpdf/empty-object.pdf differ diff --git a/documents/pdf/qpdf/empty-stream-compressed.pdf b/documents/pdf/qpdf/empty-stream-compressed.pdf new file mode 100644 index 0000000..47ad47c Binary files /dev/null and b/documents/pdf/qpdf/empty-stream-compressed.pdf differ diff --git a/documents/pdf/qpdf/empty-stream-uncompressed.pdf b/documents/pdf/qpdf/empty-stream-uncompressed.pdf new file mode 100644 index 0000000..1b546c4 Binary files /dev/null and b/documents/pdf/qpdf/empty-stream-uncompressed.pdf differ diff --git a/documents/pdf/qpdf/enc-base.pdf b/documents/pdf/qpdf/enc-base.pdf new file mode 100644 index 0000000..1ffa6e0 Binary files /dev/null and b/documents/pdf/qpdf/enc-base.pdf differ diff --git a/documents/pdf/qpdf/enc-long-password.pdf b/documents/pdf/qpdf/enc-long-password.pdf new file mode 100644 index 0000000..d1f5118 Binary files /dev/null and b/documents/pdf/qpdf/enc-long-password.pdf differ diff --git a/documents/pdf/qpdf/enc-r2-v1-o-master.pdf b/documents/pdf/qpdf/enc-r2-v1-o-master.pdf new file mode 100644 index 0000000..6240b49 Binary files /dev/null and b/documents/pdf/qpdf/enc-r2-v1-o-master.pdf differ diff --git a/documents/pdf/qpdf/enc-r2-v1-u-view-o-master.pdf b/documents/pdf/qpdf/enc-r2-v1-u-view-o-master.pdf new file mode 100644 index 0000000..53753b1 Binary files /dev/null and b/documents/pdf/qpdf/enc-r2-v1-u-view-o-master.pdf differ diff --git a/documents/pdf/qpdf/enc-r2-v1-u-view-o-view.pdf b/documents/pdf/qpdf/enc-r2-v1-u-view-o-view.pdf new file mode 100644 index 0000000..3998f10 Binary files /dev/null and b/documents/pdf/qpdf/enc-r2-v1-u-view-o-view.pdf differ diff --git a/documents/pdf/qpdf/enc-r2-v1.pdf b/documents/pdf/qpdf/enc-r2-v1.pdf new file mode 100644 index 0000000..da20cd5 Binary files /dev/null and b/documents/pdf/qpdf/enc-r2-v1.pdf differ diff --git a/documents/pdf/qpdf/enc-r3-v2-o-master.pdf b/documents/pdf/qpdf/enc-r3-v2-o-master.pdf new file mode 100644 index 0000000..d34672b Binary files /dev/null and b/documents/pdf/qpdf/enc-r3-v2-o-master.pdf differ diff --git a/documents/pdf/qpdf/enc-r3-v2-u-view-o-master.pdf b/documents/pdf/qpdf/enc-r3-v2-u-view-o-master.pdf new file mode 100644 index 0000000..066a6f1 Binary files /dev/null and b/documents/pdf/qpdf/enc-r3-v2-u-view-o-master.pdf differ diff --git a/documents/pdf/qpdf/enc-r3-v2-u-view-o-view.pdf b/documents/pdf/qpdf/enc-r3-v2-u-view-o-view.pdf new file mode 100644 index 0000000..cc44517 Binary files /dev/null and b/documents/pdf/qpdf/enc-r3-v2-u-view-o-view.pdf differ diff --git a/documents/pdf/qpdf/enc-r3-v2.pdf b/documents/pdf/qpdf/enc-r3-v2.pdf new file mode 100644 index 0000000..b87a5d8 Binary files /dev/null and b/documents/pdf/qpdf/enc-r3-v2.pdf differ diff --git a/documents/pdf/qpdf/enc-xi-attachments-base.pdf b/documents/pdf/qpdf/enc-xi-attachments-base.pdf new file mode 100644 index 0000000..691b8e9 Binary files /dev/null and b/documents/pdf/qpdf/enc-xi-attachments-base.pdf differ diff --git a/documents/pdf/qpdf/enc-xi-base.pdf b/documents/pdf/qpdf/enc-xi-base.pdf new file mode 100644 index 0000000..a2140cf Binary files /dev/null and b/documents/pdf/qpdf/enc-xi-base.pdf differ diff --git a/documents/pdf/qpdf/enc-xi-long-password.pdf b/documents/pdf/qpdf/enc-xi-long-password.pdf new file mode 100644 index 0000000..e25a9ca Binary files /dev/null and b/documents/pdf/qpdf/enc-xi-long-password.pdf differ diff --git a/documents/pdf/qpdf/enc-xi-r6-v5-o-master.pdf b/documents/pdf/qpdf/enc-xi-r6-v5-o-master.pdf new file mode 100644 index 0000000..74898b0 Binary files /dev/null and b/documents/pdf/qpdf/enc-xi-r6-v5-o-master.pdf differ diff --git a/documents/pdf/qpdf/enc-xi-r6-v5-u-attachment-encrypted-attachments.pdf b/documents/pdf/qpdf/enc-xi-r6-v5-u-attachment-encrypted-attachments.pdf new file mode 100644 index 0000000..451895e Binary files /dev/null and b/documents/pdf/qpdf/enc-xi-r6-v5-u-attachment-encrypted-attachments.pdf differ diff --git a/documents/pdf/qpdf/enc-xi-r6-v5-u-view-attachments-cleartext-metadata.pdf b/documents/pdf/qpdf/enc-xi-r6-v5-u-view-attachments-cleartext-metadata.pdf new file mode 100644 index 0000000..836fed7 Binary files /dev/null and b/documents/pdf/qpdf/enc-xi-r6-v5-u-view-attachments-cleartext-metadata.pdf differ diff --git a/documents/pdf/qpdf/enc-xi-r6-v5-u-view-o-master.pdf b/documents/pdf/qpdf/enc-xi-r6-v5-u-view-o-master.pdf new file mode 100644 index 0000000..4bf4432 Binary files /dev/null and b/documents/pdf/qpdf/enc-xi-r6-v5-u-view-o-master.pdf differ diff --git a/documents/pdf/qpdf/enc-xi-r6-v5-u-wwwww-o-wwwww.pdf b/documents/pdf/qpdf/enc-xi-r6-v5-u-wwwww-o-wwwww.pdf new file mode 100644 index 0000000..7fe48d6 Binary files /dev/null and b/documents/pdf/qpdf/enc-xi-r6-v5-u-wwwww-o-wwwww.pdf differ diff --git a/documents/pdf/qpdf/enc1.pdf b/documents/pdf/qpdf/enc1.pdf new file mode 100644 index 0000000..d604388 Binary files /dev/null and b/documents/pdf/qpdf/enc1.pdf differ diff --git a/documents/pdf/qpdf/enc2.pdf b/documents/pdf/qpdf/enc2.pdf new file mode 100644 index 0000000..d014a1c Binary files /dev/null and b/documents/pdf/qpdf/enc2.pdf differ diff --git a/documents/pdf/qpdf/encrypted-40-bit-r3.pdf b/documents/pdf/qpdf/encrypted-40-bit-r3.pdf new file mode 100644 index 0000000..991a024 Binary files /dev/null and b/documents/pdf/qpdf/encrypted-40-bit-r3.pdf differ diff --git a/documents/pdf/qpdf/encrypted-positive-p.pdf b/documents/pdf/qpdf/encrypted-positive-p.pdf new file mode 100644 index 0000000..5f545ab Binary files /dev/null and b/documents/pdf/qpdf/encrypted-positive-p.pdf differ diff --git a/documents/pdf/qpdf/encrypted-with-images.pdf b/documents/pdf/qpdf/encrypted-with-images.pdf new file mode 100644 index 0000000..bce51ee Binary files /dev/null and b/documents/pdf/qpdf/encrypted-with-images.pdf differ diff --git a/documents/pdf/qpdf/endobj-at-eol-fixed.pdf b/documents/pdf/qpdf/endobj-at-eol-fixed.pdf new file mode 100644 index 0000000..d9ec8df Binary files /dev/null and b/documents/pdf/qpdf/endobj-at-eol-fixed.pdf differ diff --git a/documents/pdf/qpdf/endobj-at-eol.pdf b/documents/pdf/qpdf/endobj-at-eol.pdf new file mode 100644 index 0000000..d5dfea0 Binary files /dev/null and b/documents/pdf/qpdf/endobj-at-eol.pdf differ diff --git a/documents/pdf/qpdf/eof-in-inline-image.pdf b/documents/pdf/qpdf/eof-in-inline-image.pdf new file mode 100644 index 0000000..83d4822 Binary files /dev/null and b/documents/pdf/qpdf/eof-in-inline-image.pdf differ diff --git a/documents/pdf/qpdf/eof-reading-token.pdf b/documents/pdf/qpdf/eof-reading-token.pdf new file mode 100644 index 0000000..da54d3a Binary files /dev/null and b/documents/pdf/qpdf/eof-reading-token.pdf differ diff --git a/documents/pdf/qpdf/eof-terminates-literal.pdf b/documents/pdf/qpdf/eof-terminates-literal.pdf new file mode 100644 index 0000000..c77c297 Binary files /dev/null and b/documents/pdf/qpdf/eof-terminates-literal.pdf differ diff --git a/documents/pdf/qpdf/erase-nntree-out.pdf b/documents/pdf/qpdf/erase-nntree-out.pdf new file mode 100644 index 0000000..8cc3ccb Binary files /dev/null and b/documents/pdf/qpdf/erase-nntree-out.pdf differ diff --git a/documents/pdf/qpdf/erase-nntree.pdf b/documents/pdf/qpdf/erase-nntree.pdf new file mode 100644 index 0000000..0b4fbfe Binary files /dev/null and b/documents/pdf/qpdf/erase-nntree.pdf differ diff --git a/documents/pdf/qpdf/exp1.pdf b/documents/pdf/qpdf/exp1.pdf new file mode 100644 index 0000000..c5ef80f Binary files /dev/null and b/documents/pdf/qpdf/exp1.pdf differ diff --git a/documents/pdf/qpdf/exp2.pdf b/documents/pdf/qpdf/exp2.pdf new file mode 100644 index 0000000..da0e836 Binary files /dev/null and b/documents/pdf/qpdf/exp2.pdf differ diff --git a/documents/pdf/qpdf/extensions-adbe-force-1-8-5.pdf b/documents/pdf/qpdf/extensions-adbe-force-1-8-5.pdf new file mode 100644 index 0000000..5a4ca57 Binary files /dev/null and b/documents/pdf/qpdf/extensions-adbe-force-1-8-5.pdf differ diff --git a/documents/pdf/qpdf/extensions-adbe-other-force-1-8-5.pdf b/documents/pdf/qpdf/extensions-adbe-other-force-1-8-5.pdf new file mode 100644 index 0000000..58c7075 Binary files /dev/null and b/documents/pdf/qpdf/extensions-adbe-other-force-1-8-5.pdf differ diff --git a/documents/pdf/qpdf/extensions-adbe-other.pdf b/documents/pdf/qpdf/extensions-adbe-other.pdf new file mode 100644 index 0000000..95f9236 Binary files /dev/null and b/documents/pdf/qpdf/extensions-adbe-other.pdf differ diff --git a/documents/pdf/qpdf/extensions-adbe.pdf b/documents/pdf/qpdf/extensions-adbe.pdf new file mode 100644 index 0000000..0f9196d Binary files /dev/null and b/documents/pdf/qpdf/extensions-adbe.pdf differ diff --git a/documents/pdf/qpdf/extensions-none-force-1-8-5.pdf b/documents/pdf/qpdf/extensions-none-force-1-8-5.pdf new file mode 100644 index 0000000..a3905cb Binary files /dev/null and b/documents/pdf/qpdf/extensions-none-force-1-8-5.pdf differ diff --git a/documents/pdf/qpdf/extensions-other-force-1-8-5.pdf b/documents/pdf/qpdf/extensions-other-force-1-8-5.pdf new file mode 100644 index 0000000..483a863 Binary files /dev/null and b/documents/pdf/qpdf/extensions-other-force-1-8-5.pdf differ diff --git a/documents/pdf/qpdf/extensions-other.pdf b/documents/pdf/qpdf/extensions-other.pdf new file mode 100644 index 0000000..bc85abc Binary files /dev/null and b/documents/pdf/qpdf/extensions-other.pdf differ diff --git a/documents/pdf/qpdf/extra-header-lin-newline.pdf b/documents/pdf/qpdf/extra-header-lin-newline.pdf new file mode 100644 index 0000000..3f3b41c Binary files /dev/null and b/documents/pdf/qpdf/extra-header-lin-newline.pdf differ diff --git a/documents/pdf/qpdf/extra-header-lin-no-newline.pdf b/documents/pdf/qpdf/extra-header-lin-no-newline.pdf new file mode 100644 index 0000000..0cc6a3b Binary files /dev/null and b/documents/pdf/qpdf/extra-header-lin-no-newline.pdf differ diff --git a/documents/pdf/qpdf/extra-header-newline.pdf b/documents/pdf/qpdf/extra-header-newline.pdf new file mode 100644 index 0000000..559f178 Binary files /dev/null and b/documents/pdf/qpdf/extra-header-newline.pdf differ diff --git a/documents/pdf/qpdf/extra-header-no-newline.pdf b/documents/pdf/qpdf/extra-header-no-newline.pdf new file mode 100644 index 0000000..4dcd229 Binary files /dev/null and b/documents/pdf/qpdf/extra-header-no-newline.pdf differ diff --git a/documents/pdf/qpdf/extract-duplicate-page.pdf b/documents/pdf/qpdf/extract-duplicate-page.pdf new file mode 100644 index 0000000..0986436 Binary files /dev/null and b/documents/pdf/qpdf/extract-duplicate-page.pdf differ diff --git a/documents/pdf/qpdf/fax-decode-parms.pdf b/documents/pdf/qpdf/fax-decode-parms.pdf new file mode 100644 index 0000000..5dce16f Binary files /dev/null and b/documents/pdf/qpdf/fax-decode-parms.pdf differ diff --git a/documents/pdf/qpdf/field-parse-errors-out.pdf b/documents/pdf/qpdf/field-parse-errors-out.pdf new file mode 100644 index 0000000..9b03e90 Binary files /dev/null and b/documents/pdf/qpdf/field-parse-errors-out.pdf differ diff --git a/documents/pdf/qpdf/field-parse-errors.pdf b/documents/pdf/qpdf/field-parse-errors.pdf new file mode 100644 index 0000000..a6e9e16 Binary files /dev/null and b/documents/pdf/qpdf/field-parse-errors.pdf differ diff --git a/documents/pdf/qpdf/field-resource-conflict.pdf b/documents/pdf/qpdf/field-resource-conflict.pdf new file mode 100644 index 0000000..144342a Binary files /dev/null and b/documents/pdf/qpdf/field-resource-conflict.pdf differ diff --git a/documents/pdf/qpdf/field-types-1.pdf b/documents/pdf/qpdf/field-types-1.pdf new file mode 100644 index 0000000..9e6c93c Binary files /dev/null and b/documents/pdf/qpdf/field-types-1.pdf differ diff --git a/documents/pdf/qpdf/field-types.pdf b/documents/pdf/qpdf/field-types.pdf new file mode 100644 index 0000000..5d0f8fc Binary files /dev/null and b/documents/pdf/qpdf/field-types.pdf differ diff --git a/documents/pdf/qpdf/fields-pages-out.pdf b/documents/pdf/qpdf/fields-pages-out.pdf new file mode 100644 index 0000000..5a75d5b Binary files /dev/null and b/documents/pdf/qpdf/fields-pages-out.pdf differ diff --git a/documents/pdf/qpdf/fields-split-1.pdf b/documents/pdf/qpdf/fields-split-1.pdf new file mode 100644 index 0000000..9523b55 Binary files /dev/null and b/documents/pdf/qpdf/fields-split-1.pdf differ diff --git a/documents/pdf/qpdf/fields-split-2.pdf b/documents/pdf/qpdf/fields-split-2.pdf new file mode 100644 index 0000000..712a1a3 Binary files /dev/null and b/documents/pdf/qpdf/fields-split-2.pdf differ diff --git a/documents/pdf/qpdf/fields-two-pages.pdf b/documents/pdf/qpdf/fields-two-pages.pdf new file mode 100644 index 0000000..a7180d4 Binary files /dev/null and b/documents/pdf/qpdf/fields-two-pages.pdf differ diff --git a/documents/pdf/qpdf/filter-abbreviation.pdf b/documents/pdf/qpdf/filter-abbreviation.pdf new file mode 100644 index 0000000..f7de69b Binary files /dev/null and b/documents/pdf/qpdf/filter-abbreviation.pdf differ diff --git a/documents/pdf/qpdf/filter-on-write-out.pdf b/documents/pdf/qpdf/filter-on-write-out.pdf new file mode 100644 index 0000000..cff04e0 Binary files /dev/null and b/documents/pdf/qpdf/filter-on-write-out.pdf differ diff --git a/documents/pdf/qpdf/filter-on-write.pdf b/documents/pdf/qpdf/filter-on-write.pdf new file mode 100644 index 0000000..3d73a5f Binary files /dev/null and b/documents/pdf/qpdf/filter-on-write.pdf differ diff --git a/documents/pdf/qpdf/form-bad-fields-array.pdf b/documents/pdf/qpdf/form-bad-fields-array.pdf new file mode 100644 index 0000000..4fd6fde Binary files /dev/null and b/documents/pdf/qpdf/form-bad-fields-array.pdf differ diff --git a/documents/pdf/qpdf/form-document-defaults.pdf b/documents/pdf/qpdf/form-document-defaults.pdf new file mode 100644 index 0000000..82c16ba Binary files /dev/null and b/documents/pdf/qpdf/form-document-defaults.pdf differ diff --git a/documents/pdf/qpdf/form-errors.pdf b/documents/pdf/qpdf/form-errors.pdf new file mode 100644 index 0000000..57c0f97 Binary files /dev/null and b/documents/pdf/qpdf/form-errors.pdf differ diff --git a/documents/pdf/qpdf/form-fields-and-annotations-shared.pdf b/documents/pdf/qpdf/form-fields-and-annotations-shared.pdf new file mode 100644 index 0000000..1d77640 Binary files /dev/null and b/documents/pdf/qpdf/form-fields-and-annotations-shared.pdf differ diff --git a/documents/pdf/qpdf/form-fields-and-annotations.pdf b/documents/pdf/qpdf/form-fields-and-annotations.pdf new file mode 100644 index 0000000..f423b56 Binary files /dev/null and b/documents/pdf/qpdf/form-fields-and-annotations.pdf differ diff --git a/documents/pdf/qpdf/form-filled-by-acrobat-out.pdf b/documents/pdf/qpdf/form-filled-by-acrobat-out.pdf new file mode 100644 index 0000000..80d82f8 Binary files /dev/null and b/documents/pdf/qpdf/form-filled-by-acrobat-out.pdf differ diff --git a/documents/pdf/qpdf/form-filled-by-acrobat.pdf b/documents/pdf/qpdf/form-filled-by-acrobat.pdf new file mode 100644 index 0000000..deff902 Binary files /dev/null and b/documents/pdf/qpdf/form-filled-by-acrobat.pdf differ diff --git a/documents/pdf/qpdf/form-filled-with-atril.pdf b/documents/pdf/qpdf/form-filled-with-atril.pdf new file mode 100644 index 0000000..c751ae6 Binary files /dev/null and b/documents/pdf/qpdf/form-filled-with-atril.pdf differ diff --git a/documents/pdf/qpdf/form-in.pdf b/documents/pdf/qpdf/form-in.pdf new file mode 100644 index 0000000..a1e18a6 Binary files /dev/null and b/documents/pdf/qpdf/form-in.pdf differ diff --git a/documents/pdf/qpdf/form-mod1.pdf b/documents/pdf/qpdf/form-mod1.pdf new file mode 100644 index 0000000..d30da5d Binary files /dev/null and b/documents/pdf/qpdf/form-mod1.pdf differ diff --git a/documents/pdf/qpdf/form-no-need-appearances-filled.pdf b/documents/pdf/qpdf/form-no-need-appearances-filled.pdf new file mode 100644 index 0000000..e15bffd Binary files /dev/null and b/documents/pdf/qpdf/form-no-need-appearances-filled.pdf differ diff --git a/documents/pdf/qpdf/form-no-need-appearances.pdf b/documents/pdf/qpdf/form-no-need-appearances.pdf new file mode 100644 index 0000000..4940457 Binary files /dev/null and b/documents/pdf/qpdf/form-no-need-appearances.pdf differ diff --git a/documents/pdf/qpdf/form-out.pdf b/documents/pdf/qpdf/form-out.pdf new file mode 100644 index 0000000..4ade2e6 Binary files /dev/null and b/documents/pdf/qpdf/form-out.pdf differ diff --git a/documents/pdf/qpdf/form-xobjects-no-resources-out.pdf b/documents/pdf/qpdf/form-xobjects-no-resources-out.pdf new file mode 100644 index 0000000..9093a8f Binary files /dev/null and b/documents/pdf/qpdf/form-xobjects-no-resources-out.pdf differ diff --git a/documents/pdf/qpdf/form-xobjects-no-resources.pdf b/documents/pdf/qpdf/form-xobjects-no-resources.pdf new file mode 100644 index 0000000..9011c4c Binary files /dev/null and b/documents/pdf/qpdf/form-xobjects-no-resources.pdf differ diff --git a/documents/pdf/qpdf/form-xobjects-out.pdf b/documents/pdf/qpdf/form-xobjects-out.pdf new file mode 100644 index 0000000..971be25 Binary files /dev/null and b/documents/pdf/qpdf/form-xobjects-out.pdf differ diff --git a/documents/pdf/qpdf/form-xobjects-some-resources1-out.pdf b/documents/pdf/qpdf/form-xobjects-some-resources1-out.pdf new file mode 100644 index 0000000..f6d8707 Binary files /dev/null and b/documents/pdf/qpdf/form-xobjects-some-resources1-out.pdf differ diff --git a/documents/pdf/qpdf/form-xobjects-some-resources1.pdf b/documents/pdf/qpdf/form-xobjects-some-resources1.pdf new file mode 100644 index 0000000..1aab18c Binary files /dev/null and b/documents/pdf/qpdf/form-xobjects-some-resources1.pdf differ diff --git a/documents/pdf/qpdf/form-xobjects-some-resources2-out.pdf b/documents/pdf/qpdf/form-xobjects-some-resources2-out.pdf new file mode 100644 index 0000000..168b432 Binary files /dev/null and b/documents/pdf/qpdf/form-xobjects-some-resources2-out.pdf differ diff --git a/documents/pdf/qpdf/form-xobjects-some-resources2.pdf b/documents/pdf/qpdf/form-xobjects-some-resources2.pdf new file mode 100644 index 0000000..d92f5e2 Binary files /dev/null and b/documents/pdf/qpdf/form-xobjects-some-resources2.pdf differ diff --git a/documents/pdf/qpdf/form.pdf b/documents/pdf/qpdf/form.pdf new file mode 100644 index 0000000..557efee Binary files /dev/null and b/documents/pdf/qpdf/form.pdf differ diff --git a/documents/pdf/qpdf/from-scratch-0.pdf b/documents/pdf/qpdf/from-scratch-0.pdf new file mode 100644 index 0000000..a92405b Binary files /dev/null and b/documents/pdf/qpdf/from-scratch-0.pdf differ diff --git a/documents/pdf/qpdf/fx-overlay-56.pdf b/documents/pdf/qpdf/fx-overlay-56.pdf new file mode 100644 index 0000000..f236ab2 Binary files /dev/null and b/documents/pdf/qpdf/fx-overlay-56.pdf differ diff --git a/documents/pdf/qpdf/fx-overlay-57.pdf b/documents/pdf/qpdf/fx-overlay-57.pdf new file mode 100644 index 0000000..7221c88 Binary files /dev/null and b/documents/pdf/qpdf/fx-overlay-57.pdf differ diff --git a/documents/pdf/qpdf/fx-overlay-58.pdf b/documents/pdf/qpdf/fx-overlay-58.pdf new file mode 100644 index 0000000..4119493 Binary files /dev/null and b/documents/pdf/qpdf/fx-overlay-58.pdf differ diff --git a/documents/pdf/qpdf/fx-overlay-59.pdf b/documents/pdf/qpdf/fx-overlay-59.pdf new file mode 100644 index 0000000..e81d081 Binary files /dev/null and b/documents/pdf/qpdf/fx-overlay-59.pdf differ diff --git a/documents/pdf/qpdf/fx-overlay-64.pdf b/documents/pdf/qpdf/fx-overlay-64.pdf new file mode 100644 index 0000000..e6f9c92 Binary files /dev/null and b/documents/pdf/qpdf/fx-overlay-64.pdf differ diff --git a/documents/pdf/qpdf/fx-overlay-65.pdf b/documents/pdf/qpdf/fx-overlay-65.pdf new file mode 100644 index 0000000..f8d5537 Binary files /dev/null and b/documents/pdf/qpdf/fx-overlay-65.pdf differ diff --git a/documents/pdf/qpdf/fx-overlay-66.pdf b/documents/pdf/qpdf/fx-overlay-66.pdf new file mode 100644 index 0000000..fdcef31 Binary files /dev/null and b/documents/pdf/qpdf/fx-overlay-66.pdf differ diff --git a/documents/pdf/qpdf/fx-overlay-67.pdf b/documents/pdf/qpdf/fx-overlay-67.pdf new file mode 100644 index 0000000..457ee71 Binary files /dev/null and b/documents/pdf/qpdf/fx-overlay-67.pdf differ diff --git a/documents/pdf/qpdf/fxo-bigsmall.pdf b/documents/pdf/qpdf/fxo-bigsmall.pdf new file mode 100644 index 0000000..aefdd1a Binary files /dev/null and b/documents/pdf/qpdf/fxo-bigsmall.pdf differ diff --git a/documents/pdf/qpdf/fxo-blue.pdf b/documents/pdf/qpdf/fxo-blue.pdf new file mode 100644 index 0000000..5981419 Binary files /dev/null and b/documents/pdf/qpdf/fxo-blue.pdf differ diff --git a/documents/pdf/qpdf/fxo-green.pdf b/documents/pdf/qpdf/fxo-green.pdf new file mode 100644 index 0000000..f7f2d37 Binary files /dev/null and b/documents/pdf/qpdf/fxo-green.pdf differ diff --git a/documents/pdf/qpdf/fxo-red.pdf b/documents/pdf/qpdf/fxo-red.pdf new file mode 100644 index 0000000..73d4912 Binary files /dev/null and b/documents/pdf/qpdf/fxo-red.pdf differ diff --git a/documents/pdf/qpdf/fxo-smallbig.pdf b/documents/pdf/qpdf/fxo-smallbig.pdf new file mode 100644 index 0000000..feaa47d Binary files /dev/null and b/documents/pdf/qpdf/fxo-smallbig.pdf differ diff --git a/documents/pdf/qpdf/gen1-no-dangling.pdf b/documents/pdf/qpdf/gen1-no-dangling.pdf new file mode 100644 index 0000000..0cdf45f Binary files /dev/null and b/documents/pdf/qpdf/gen1-no-dangling.pdf differ diff --git a/documents/pdf/qpdf/gen1.pdf b/documents/pdf/qpdf/gen1.pdf new file mode 100644 index 0000000..875beee Binary files /dev/null and b/documents/pdf/qpdf/gen1.pdf differ diff --git a/documents/pdf/qpdf/generalized.pdf b/documents/pdf/qpdf/generalized.pdf new file mode 100644 index 0000000..451b702 Binary files /dev/null and b/documents/pdf/qpdf/generalized.pdf differ diff --git a/documents/pdf/qpdf/global-damaged.pdf b/documents/pdf/qpdf/global-damaged.pdf new file mode 100644 index 0000000..cbdab9d Binary files /dev/null and b/documents/pdf/qpdf/global-damaged.pdf differ diff --git a/documents/pdf/qpdf/global.pdf b/documents/pdf/qpdf/global.pdf new file mode 100644 index 0000000..30b9665 Binary files /dev/null and b/documents/pdf/qpdf/global.pdf differ diff --git a/documents/pdf/qpdf/good.pdf b/documents/pdf/qpdf/good.pdf new file mode 100644 index 0000000..22e0fec Binary files /dev/null and b/documents/pdf/qpdf/good.pdf differ diff --git a/documents/pdf/qpdf/good1.pdf b/documents/pdf/qpdf/good1.pdf new file mode 100644 index 0000000..4598710 Binary files /dev/null and b/documents/pdf/qpdf/good1.pdf differ diff --git a/documents/pdf/qpdf/good10.pdf b/documents/pdf/qpdf/good10.pdf new file mode 100644 index 0000000..d8d6979 Binary files /dev/null and b/documents/pdf/qpdf/good10.pdf differ diff --git a/documents/pdf/qpdf/good11.pdf b/documents/pdf/qpdf/good11.pdf new file mode 100644 index 0000000..9bc29ee Binary files /dev/null and b/documents/pdf/qpdf/good11.pdf differ diff --git a/documents/pdf/qpdf/good12.pdf b/documents/pdf/qpdf/good12.pdf new file mode 100644 index 0000000..61d58d6 Binary files /dev/null and b/documents/pdf/qpdf/good12.pdf differ diff --git a/documents/pdf/qpdf/good13.pdf b/documents/pdf/qpdf/good13.pdf new file mode 100644 index 0000000..c1fe53e Binary files /dev/null and b/documents/pdf/qpdf/good13.pdf differ diff --git a/documents/pdf/qpdf/good14.pdf b/documents/pdf/qpdf/good14.pdf new file mode 100644 index 0000000..39b44b1 Binary files /dev/null and b/documents/pdf/qpdf/good14.pdf differ diff --git a/documents/pdf/qpdf/good15.pdf b/documents/pdf/qpdf/good15.pdf new file mode 100644 index 0000000..18554bb Binary files /dev/null and b/documents/pdf/qpdf/good15.pdf differ diff --git a/documents/pdf/qpdf/good17-not-qdf.pdf b/documents/pdf/qpdf/good17-not-qdf.pdf new file mode 100644 index 0000000..b1138d1 Binary files /dev/null and b/documents/pdf/qpdf/good17-not-qdf.pdf differ diff --git a/documents/pdf/qpdf/good17-not-recompressed.pdf b/documents/pdf/qpdf/good17-not-recompressed.pdf new file mode 100644 index 0000000..eff48d3 Binary files /dev/null and b/documents/pdf/qpdf/good17-not-recompressed.pdf differ diff --git a/documents/pdf/qpdf/good17.pdf b/documents/pdf/qpdf/good17.pdf new file mode 100644 index 0000000..c7e8246 Binary files /dev/null and b/documents/pdf/qpdf/good17.pdf differ diff --git a/documents/pdf/qpdf/good18.pdf b/documents/pdf/qpdf/good18.pdf new file mode 100644 index 0000000..6535c3b Binary files /dev/null and b/documents/pdf/qpdf/good18.pdf differ diff --git a/documents/pdf/qpdf/good19.pdf b/documents/pdf/qpdf/good19.pdf new file mode 100644 index 0000000..97bafb1 Binary files /dev/null and b/documents/pdf/qpdf/good19.pdf differ diff --git a/documents/pdf/qpdf/good2.pdf b/documents/pdf/qpdf/good2.pdf new file mode 100644 index 0000000..6eb28f1 Binary files /dev/null and b/documents/pdf/qpdf/good2.pdf differ diff --git a/documents/pdf/qpdf/good20.pdf b/documents/pdf/qpdf/good20.pdf new file mode 100644 index 0000000..de756f7 Binary files /dev/null and b/documents/pdf/qpdf/good20.pdf differ diff --git a/documents/pdf/qpdf/good21.pdf b/documents/pdf/qpdf/good21.pdf new file mode 100644 index 0000000..dc9b181 Binary files /dev/null and b/documents/pdf/qpdf/good21.pdf differ diff --git a/documents/pdf/qpdf/good3.pdf b/documents/pdf/qpdf/good3.pdf new file mode 100644 index 0000000..d363829 Binary files /dev/null and b/documents/pdf/qpdf/good3.pdf differ diff --git a/documents/pdf/qpdf/good4.pdf b/documents/pdf/qpdf/good4.pdf new file mode 100644 index 0000000..fad5d11 Binary files /dev/null and b/documents/pdf/qpdf/good4.pdf differ diff --git a/documents/pdf/qpdf/good5.pdf b/documents/pdf/qpdf/good5.pdf new file mode 100644 index 0000000..ed8ca7f Binary files /dev/null and b/documents/pdf/qpdf/good5.pdf differ diff --git a/documents/pdf/qpdf/good6.pdf b/documents/pdf/qpdf/good6.pdf new file mode 100644 index 0000000..fbc883e Binary files /dev/null and b/documents/pdf/qpdf/good6.pdf differ diff --git a/documents/pdf/qpdf/good7.pdf b/documents/pdf/qpdf/good7.pdf new file mode 100644 index 0000000..c4fdfb2 Binary files /dev/null and b/documents/pdf/qpdf/good7.pdf differ diff --git a/documents/pdf/qpdf/good8.pdf b/documents/pdf/qpdf/good8.pdf new file mode 100644 index 0000000..2ce347f Binary files /dev/null and b/documents/pdf/qpdf/good8.pdf differ diff --git a/documents/pdf/qpdf/good9.pdf b/documents/pdf/qpdf/good9.pdf new file mode 100644 index 0000000..2268d62 Binary files /dev/null and b/documents/pdf/qpdf/good9.pdf differ diff --git a/documents/pdf/qpdf/hybrid-xref.pdf b/documents/pdf/qpdf/hybrid-xref.pdf new file mode 100644 index 0000000..0608f04 Binary files /dev/null and b/documents/pdf/qpdf/hybrid-xref.pdf differ diff --git a/documents/pdf/qpdf/image-streams-small.pdf b/documents/pdf/qpdf/image-streams-small.pdf new file mode 100644 index 0000000..f4a2448 Binary files /dev/null and b/documents/pdf/qpdf/image-streams-small.pdf differ diff --git a/documents/pdf/qpdf/image-streams.pdf b/documents/pdf/qpdf/image-streams.pdf new file mode 100644 index 0000000..f925259 Binary files /dev/null and b/documents/pdf/qpdf/image-streams.pdf differ diff --git a/documents/pdf/qpdf/in-1.pdf b/documents/pdf/qpdf/in-1.pdf new file mode 100644 index 0000000..c31a275 Binary files /dev/null and b/documents/pdf/qpdf/in-1.pdf differ diff --git a/documents/pdf/qpdf/in-2.pdf b/documents/pdf/qpdf/in-2.pdf new file mode 100644 index 0000000..cbd5e86 Binary files /dev/null and b/documents/pdf/qpdf/in-2.pdf differ diff --git a/documents/pdf/qpdf/in-3.pdf b/documents/pdf/qpdf/in-3.pdf new file mode 100644 index 0000000..6953d54 Binary files /dev/null and b/documents/pdf/qpdf/in-3.pdf differ diff --git a/documents/pdf/qpdf/in-4.pdf b/documents/pdf/qpdf/in-4.pdf new file mode 100644 index 0000000..c26098e Binary files /dev/null and b/documents/pdf/qpdf/in-4.pdf differ diff --git a/documents/pdf/qpdf/in-5.pdf b/documents/pdf/qpdf/in-5.pdf new file mode 100644 index 0000000..5d3cde6 Binary files /dev/null and b/documents/pdf/qpdf/in-5.pdf differ diff --git a/documents/pdf/qpdf/in-6.pdf b/documents/pdf/qpdf/in-6.pdf new file mode 100644 index 0000000..44f0a17 Binary files /dev/null and b/documents/pdf/qpdf/in-6.pdf differ diff --git a/documents/pdf/qpdf/in.pdf b/documents/pdf/qpdf/in.pdf new file mode 100644 index 0000000..4bf2836 Binary files /dev/null and b/documents/pdf/qpdf/in.pdf differ diff --git a/documents/pdf/qpdf/incremental-1.pdf b/documents/pdf/qpdf/incremental-1.pdf new file mode 100644 index 0000000..d8b7d59 Binary files /dev/null and b/documents/pdf/qpdf/incremental-1.pdf differ diff --git a/documents/pdf/qpdf/incremental-2.pdf b/documents/pdf/qpdf/incremental-2.pdf new file mode 100644 index 0000000..64e5ea4 Binary files /dev/null and b/documents/pdf/qpdf/incremental-2.pdf differ diff --git a/documents/pdf/qpdf/incremental-3.pdf b/documents/pdf/qpdf/incremental-3.pdf new file mode 100644 index 0000000..0347a4e Binary files /dev/null and b/documents/pdf/qpdf/incremental-3.pdf differ diff --git a/documents/pdf/qpdf/indirect-decode-parms-out.pdf b/documents/pdf/qpdf/indirect-decode-parms-out.pdf new file mode 100644 index 0000000..fc681d6 Binary files /dev/null and b/documents/pdf/qpdf/indirect-decode-parms-out.pdf differ diff --git a/documents/pdf/qpdf/indirect-decode-parms.pdf b/documents/pdf/qpdf/indirect-decode-parms.pdf new file mode 100644 index 0000000..7818710 Binary files /dev/null and b/documents/pdf/qpdf/indirect-decode-parms.pdf differ diff --git a/documents/pdf/qpdf/indirect-filter-out-0.pdf b/documents/pdf/qpdf/indirect-filter-out-0.pdf new file mode 100644 index 0000000..d2ec11c Binary files /dev/null and b/documents/pdf/qpdf/indirect-filter-out-0.pdf differ diff --git a/documents/pdf/qpdf/indirect-filter-out-1.pdf b/documents/pdf/qpdf/indirect-filter-out-1.pdf new file mode 100644 index 0000000..9572598 Binary files /dev/null and b/documents/pdf/qpdf/indirect-filter-out-1.pdf differ diff --git a/documents/pdf/qpdf/indirect-filter.pdf b/documents/pdf/qpdf/indirect-filter.pdf new file mode 100644 index 0000000..f8426ee Binary files /dev/null and b/documents/pdf/qpdf/indirect-filter.pdf differ diff --git a/documents/pdf/qpdf/indirect-r-arg.pdf b/documents/pdf/qpdf/indirect-r-arg.pdf new file mode 100644 index 0000000..14500c7 Binary files /dev/null and b/documents/pdf/qpdf/indirect-r-arg.pdf differ diff --git a/documents/pdf/qpdf/inherited-flattened.pdf b/documents/pdf/qpdf/inherited-flattened.pdf new file mode 100644 index 0000000..20a154f Binary files /dev/null and b/documents/pdf/qpdf/inherited-flattened.pdf differ diff --git a/documents/pdf/qpdf/inherited-rotate.pdf b/documents/pdf/qpdf/inherited-rotate.pdf new file mode 100644 index 0000000..d016931 Binary files /dev/null and b/documents/pdf/qpdf/inherited-rotate.pdf differ diff --git a/documents/pdf/qpdf/inline-image-colorspace-lookup-out.pdf b/documents/pdf/qpdf/inline-image-colorspace-lookup-out.pdf new file mode 100644 index 0000000..598cb91 Binary files /dev/null and b/documents/pdf/qpdf/inline-image-colorspace-lookup-out.pdf differ diff --git a/documents/pdf/qpdf/inline-image-colorspace-lookup.pdf b/documents/pdf/qpdf/inline-image-colorspace-lookup.pdf new file mode 100644 index 0000000..a00b080 Binary files /dev/null and b/documents/pdf/qpdf/inline-image-colorspace-lookup.pdf differ diff --git a/documents/pdf/qpdf/inline-images-ii-all.pdf b/documents/pdf/qpdf/inline-images-ii-all.pdf new file mode 100644 index 0000000..5c70e62 Binary files /dev/null and b/documents/pdf/qpdf/inline-images-ii-all.pdf differ diff --git a/documents/pdf/qpdf/inline-images-ii-some.pdf b/documents/pdf/qpdf/inline-images-ii-some.pdf new file mode 100644 index 0000000..97e04ab Binary files /dev/null and b/documents/pdf/qpdf/inline-images-ii-some.pdf differ diff --git a/documents/pdf/qpdf/inline-images.pdf b/documents/pdf/qpdf/inline-images.pdf new file mode 100644 index 0000000..a55e144 Binary files /dev/null and b/documents/pdf/qpdf/inline-images.pdf differ diff --git a/documents/pdf/qpdf/input-1.pdf b/documents/pdf/qpdf/input-1.pdf new file mode 100644 index 0000000..dd16571 Binary files /dev/null and b/documents/pdf/qpdf/input-1.pdf differ diff --git a/documents/pdf/qpdf/input.pdf b/documents/pdf/qpdf/input.pdf new file mode 100644 index 0000000..6211ab7 Binary files /dev/null and b/documents/pdf/qpdf/input.pdf differ diff --git a/documents/pdf/qpdf/invalid-id-xref.pdf b/documents/pdf/qpdf/invalid-id-xref.pdf new file mode 100644 index 0000000..3993995 Binary files /dev/null and b/documents/pdf/qpdf/invalid-id-xref.pdf differ diff --git a/documents/pdf/qpdf/issue-101.pdf b/documents/pdf/qpdf/issue-101.pdf new file mode 100644 index 0000000..91b8608 Binary files /dev/null and b/documents/pdf/qpdf/issue-101.pdf differ diff --git a/documents/pdf/qpdf/issue-106.pdf b/documents/pdf/qpdf/issue-106.pdf new file mode 100644 index 0000000..cae92f3 Binary files /dev/null and b/documents/pdf/qpdf/issue-106.pdf differ diff --git a/documents/pdf/qpdf/issue-117.pdf b/documents/pdf/qpdf/issue-117.pdf new file mode 100644 index 0000000..74d97eb Binary files /dev/null and b/documents/pdf/qpdf/issue-117.pdf differ diff --git a/documents/pdf/qpdf/issue-119.pdf b/documents/pdf/qpdf/issue-119.pdf new file mode 100644 index 0000000..e976da2 Binary files /dev/null and b/documents/pdf/qpdf/issue-119.pdf differ diff --git a/documents/pdf/qpdf/issue-120.pdf b/documents/pdf/qpdf/issue-120.pdf new file mode 100644 index 0000000..fc5a89e Binary files /dev/null and b/documents/pdf/qpdf/issue-120.pdf differ diff --git a/documents/pdf/qpdf/issue-141b.pdf b/documents/pdf/qpdf/issue-141b.pdf new file mode 100644 index 0000000..0cfbc1f Binary files /dev/null and b/documents/pdf/qpdf/issue-141b.pdf differ diff --git a/documents/pdf/qpdf/issue-146.pdf b/documents/pdf/qpdf/issue-146.pdf new file mode 100644 index 0000000..af0d976 Binary files /dev/null and b/documents/pdf/qpdf/issue-146.pdf differ diff --git a/documents/pdf/qpdf/issue-149.pdf b/documents/pdf/qpdf/issue-149.pdf new file mode 100644 index 0000000..f86cf02 Binary files /dev/null and b/documents/pdf/qpdf/issue-149.pdf differ diff --git a/documents/pdf/qpdf/issue-179.pdf b/documents/pdf/qpdf/issue-179.pdf new file mode 100644 index 0000000..0e00bf1 Binary files /dev/null and b/documents/pdf/qpdf/issue-179.pdf differ diff --git a/documents/pdf/qpdf/issue-202.pdf b/documents/pdf/qpdf/issue-202.pdf new file mode 100644 index 0000000..9b2abfb Binary files /dev/null and b/documents/pdf/qpdf/issue-202.pdf differ diff --git a/documents/pdf/qpdf/issue-449.pdf b/documents/pdf/qpdf/issue-449.pdf new file mode 100644 index 0000000..5a8e1e7 Binary files /dev/null and b/documents/pdf/qpdf/issue-449.pdf differ diff --git a/documents/pdf/qpdf/issue-99.pdf b/documents/pdf/qpdf/issue-99.pdf new file mode 100644 index 0000000..aec05d1 Binary files /dev/null and b/documents/pdf/qpdf/issue-99.pdf differ diff --git a/documents/pdf/qpdf/issue-99b.pdf b/documents/pdf/qpdf/issue-99b.pdf new file mode 100644 index 0000000..2a2bc79 Binary files /dev/null and b/documents/pdf/qpdf/issue-99b.pdf differ diff --git a/documents/pdf/qpdf/job-json-add-attachments.pdf b/documents/pdf/qpdf/job-json-add-attachments.pdf new file mode 100644 index 0000000..58e07c5 Binary files /dev/null and b/documents/pdf/qpdf/job-json-add-attachments.pdf differ diff --git a/documents/pdf/qpdf/job-json-copy-attachments.pdf b/documents/pdf/qpdf/job-json-copy-attachments.pdf new file mode 100644 index 0000000..54cb030 Binary files /dev/null and b/documents/pdf/qpdf/job-json-copy-attachments.pdf differ diff --git a/documents/pdf/qpdf/job-json-empty-input.pdf b/documents/pdf/qpdf/job-json-empty-input.pdf new file mode 100644 index 0000000..38fb31e Binary files /dev/null and b/documents/pdf/qpdf/job-json-empty-input.pdf differ diff --git a/documents/pdf/qpdf/job-json-encrypt-128.pdf b/documents/pdf/qpdf/job-json-encrypt-128.pdf new file mode 100644 index 0000000..c42a62f Binary files /dev/null and b/documents/pdf/qpdf/job-json-encrypt-128.pdf differ diff --git a/documents/pdf/qpdf/job-json-encrypt-40.pdf b/documents/pdf/qpdf/job-json-encrypt-40.pdf new file mode 100644 index 0000000..6d48668 Binary files /dev/null and b/documents/pdf/qpdf/job-json-encrypt-40.pdf differ diff --git a/documents/pdf/qpdf/job-json-input-file-password.pdf b/documents/pdf/qpdf/job-json-input-file-password.pdf new file mode 100644 index 0000000..58f6218 Binary files /dev/null and b/documents/pdf/qpdf/job-json-input-file-password.pdf differ diff --git a/documents/pdf/qpdf/job-json-replace-input.pdf b/documents/pdf/qpdf/job-json-replace-input.pdf new file mode 100644 index 0000000..3831971 Binary files /dev/null and b/documents/pdf/qpdf/job-json-replace-input.pdf differ diff --git a/documents/pdf/qpdf/job-json-underlay-overlay-password.pdf b/documents/pdf/qpdf/job-json-underlay-overlay-password.pdf new file mode 100644 index 0000000..17f953a Binary files /dev/null and b/documents/pdf/qpdf/job-json-underlay-overlay-password.pdf differ diff --git a/documents/pdf/qpdf/job-json-underlay-overlay.pdf b/documents/pdf/qpdf/job-json-underlay-overlay.pdf new file mode 100644 index 0000000..48c1fb6 Binary files /dev/null and b/documents/pdf/qpdf/job-json-underlay-overlay.pdf differ diff --git a/documents/pdf/qpdf/jpeg-qstream.pdf b/documents/pdf/qpdf/jpeg-qstream.pdf new file mode 100644 index 0000000..62f5d9e Binary files /dev/null and b/documents/pdf/qpdf/jpeg-qstream.pdf differ diff --git a/documents/pdf/qpdf/json-changed-form-fields-and-annotations.pdf b/documents/pdf/qpdf/json-changed-form-fields-and-annotations.pdf new file mode 100644 index 0000000..16bb3a5 Binary files /dev/null and b/documents/pdf/qpdf/json-changed-form-fields-and-annotations.pdf differ diff --git a/documents/pdf/qpdf/json-changed-good13.pdf b/documents/pdf/qpdf/json-changed-good13.pdf new file mode 100644 index 0000000..1ceb650 Binary files /dev/null and b/documents/pdf/qpdf/json-changed-good13.pdf differ diff --git a/documents/pdf/qpdf/json-changed-need-appearances.pdf b/documents/pdf/qpdf/json-changed-need-appearances.pdf new file mode 100644 index 0000000..f615e3c Binary files /dev/null and b/documents/pdf/qpdf/json-changed-need-appearances.pdf differ diff --git a/documents/pdf/qpdf/kept-no-fields.pdf b/documents/pdf/qpdf/kept-no-fields.pdf new file mode 100644 index 0000000..32e134f Binary files /dev/null and b/documents/pdf/qpdf/kept-no-fields.pdf differ diff --git a/documents/pdf/qpdf/kept-some-fields.pdf b/documents/pdf/qpdf/kept-some-fields.pdf new file mode 100644 index 0000000..9f29bde Binary files /dev/null and b/documents/pdf/qpdf/kept-some-fields.pdf differ diff --git a/documents/pdf/qpdf/labels-split-01-06.pdf b/documents/pdf/qpdf/labels-split-01-06.pdf new file mode 100644 index 0000000..90bee9d Binary files /dev/null and b/documents/pdf/qpdf/labels-split-01-06.pdf differ diff --git a/documents/pdf/qpdf/labels-split-07-11.pdf b/documents/pdf/qpdf/labels-split-07-11.pdf new file mode 100644 index 0000000..872f114 Binary files /dev/null and b/documents/pdf/qpdf/labels-split-07-11.pdf differ diff --git a/documents/pdf/qpdf/large-inline-image-ii-all.pdf b/documents/pdf/qpdf/large-inline-image-ii-all.pdf new file mode 100644 index 0000000..c073439 Binary files /dev/null and b/documents/pdf/qpdf/large-inline-image-ii-all.pdf differ diff --git a/documents/pdf/qpdf/large-inline-image-ii-some.pdf b/documents/pdf/qpdf/large-inline-image-ii-some.pdf new file mode 100644 index 0000000..c403964 Binary files /dev/null and b/documents/pdf/qpdf/large-inline-image-ii-some.pdf differ diff --git a/documents/pdf/qpdf/large-inline-image.pdf b/documents/pdf/qpdf/large-inline-image.pdf new file mode 100644 index 0000000..7fe450a Binary files /dev/null and b/documents/pdf/qpdf/large-inline-image.pdf differ diff --git a/documents/pdf/qpdf/lin-delete-and-reuse.pdf b/documents/pdf/qpdf/lin-delete-and-reuse.pdf new file mode 100644 index 0000000..85e7972 Binary files /dev/null and b/documents/pdf/qpdf/lin-delete-and-reuse.pdf differ diff --git a/documents/pdf/qpdf/lin-special.pdf b/documents/pdf/qpdf/lin-special.pdf new file mode 100644 index 0000000..7c62dc2 Binary files /dev/null and b/documents/pdf/qpdf/lin-special.pdf differ diff --git a/documents/pdf/qpdf/lin1.pdf b/documents/pdf/qpdf/lin1.pdf new file mode 100644 index 0000000..d046e2d Binary files /dev/null and b/documents/pdf/qpdf/lin1.pdf differ diff --git a/documents/pdf/qpdf/lin2.pdf b/documents/pdf/qpdf/lin2.pdf new file mode 100644 index 0000000..3ed2e61 Binary files /dev/null and b/documents/pdf/qpdf/lin2.pdf differ diff --git a/documents/pdf/qpdf/lin3.pdf b/documents/pdf/qpdf/lin3.pdf new file mode 100644 index 0000000..afbf8c7 Binary files /dev/null and b/documents/pdf/qpdf/lin3.pdf differ diff --git a/documents/pdf/qpdf/lin4.pdf b/documents/pdf/qpdf/lin4.pdf new file mode 100644 index 0000000..8e094b2 Binary files /dev/null and b/documents/pdf/qpdf/lin4.pdf differ diff --git a/documents/pdf/qpdf/lin5.pdf b/documents/pdf/qpdf/lin5.pdf new file mode 100644 index 0000000..c213895 Binary files /dev/null and b/documents/pdf/qpdf/lin5.pdf differ diff --git a/documents/pdf/qpdf/lin6.pdf b/documents/pdf/qpdf/lin6.pdf new file mode 100644 index 0000000..a0e52ab Binary files /dev/null and b/documents/pdf/qpdf/lin6.pdf differ diff --git a/documents/pdf/qpdf/lin7.pdf b/documents/pdf/qpdf/lin7.pdf new file mode 100644 index 0000000..df49bb1 Binary files /dev/null and b/documents/pdf/qpdf/lin7.pdf differ diff --git a/documents/pdf/qpdf/lin8.pdf b/documents/pdf/qpdf/lin8.pdf new file mode 100644 index 0000000..cb5cc02 Binary files /dev/null and b/documents/pdf/qpdf/lin8.pdf differ diff --git a/documents/pdf/qpdf/lin9.pdf b/documents/pdf/qpdf/lin9.pdf new file mode 100644 index 0000000..a0bf0f6 Binary files /dev/null and b/documents/pdf/qpdf/lin9.pdf differ diff --git a/documents/pdf/qpdf/linearization-bounds-1.pdf b/documents/pdf/qpdf/linearization-bounds-1.pdf new file mode 100644 index 0000000..237ea6c Binary files /dev/null and b/documents/pdf/qpdf/linearization-bounds-1.pdf differ diff --git a/documents/pdf/qpdf/linearization-bounds-2.pdf b/documents/pdf/qpdf/linearization-bounds-2.pdf new file mode 100644 index 0000000..40f6716 Binary files /dev/null and b/documents/pdf/qpdf/linearization-bounds-2.pdf differ diff --git a/documents/pdf/qpdf/linearization-large-vector-alloc.pdf b/documents/pdf/qpdf/linearization-large-vector-alloc.pdf new file mode 100644 index 0000000..56d06c2 Binary files /dev/null and b/documents/pdf/qpdf/linearization-large-vector-alloc.pdf differ diff --git a/documents/pdf/qpdf/linearize-duplicate-page.pdf b/documents/pdf/qpdf/linearize-duplicate-page.pdf new file mode 100644 index 0000000..59fc872 Binary files /dev/null and b/documents/pdf/qpdf/linearize-duplicate-page.pdf differ diff --git a/documents/pdf/qpdf/linearized-and-warnings.pdf b/documents/pdf/qpdf/linearized-and-warnings.pdf new file mode 100644 index 0000000..fbc3947 Binary files /dev/null and b/documents/pdf/qpdf/linearized-and-warnings.pdf differ diff --git a/documents/pdf/qpdf/link-annots.pdf b/documents/pdf/qpdf/link-annots.pdf new file mode 100644 index 0000000..0a2756f Binary files /dev/null and b/documents/pdf/qpdf/link-annots.pdf differ diff --git a/documents/pdf/qpdf/long-id-linearized.pdf b/documents/pdf/qpdf/long-id-linearized.pdf new file mode 100644 index 0000000..6177ebb Binary files /dev/null and b/documents/pdf/qpdf/long-id-linearized.pdf differ diff --git a/documents/pdf/qpdf/long-id.pdf b/documents/pdf/qpdf/long-id.pdf new file mode 100644 index 0000000..db05b0e Binary files /dev/null and b/documents/pdf/qpdf/long-id.pdf differ diff --git a/documents/pdf/qpdf/manual-appearances-out.pdf b/documents/pdf/qpdf/manual-appearances-out.pdf new file mode 100644 index 0000000..2fdbf27 Binary files /dev/null and b/documents/pdf/qpdf/manual-appearances-out.pdf differ diff --git a/documents/pdf/qpdf/manual-appearances-print-out.pdf b/documents/pdf/qpdf/manual-appearances-print-out.pdf new file mode 100644 index 0000000..e5e1b49 Binary files /dev/null and b/documents/pdf/qpdf/manual-appearances-print-out.pdf differ diff --git a/documents/pdf/qpdf/manual-appearances-screen-out.pdf b/documents/pdf/qpdf/manual-appearances-screen-out.pdf new file mode 100644 index 0000000..3adfd99 Binary files /dev/null and b/documents/pdf/qpdf/manual-appearances-screen-out.pdf differ diff --git a/documents/pdf/qpdf/manual-appearances.pdf b/documents/pdf/qpdf/manual-appearances.pdf new file mode 100644 index 0000000..25cc8c1 Binary files /dev/null and b/documents/pdf/qpdf/manual-appearances.pdf differ diff --git a/documents/pdf/qpdf/manual-qpdf-json.pdf b/documents/pdf/qpdf/manual-qpdf-json.pdf new file mode 100644 index 0000000..1d0e012 Binary files /dev/null and b/documents/pdf/qpdf/manual-qpdf-json.pdf differ diff --git a/documents/pdf/qpdf/many-nulls.pdf b/documents/pdf/qpdf/many-nulls.pdf new file mode 100644 index 0000000..eccb2b0 Binary files /dev/null and b/documents/pdf/qpdf/many-nulls.pdf differ diff --git a/documents/pdf/qpdf/merge-dict.pdf b/documents/pdf/qpdf/merge-dict.pdf new file mode 100644 index 0000000..2443791 Binary files /dev/null and b/documents/pdf/qpdf/merge-dict.pdf differ diff --git a/documents/pdf/qpdf/merge-dot-implicit-ranges.pdf b/documents/pdf/qpdf/merge-dot-implicit-ranges.pdf new file mode 100644 index 0000000..1bba7c1 Binary files /dev/null and b/documents/pdf/qpdf/merge-dot-implicit-ranges.pdf differ diff --git a/documents/pdf/qpdf/merge-implicit-ranges.pdf b/documents/pdf/qpdf/merge-implicit-ranges.pdf new file mode 100644 index 0000000..8987d0b Binary files /dev/null and b/documents/pdf/qpdf/merge-implicit-ranges.pdf differ diff --git a/documents/pdf/qpdf/merge-multiple-labels.pdf b/documents/pdf/qpdf/merge-multiple-labels.pdf new file mode 100644 index 0000000..46aecb6 Binary files /dev/null and b/documents/pdf/qpdf/merge-multiple-labels.pdf differ diff --git a/documents/pdf/qpdf/merge-three-files-1.pdf b/documents/pdf/qpdf/merge-three-files-1.pdf new file mode 100644 index 0000000..7e23092 Binary files /dev/null and b/documents/pdf/qpdf/merge-three-files-1.pdf differ diff --git a/documents/pdf/qpdf/merge-three-files-2.pdf b/documents/pdf/qpdf/merge-three-files-2.pdf new file mode 100644 index 0000000..2f17e22 Binary files /dev/null and b/documents/pdf/qpdf/merge-three-files-2.pdf differ diff --git a/documents/pdf/qpdf/metadata-crypt-filter.pdf b/documents/pdf/qpdf/metadata-crypt-filter.pdf new file mode 100644 index 0000000..f64e09c Binary files /dev/null and b/documents/pdf/qpdf/metadata-crypt-filter.pdf differ diff --git a/documents/pdf/qpdf/minimal-1.pdf b/documents/pdf/qpdf/minimal-1.pdf new file mode 100644 index 0000000..dab1668 Binary files /dev/null and b/documents/pdf/qpdf/minimal-1.pdf differ diff --git a/documents/pdf/qpdf/minimal-9.pdf b/documents/pdf/qpdf/minimal-9.pdf new file mode 100644 index 0000000..b3df963 Binary files /dev/null and b/documents/pdf/qpdf/minimal-9.pdf differ diff --git a/documents/pdf/qpdf/minimal-dangling-out.pdf b/documents/pdf/qpdf/minimal-dangling-out.pdf new file mode 100644 index 0000000..eda26ab Binary files /dev/null and b/documents/pdf/qpdf/minimal-dangling-out.pdf differ diff --git a/documents/pdf/qpdf/minimal-linearize-pass1.pdf b/documents/pdf/qpdf/minimal-linearize-pass1.pdf new file mode 100644 index 0000000..2e55294 Binary files /dev/null and b/documents/pdf/qpdf/minimal-linearize-pass1.pdf differ diff --git a/documents/pdf/qpdf/minimal-nulls.pdf b/documents/pdf/qpdf/minimal-nulls.pdf new file mode 100644 index 0000000..db0428f Binary files /dev/null and b/documents/pdf/qpdf/minimal-nulls.pdf differ diff --git a/documents/pdf/qpdf/minimal-rotated.pdf b/documents/pdf/qpdf/minimal-rotated.pdf new file mode 100644 index 0000000..945af6b Binary files /dev/null and b/documents/pdf/qpdf/minimal-rotated.pdf differ diff --git a/documents/pdf/qpdf/minimal-signed-restricted.pdf b/documents/pdf/qpdf/minimal-signed-restricted.pdf new file mode 100644 index 0000000..1c53082 Binary files /dev/null and b/documents/pdf/qpdf/minimal-signed-restricted.pdf differ diff --git a/documents/pdf/qpdf/minimal-signed-restrictions-removed.pdf b/documents/pdf/qpdf/minimal-signed-restrictions-removed.pdf new file mode 100644 index 0000000..de3b235 Binary files /dev/null and b/documents/pdf/qpdf/minimal-signed-restrictions-removed.pdf differ diff --git a/documents/pdf/qpdf/minimal.pdf b/documents/pdf/qpdf/minimal.pdf new file mode 100644 index 0000000..11c7f2a Binary files /dev/null and b/documents/pdf/qpdf/minimal.pdf differ diff --git a/documents/pdf/qpdf/more-choices.pdf b/documents/pdf/qpdf/more-choices.pdf new file mode 100644 index 0000000..5e23520 Binary files /dev/null and b/documents/pdf/qpdf/more-choices.pdf differ diff --git a/documents/pdf/qpdf/name-pound-images.pdf b/documents/pdf/qpdf/name-pound-images.pdf new file mode 100644 index 0000000..dcc3ba3 Binary files /dev/null and b/documents/pdf/qpdf/name-pound-images.pdf differ diff --git a/documents/pdf/qpdf/name-tree.pdf b/documents/pdf/qpdf/name-tree.pdf new file mode 100644 index 0000000..2023274 Binary files /dev/null and b/documents/pdf/qpdf/name-tree.pdf differ diff --git a/documents/pdf/qpdf/need-appearances-more-out.pdf b/documents/pdf/qpdf/need-appearances-more-out.pdf new file mode 100644 index 0000000..7b0ef9c Binary files /dev/null and b/documents/pdf/qpdf/need-appearances-more-out.pdf differ diff --git a/documents/pdf/qpdf/need-appearances-more.pdf b/documents/pdf/qpdf/need-appearances-more.pdf new file mode 100644 index 0000000..c122d4d Binary files /dev/null and b/documents/pdf/qpdf/need-appearances-more.pdf differ diff --git a/documents/pdf/qpdf/need-appearances-more2.pdf b/documents/pdf/qpdf/need-appearances-more2.pdf new file mode 100644 index 0000000..f08f4b6 Binary files /dev/null and b/documents/pdf/qpdf/need-appearances-more2.pdf differ diff --git a/documents/pdf/qpdf/need-appearances-more3.pdf b/documents/pdf/qpdf/need-appearances-more3.pdf new file mode 100644 index 0000000..f4b696c Binary files /dev/null and b/documents/pdf/qpdf/need-appearances-more3.pdf differ diff --git a/documents/pdf/qpdf/need-appearances-out.pdf b/documents/pdf/qpdf/need-appearances-out.pdf new file mode 100644 index 0000000..0899470 Binary files /dev/null and b/documents/pdf/qpdf/need-appearances-out.pdf differ diff --git a/documents/pdf/qpdf/need-appearances-utf8.pdf b/documents/pdf/qpdf/need-appearances-utf8.pdf new file mode 100644 index 0000000..ec61542 Binary files /dev/null and b/documents/pdf/qpdf/need-appearances-utf8.pdf differ diff --git a/documents/pdf/qpdf/need-appearances.pdf b/documents/pdf/qpdf/need-appearances.pdf new file mode 100644 index 0000000..545d799 Binary files /dev/null and b/documents/pdf/qpdf/need-appearances.pdf differ diff --git a/documents/pdf/qpdf/need-appearances2.pdf b/documents/pdf/qpdf/need-appearances2.pdf new file mode 100644 index 0000000..f40703e Binary files /dev/null and b/documents/pdf/qpdf/need-appearances2.pdf differ diff --git a/documents/pdf/qpdf/nested-form-xobjects-inline-images-ii-all.pdf b/documents/pdf/qpdf/nested-form-xobjects-inline-images-ii-all.pdf new file mode 100644 index 0000000..4ac64c3 Binary files /dev/null and b/documents/pdf/qpdf/nested-form-xobjects-inline-images-ii-all.pdf differ diff --git a/documents/pdf/qpdf/nested-form-xobjects-inline-images-ii-some.pdf b/documents/pdf/qpdf/nested-form-xobjects-inline-images-ii-some.pdf new file mode 100644 index 0000000..6713c68 Binary files /dev/null and b/documents/pdf/qpdf/nested-form-xobjects-inline-images-ii-some.pdf differ diff --git a/documents/pdf/qpdf/nested-form-xobjects-inline-images.pdf b/documents/pdf/qpdf/nested-form-xobjects-inline-images.pdf new file mode 100644 index 0000000..e558b13 Binary files /dev/null and b/documents/pdf/qpdf/nested-form-xobjects-inline-images.pdf differ diff --git a/documents/pdf/qpdf/nested-form-xobjects.pdf b/documents/pdf/qpdf/nested-form-xobjects.pdf new file mode 100644 index 0000000..5e2c991 Binary files /dev/null and b/documents/pdf/qpdf/nested-form-xobjects.pdf differ diff --git a/documents/pdf/qpdf/nested-images.pdf b/documents/pdf/qpdf/nested-images.pdf new file mode 100644 index 0000000..f5814b9 Binary files /dev/null and b/documents/pdf/qpdf/nested-images.pdf differ diff --git a/documents/pdf/qpdf/new-streams.pdf b/documents/pdf/qpdf/new-streams.pdf new file mode 100644 index 0000000..6432f36 Binary files /dev/null and b/documents/pdf/qpdf/new-streams.pdf differ diff --git a/documents/pdf/qpdf/newline-before-endstream-nl-objstm.pdf b/documents/pdf/qpdf/newline-before-endstream-nl-objstm.pdf new file mode 100644 index 0000000..2f4cb5f Binary files /dev/null and b/documents/pdf/qpdf/newline-before-endstream-nl-objstm.pdf differ diff --git a/documents/pdf/qpdf/newline-before-endstream-nl-qdf.pdf b/documents/pdf/qpdf/newline-before-endstream-nl-qdf.pdf new file mode 100644 index 0000000..ea83889 Binary files /dev/null and b/documents/pdf/qpdf/newline-before-endstream-nl-qdf.pdf differ diff --git a/documents/pdf/qpdf/newline-before-endstream-nl.pdf b/documents/pdf/qpdf/newline-before-endstream-nl.pdf new file mode 100644 index 0000000..6df0c89 Binary files /dev/null and b/documents/pdf/qpdf/newline-before-endstream-nl.pdf differ diff --git a/documents/pdf/qpdf/newline-before-endstream-qdf.pdf b/documents/pdf/qpdf/newline-before-endstream-qdf.pdf new file mode 100644 index 0000000..6959bba Binary files /dev/null and b/documents/pdf/qpdf/newline-before-endstream-qdf.pdf differ diff --git a/documents/pdf/qpdf/no-contents-none.pdf b/documents/pdf/qpdf/no-contents-none.pdf new file mode 100644 index 0000000..427c106 Binary files /dev/null and b/documents/pdf/qpdf/no-contents-none.pdf differ diff --git a/documents/pdf/qpdf/no-contents-qdf.pdf b/documents/pdf/qpdf/no-contents-qdf.pdf new file mode 100644 index 0000000..ae718a1 Binary files /dev/null and b/documents/pdf/qpdf/no-contents-qdf.pdf differ diff --git a/documents/pdf/qpdf/no-contents.pdf b/documents/pdf/qpdf/no-contents.pdf new file mode 100644 index 0000000..24f4329 Binary files /dev/null and b/documents/pdf/qpdf/no-contents.pdf differ diff --git a/documents/pdf/qpdf/no-info.pdf b/documents/pdf/qpdf/no-info.pdf new file mode 100644 index 0000000..8e7b6d6 Binary files /dev/null and b/documents/pdf/qpdf/no-info.pdf differ diff --git a/documents/pdf/qpdf/no-pages-types-fixed.pdf b/documents/pdf/qpdf/no-pages-types-fixed.pdf new file mode 100644 index 0000000..413f3db Binary files /dev/null and b/documents/pdf/qpdf/no-pages-types-fixed.pdf differ diff --git a/documents/pdf/qpdf/no-pages-types.pdf b/documents/pdf/qpdf/no-pages-types.pdf new file mode 100644 index 0000000..f8e96cf Binary files /dev/null and b/documents/pdf/qpdf/no-pages-types.pdf differ diff --git a/documents/pdf/qpdf/no-space-compressed-object.pdf b/documents/pdf/qpdf/no-space-compressed-object.pdf new file mode 100644 index 0000000..6566aab Binary files /dev/null and b/documents/pdf/qpdf/no-space-compressed-object.pdf differ diff --git a/documents/pdf/qpdf/no-space-in-xref.pdf b/documents/pdf/qpdf/no-space-in-xref.pdf new file mode 100644 index 0000000..2656f66 Binary files /dev/null and b/documents/pdf/qpdf/no-space-in-xref.pdf differ diff --git a/documents/pdf/qpdf/nontrivial-crypt-filter-decrypted.pdf b/documents/pdf/qpdf/nontrivial-crypt-filter-decrypted.pdf new file mode 100644 index 0000000..6a04dab Binary files /dev/null and b/documents/pdf/qpdf/nontrivial-crypt-filter-decrypted.pdf differ diff --git a/documents/pdf/qpdf/nontrivial-crypt-filter.pdf b/documents/pdf/qpdf/nontrivial-crypt-filter.pdf new file mode 100644 index 0000000..070453c Binary files /dev/null and b/documents/pdf/qpdf/nontrivial-crypt-filter.pdf differ diff --git a/documents/pdf/qpdf/number-tree.pdf b/documents/pdf/qpdf/number-tree.pdf new file mode 100644 index 0000000..f572e13 Binary files /dev/null and b/documents/pdf/qpdf/number-tree.pdf differ diff --git a/documents/pdf/qpdf/numeric-and-string-1.pdf b/documents/pdf/qpdf/numeric-and-string-1.pdf new file mode 100644 index 0000000..7192116 Binary files /dev/null and b/documents/pdf/qpdf/numeric-and-string-1.pdf differ diff --git a/documents/pdf/qpdf/numeric-and-string-2.pdf b/documents/pdf/qpdf/numeric-and-string-2.pdf new file mode 100644 index 0000000..b4bb4b8 Binary files /dev/null and b/documents/pdf/qpdf/numeric-and-string-2.pdf differ diff --git a/documents/pdf/qpdf/numeric-and-string-3.pdf b/documents/pdf/qpdf/numeric-and-string-3.pdf new file mode 100644 index 0000000..f083638 Binary files /dev/null and b/documents/pdf/qpdf/numeric-and-string-3.pdf differ diff --git a/documents/pdf/qpdf/obj0.pdf b/documents/pdf/qpdf/obj0.pdf new file mode 100644 index 0000000..dbd3c13 Binary files /dev/null and b/documents/pdf/qpdf/obj0.pdf differ diff --git a/documents/pdf/qpdf/object-stream-self-ref-out.pdf b/documents/pdf/qpdf/object-stream-self-ref-out.pdf new file mode 100644 index 0000000..44ec654 Binary files /dev/null and b/documents/pdf/qpdf/object-stream-self-ref-out.pdf differ diff --git a/documents/pdf/qpdf/object-stream-self-ref.pdf b/documents/pdf/qpdf/object-stream-self-ref.pdf new file mode 100644 index 0000000..a224201 Binary files /dev/null and b/documents/pdf/qpdf/object-stream-self-ref.pdf differ diff --git a/documents/pdf/qpdf/object-stream.pdf b/documents/pdf/qpdf/object-stream.pdf new file mode 100644 index 0000000..22cffdf Binary files /dev/null and b/documents/pdf/qpdf/object-stream.pdf differ diff --git a/documents/pdf/qpdf/object-types-os.pdf b/documents/pdf/qpdf/object-types-os.pdf new file mode 100644 index 0000000..213e8e9 Binary files /dev/null and b/documents/pdf/qpdf/object-types-os.pdf differ diff --git a/documents/pdf/qpdf/object-types.pdf b/documents/pdf/qpdf/object-types.pdf new file mode 100644 index 0000000..996b4e4 Binary files /dev/null and b/documents/pdf/qpdf/object-types.pdf differ diff --git a/documents/pdf/qpdf/ostream1.pdf b/documents/pdf/qpdf/ostream1.pdf new file mode 100644 index 0000000..057141c Binary files /dev/null and b/documents/pdf/qpdf/ostream1.pdf differ diff --git a/documents/pdf/qpdf/ostream2.pdf b/documents/pdf/qpdf/ostream2.pdf new file mode 100644 index 0000000..12c6221 Binary files /dev/null and b/documents/pdf/qpdf/ostream2.pdf differ diff --git a/documents/pdf/qpdf/other-file-first.pdf b/documents/pdf/qpdf/other-file-first.pdf new file mode 100644 index 0000000..3d2f094 Binary files /dev/null and b/documents/pdf/qpdf/other-file-first.pdf differ diff --git a/documents/pdf/qpdf/out-1.pdf b/documents/pdf/qpdf/out-1.pdf new file mode 100644 index 0000000..2771ecf Binary files /dev/null and b/documents/pdf/qpdf/out-1.pdf differ diff --git a/documents/pdf/qpdf/out-2.pdf b/documents/pdf/qpdf/out-2.pdf new file mode 100644 index 0000000..1cc3a04 Binary files /dev/null and b/documents/pdf/qpdf/out-2.pdf differ diff --git a/documents/pdf/qpdf/out-3.pdf b/documents/pdf/qpdf/out-3.pdf new file mode 100644 index 0000000..d38a8c1 Binary files /dev/null and b/documents/pdf/qpdf/out-3.pdf differ diff --git a/documents/pdf/qpdf/out-4.pdf b/documents/pdf/qpdf/out-4.pdf new file mode 100644 index 0000000..fbff083 Binary files /dev/null and b/documents/pdf/qpdf/out-4.pdf differ diff --git a/documents/pdf/qpdf/out-5.pdf b/documents/pdf/qpdf/out-5.pdf new file mode 100644 index 0000000..0a631a5 Binary files /dev/null and b/documents/pdf/qpdf/out-5.pdf differ diff --git a/documents/pdf/qpdf/out-6.pdf b/documents/pdf/qpdf/out-6.pdf new file mode 100644 index 0000000..d08cc71 Binary files /dev/null and b/documents/pdf/qpdf/out-6.pdf differ diff --git a/documents/pdf/qpdf/out.pdf b/documents/pdf/qpdf/out.pdf new file mode 100644 index 0000000..b713385 Binary files /dev/null and b/documents/pdf/qpdf/out.pdf differ diff --git a/documents/pdf/qpdf/outlines-split-01-10.pdf b/documents/pdf/qpdf/outlines-split-01-10.pdf new file mode 100644 index 0000000..5758d38 Binary files /dev/null and b/documents/pdf/qpdf/outlines-split-01-10.pdf differ diff --git a/documents/pdf/qpdf/outlines-split-11-20.pdf b/documents/pdf/qpdf/outlines-split-11-20.pdf new file mode 100644 index 0000000..ccf58c5 Binary files /dev/null and b/documents/pdf/qpdf/outlines-split-11-20.pdf differ diff --git a/documents/pdf/qpdf/outlines-split-21-30.pdf b/documents/pdf/qpdf/outlines-split-21-30.pdf new file mode 100644 index 0000000..4499937 Binary files /dev/null and b/documents/pdf/qpdf/outlines-split-21-30.pdf differ diff --git a/documents/pdf/qpdf/outlines-with-actions.pdf b/documents/pdf/qpdf/outlines-with-actions.pdf new file mode 100644 index 0000000..55d519d Binary files /dev/null and b/documents/pdf/qpdf/outlines-with-actions.pdf differ diff --git a/documents/pdf/qpdf/outlines-with-loop.pdf b/documents/pdf/qpdf/outlines-with-loop.pdf new file mode 100644 index 0000000..91a5db9 Binary files /dev/null and b/documents/pdf/qpdf/outlines-with-loop.pdf differ diff --git a/documents/pdf/qpdf/outlines-with-old-root-dests-dict.pdf b/documents/pdf/qpdf/outlines-with-old-root-dests-dict.pdf new file mode 100644 index 0000000..95f24f2 Binary files /dev/null and b/documents/pdf/qpdf/outlines-with-old-root-dests-dict.pdf differ diff --git a/documents/pdf/qpdf/outlines-with-old-root-dests.pdf b/documents/pdf/qpdf/outlines-with-old-root-dests.pdf new file mode 100644 index 0000000..01e73b3 Binary files /dev/null and b/documents/pdf/qpdf/outlines-with-old-root-dests.pdf differ diff --git a/documents/pdf/qpdf/output.pdf b/documents/pdf/qpdf/output.pdf new file mode 100644 index 0000000..c13c770 Binary files /dev/null and b/documents/pdf/qpdf/output.pdf differ diff --git a/documents/pdf/qpdf/overlay-copy-annotations-p1.pdf b/documents/pdf/qpdf/overlay-copy-annotations-p1.pdf new file mode 100644 index 0000000..a3fd434 Binary files /dev/null and b/documents/pdf/qpdf/overlay-copy-annotations-p1.pdf differ diff --git a/documents/pdf/qpdf/overlay-copy-annotations-p2.pdf b/documents/pdf/qpdf/overlay-copy-annotations-p2.pdf new file mode 100644 index 0000000..5048d89 Binary files /dev/null and b/documents/pdf/qpdf/overlay-copy-annotations-p2.pdf differ diff --git a/documents/pdf/qpdf/overlay-copy-annotations-p5.pdf b/documents/pdf/qpdf/overlay-copy-annotations-p5.pdf new file mode 100644 index 0000000..57dcf58 Binary files /dev/null and b/documents/pdf/qpdf/overlay-copy-annotations-p5.pdf differ diff --git a/documents/pdf/qpdf/overlay-copy-annotations-p6.pdf b/documents/pdf/qpdf/overlay-copy-annotations-p6.pdf new file mode 100644 index 0000000..270ad44 Binary files /dev/null and b/documents/pdf/qpdf/overlay-copy-annotations-p6.pdf differ diff --git a/documents/pdf/qpdf/overlay-copy-annotations.pdf b/documents/pdf/qpdf/overlay-copy-annotations.pdf new file mode 100644 index 0000000..ccce23d Binary files /dev/null and b/documents/pdf/qpdf/overlay-copy-annotations.pdf differ diff --git a/documents/pdf/qpdf/overlay-no-resources.pdf b/documents/pdf/qpdf/overlay-no-resources.pdf new file mode 100644 index 0000000..c7a10a9 Binary files /dev/null and b/documents/pdf/qpdf/overlay-no-resources.pdf differ diff --git a/documents/pdf/qpdf/override-compressed-object.pdf b/documents/pdf/qpdf/override-compressed-object.pdf new file mode 100644 index 0000000..25232f5 Binary files /dev/null and b/documents/pdf/qpdf/override-compressed-object.pdf differ diff --git a/documents/pdf/qpdf/p1-a-p2-a.pdf b/documents/pdf/qpdf/p1-a-p2-a.pdf new file mode 100644 index 0000000..85b2a50 Binary files /dev/null and b/documents/pdf/qpdf/p1-a-p2-a.pdf differ diff --git a/documents/pdf/qpdf/p1-a-p2-b.pdf b/documents/pdf/qpdf/p1-a-p2-b.pdf new file mode 100644 index 0000000..e1623f5 Binary files /dev/null and b/documents/pdf/qpdf/p1-a-p2-b.pdf differ diff --git a/documents/pdf/qpdf/p1-a.pdf b/documents/pdf/qpdf/p1-a.pdf new file mode 100644 index 0000000..a2bea66 Binary files /dev/null and b/documents/pdf/qpdf/p1-a.pdf differ diff --git a/documents/pdf/qpdf/p1-b.pdf b/documents/pdf/qpdf/p1-b.pdf new file mode 100644 index 0000000..96e8c7a Binary files /dev/null and b/documents/pdf/qpdf/p1-b.pdf differ diff --git a/documents/pdf/qpdf/page-api-1-out.pdf b/documents/pdf/qpdf/page-api-1-out.pdf new file mode 100644 index 0000000..414e811 Binary files /dev/null and b/documents/pdf/qpdf/page-api-1-out.pdf differ diff --git a/documents/pdf/qpdf/page-api-1-out2.pdf b/documents/pdf/qpdf/page-api-1-out2.pdf new file mode 100644 index 0000000..0590fbc Binary files /dev/null and b/documents/pdf/qpdf/page-api-1-out2.pdf differ diff --git a/documents/pdf/qpdf/page-api-1-out3.pdf b/documents/pdf/qpdf/page-api-1-out3.pdf new file mode 100644 index 0000000..f19dbde Binary files /dev/null and b/documents/pdf/qpdf/page-api-1-out3.pdf differ diff --git a/documents/pdf/qpdf/page-api-1.pdf b/documents/pdf/qpdf/page-api-1.pdf new file mode 100644 index 0000000..d49f307 Binary files /dev/null and b/documents/pdf/qpdf/page-api-1.pdf differ diff --git a/documents/pdf/qpdf/page-api-2.pdf b/documents/pdf/qpdf/page-api-2.pdf new file mode 100644 index 0000000..1064df1 Binary files /dev/null and b/documents/pdf/qpdf/page-api-2.pdf differ diff --git a/documents/pdf/qpdf/page-inherit-mediabox-out.pdf b/documents/pdf/qpdf/page-inherit-mediabox-out.pdf new file mode 100644 index 0000000..71a8d28 Binary files /dev/null and b/documents/pdf/qpdf/page-inherit-mediabox-out.pdf differ diff --git a/documents/pdf/qpdf/page-inherit-mediabox.pdf b/documents/pdf/qpdf/page-inherit-mediabox.pdf new file mode 100644 index 0000000..6d041d6 Binary files /dev/null and b/documents/pdf/qpdf/page-inherit-mediabox.pdf differ diff --git a/documents/pdf/qpdf/page-labels-and-outlines.pdf b/documents/pdf/qpdf/page-labels-and-outlines.pdf new file mode 100644 index 0000000..62de657 Binary files /dev/null and b/documents/pdf/qpdf/page-labels-and-outlines.pdf differ diff --git a/documents/pdf/qpdf/page-labels-no-zero.pdf b/documents/pdf/qpdf/page-labels-no-zero.pdf new file mode 100644 index 0000000..bc01ddc Binary files /dev/null and b/documents/pdf/qpdf/page-labels-no-zero.pdf differ diff --git a/documents/pdf/qpdf/page-labels-num-tree-damaged.pdf b/documents/pdf/qpdf/page-labels-num-tree-damaged.pdf new file mode 100644 index 0000000..5ec839f Binary files /dev/null and b/documents/pdf/qpdf/page-labels-num-tree-damaged.pdf differ diff --git a/documents/pdf/qpdf/page-labels-num-tree.pdf b/documents/pdf/qpdf/page-labels-num-tree.pdf new file mode 100644 index 0000000..1d0a3e1 Binary files /dev/null and b/documents/pdf/qpdf/page-labels-num-tree.pdf differ diff --git a/documents/pdf/qpdf/page-missing-mediabox-out.pdf b/documents/pdf/qpdf/page-missing-mediabox-out.pdf new file mode 100644 index 0000000..6a6bf11 Binary files /dev/null and b/documents/pdf/qpdf/page-missing-mediabox-out.pdf differ diff --git a/documents/pdf/qpdf/page-no-content.pdf b/documents/pdf/qpdf/page-no-content.pdf new file mode 100644 index 0000000..d833597 Binary files /dev/null and b/documents/pdf/qpdf/page-no-content.pdf differ diff --git a/documents/pdf/qpdf/page-with-no-resources.pdf b/documents/pdf/qpdf/page-with-no-resources.pdf new file mode 100644 index 0000000..eccccae Binary files /dev/null and b/documents/pdf/qpdf/page-with-no-resources.pdf differ diff --git a/documents/pdf/qpdf/pages-copy-encryption.pdf b/documents/pdf/qpdf/pages-copy-encryption.pdf new file mode 100644 index 0000000..25aa16c Binary files /dev/null and b/documents/pdf/qpdf/pages-copy-encryption.pdf differ diff --git a/documents/pdf/qpdf/pages-is-page-out.pdf b/documents/pdf/qpdf/pages-is-page-out.pdf new file mode 100644 index 0000000..82b2a07 Binary files /dev/null and b/documents/pdf/qpdf/pages-is-page-out.pdf differ diff --git a/documents/pdf/qpdf/pages-is-page.pdf b/documents/pdf/qpdf/pages-is-page.pdf new file mode 100644 index 0000000..2e561ce Binary files /dev/null and b/documents/pdf/qpdf/pages-is-page.pdf differ diff --git a/documents/pdf/qpdf/pages-loop.pdf b/documents/pdf/qpdf/pages-loop.pdf new file mode 100644 index 0000000..a72833b Binary files /dev/null and b/documents/pdf/qpdf/pages-loop.pdf differ diff --git a/documents/pdf/qpdf/pclm-in.pdf b/documents/pdf/qpdf/pclm-in.pdf new file mode 100644 index 0000000..6fac605 Binary files /dev/null and b/documents/pdf/qpdf/pclm-in.pdf differ diff --git a/documents/pdf/qpdf/pclm-out.pdf b/documents/pdf/qpdf/pclm-out.pdf new file mode 100644 index 0000000..2db9af8 Binary files /dev/null and b/documents/pdf/qpdf/pclm-out.pdf differ diff --git a/documents/pdf/qpdf/png-filters-1-column.pdf b/documents/pdf/qpdf/png-filters-1-column.pdf new file mode 100644 index 0000000..67b42b1 Binary files /dev/null and b/documents/pdf/qpdf/png-filters-1-column.pdf differ diff --git a/documents/pdf/qpdf/png-filters-decoded.pdf b/documents/pdf/qpdf/png-filters-decoded.pdf new file mode 100644 index 0000000..219d65a Binary files /dev/null and b/documents/pdf/qpdf/png-filters-decoded.pdf differ diff --git a/documents/pdf/qpdf/png-filters-no-columns-decoded.pdf b/documents/pdf/qpdf/png-filters-no-columns-decoded.pdf new file mode 100644 index 0000000..768c3c2 Binary files /dev/null and b/documents/pdf/qpdf/png-filters-no-columns-decoded.pdf differ diff --git a/documents/pdf/qpdf/png-filters-no-columns.pdf b/documents/pdf/qpdf/png-filters-no-columns.pdf new file mode 100644 index 0000000..0da75fa Binary files /dev/null and b/documents/pdf/qpdf/png-filters-no-columns.pdf differ diff --git a/documents/pdf/qpdf/png-filters.pdf b/documents/pdf/qpdf/png-filters.pdf new file mode 100644 index 0000000..b22980d Binary files /dev/null and b/documents/pdf/qpdf/png-filters.pdf differ diff --git a/documents/pdf/qpdf/pound-in-name.pdf b/documents/pdf/qpdf/pound-in-name.pdf new file mode 100644 index 0000000..37ef821 Binary files /dev/null and b/documents/pdf/qpdf/pound-in-name.pdf differ diff --git a/documents/pdf/qpdf/qpdf-ctest-44-45.pdf b/documents/pdf/qpdf/qpdf-ctest-44-45.pdf new file mode 100644 index 0000000..21a2ef6 Binary files /dev/null and b/documents/pdf/qpdf/qpdf-ctest-44-45.pdf differ diff --git a/documents/pdf/qpdf/qpdfjob-ctest-wide.pdf b/documents/pdf/qpdf/qpdfjob-ctest-wide.pdf new file mode 100644 index 0000000..f38a92b Binary files /dev/null and b/documents/pdf/qpdf/qpdfjob-ctest-wide.pdf differ diff --git a/documents/pdf/qpdf/qpdfjob-ctest2.pdf b/documents/pdf/qpdf/qpdfjob-ctest2.pdf new file mode 100644 index 0000000..025dba8 Binary files /dev/null and b/documents/pdf/qpdf/qpdfjob-ctest2.pdf differ diff --git a/documents/pdf/qpdf/qpdfjob-ctest3.pdf b/documents/pdf/qpdf/qpdfjob-ctest3.pdf new file mode 100644 index 0000000..26e02ec Binary files /dev/null and b/documents/pdf/qpdf/qpdfjob-ctest3.pdf differ diff --git a/documents/pdf/qpdf/qpdfjob-ctest4.pdf b/documents/pdf/qpdf/qpdfjob-ctest4.pdf new file mode 100644 index 0000000..fb07fca Binary files /dev/null and b/documents/pdf/qpdf/qpdfjob-ctest4.pdf differ diff --git a/documents/pdf/qpdf/qstream.pdf b/documents/pdf/qpdf/qstream.pdf new file mode 100644 index 0000000..a613637 Binary files /dev/null and b/documents/pdf/qpdf/qstream.pdf differ diff --git a/documents/pdf/qpdf/really-shared-images-pages-out.pdf b/documents/pdf/qpdf/really-shared-images-pages-out.pdf new file mode 100644 index 0000000..2397f96 Binary files /dev/null and b/documents/pdf/qpdf/really-shared-images-pages-out.pdf differ diff --git a/documents/pdf/qpdf/recover-xref-stream-recovered.pdf b/documents/pdf/qpdf/recover-xref-stream-recovered.pdf new file mode 100644 index 0000000..60c1c57 Binary files /dev/null and b/documents/pdf/qpdf/recover-xref-stream-recovered.pdf differ diff --git a/documents/pdf/qpdf/recover-xref-stream.pdf b/documents/pdf/qpdf/recover-xref-stream.pdf new file mode 100644 index 0000000..5210e0e Binary files /dev/null and b/documents/pdf/qpdf/recover-xref-stream.pdf differ diff --git a/documents/pdf/qpdf/remove-acroform-out.pdf b/documents/pdf/qpdf/remove-acroform-out.pdf new file mode 100644 index 0000000..db05c45 Binary files /dev/null and b/documents/pdf/qpdf/remove-acroform-out.pdf differ diff --git a/documents/pdf/qpdf/remove-info-no-moddate.pdf b/documents/pdf/qpdf/remove-info-no-moddate.pdf new file mode 100644 index 0000000..32f82fd Binary files /dev/null and b/documents/pdf/qpdf/remove-info-no-moddate.pdf differ diff --git a/documents/pdf/qpdf/remove-info.pdf b/documents/pdf/qpdf/remove-info.pdf new file mode 100644 index 0000000..712b08e Binary files /dev/null and b/documents/pdf/qpdf/remove-info.pdf differ diff --git a/documents/pdf/qpdf/remove-labels.pdf b/documents/pdf/qpdf/remove-labels.pdf new file mode 100644 index 0000000..16fe708 Binary files /dev/null and b/documents/pdf/qpdf/remove-labels.pdf differ diff --git a/documents/pdf/qpdf/remove-metadata-no-moddate.pdf b/documents/pdf/qpdf/remove-metadata-no-moddate.pdf new file mode 100644 index 0000000..680ff9d Binary files /dev/null and b/documents/pdf/qpdf/remove-metadata-no-moddate.pdf differ diff --git a/documents/pdf/qpdf/remove-metadata.pdf b/documents/pdf/qpdf/remove-metadata.pdf new file mode 100644 index 0000000..638529e Binary files /dev/null and b/documents/pdf/qpdf/remove-metadata.pdf differ diff --git a/documents/pdf/qpdf/remove-multiple-attachments.pdf b/documents/pdf/qpdf/remove-multiple-attachments.pdf new file mode 100644 index 0000000..c7531ed Binary files /dev/null and b/documents/pdf/qpdf/remove-multiple-attachments.pdf differ diff --git a/documents/pdf/qpdf/remove-structure-out.pdf b/documents/pdf/qpdf/remove-structure-out.pdf new file mode 100644 index 0000000..1970aed Binary files /dev/null and b/documents/pdf/qpdf/remove-structure-out.pdf differ diff --git a/documents/pdf/qpdf/remove-structure.pdf b/documents/pdf/qpdf/remove-structure.pdf new file mode 100644 index 0000000..2a1da24 Binary files /dev/null and b/documents/pdf/qpdf/remove-structure.pdf differ diff --git a/documents/pdf/qpdf/replace-input.pdf b/documents/pdf/qpdf/replace-input.pdf new file mode 100644 index 0000000..0b326cf Binary files /dev/null and b/documents/pdf/qpdf/replace-input.pdf differ diff --git a/documents/pdf/qpdf/replace-with-stream-updated.pdf b/documents/pdf/qpdf/replace-with-stream-updated.pdf new file mode 100644 index 0000000..e000e62 Binary files /dev/null and b/documents/pdf/qpdf/replace-with-stream-updated.pdf differ diff --git a/documents/pdf/qpdf/replaced-stream-data-flate.pdf b/documents/pdf/qpdf/replaced-stream-data-flate.pdf new file mode 100644 index 0000000..090c471 Binary files /dev/null and b/documents/pdf/qpdf/replaced-stream-data-flate.pdf differ diff --git a/documents/pdf/qpdf/replaced-stream-data.pdf b/documents/pdf/qpdf/replaced-stream-data.pdf new file mode 100644 index 0000000..684bb6f Binary files /dev/null and b/documents/pdf/qpdf/replaced-stream-data.pdf differ diff --git a/documents/pdf/qpdf/reserved-objects.pdf b/documents/pdf/qpdf/reserved-objects.pdf new file mode 100644 index 0000000..46e5e80 Binary files /dev/null and b/documents/pdf/qpdf/reserved-objects.pdf differ diff --git a/documents/pdf/qpdf/resolved-appearance-conflicts-generate.pdf b/documents/pdf/qpdf/resolved-appearance-conflicts-generate.pdf new file mode 100644 index 0000000..f998b20 Binary files /dev/null and b/documents/pdf/qpdf/resolved-appearance-conflicts-generate.pdf differ diff --git a/documents/pdf/qpdf/resolved-appearance-conflicts.pdf b/documents/pdf/qpdf/resolved-appearance-conflicts.pdf new file mode 100644 index 0000000..4d555b6 Binary files /dev/null and b/documents/pdf/qpdf/resolved-appearance-conflicts.pdf differ diff --git a/documents/pdf/qpdf/resolved-field-conflicts.pdf b/documents/pdf/qpdf/resolved-field-conflicts.pdf new file mode 100644 index 0000000..4638584 Binary files /dev/null and b/documents/pdf/qpdf/resolved-field-conflicts.pdf differ diff --git a/documents/pdf/qpdf/resource-from-dr-out.pdf b/documents/pdf/qpdf/resource-from-dr-out.pdf new file mode 100644 index 0000000..c7c8bd6 Binary files /dev/null and b/documents/pdf/qpdf/resource-from-dr-out.pdf differ diff --git a/documents/pdf/qpdf/resource-from-dr.pdf b/documents/pdf/qpdf/resource-from-dr.pdf new file mode 100644 index 0000000..eee9673 Binary files /dev/null and b/documents/pdf/qpdf/resource-from-dr.pdf differ diff --git a/documents/pdf/qpdf/reuse-xref-stream.pdf b/documents/pdf/qpdf/reuse-xref-stream.pdf new file mode 100644 index 0000000..df990b7 Binary files /dev/null and b/documents/pdf/qpdf/reuse-xref-stream.pdf differ diff --git a/documents/pdf/qpdf/rotated-shared-annotations-1.pdf b/documents/pdf/qpdf/rotated-shared-annotations-1.pdf new file mode 100644 index 0000000..441d012 Binary files /dev/null and b/documents/pdf/qpdf/rotated-shared-annotations-1.pdf differ diff --git a/documents/pdf/qpdf/rotated-shared-annotations-2.pdf b/documents/pdf/qpdf/rotated-shared-annotations-2.pdf new file mode 100644 index 0000000..673dde0 Binary files /dev/null and b/documents/pdf/qpdf/rotated-shared-annotations-2.pdf differ diff --git a/documents/pdf/qpdf/rotated.pdf b/documents/pdf/qpdf/rotated.pdf new file mode 100644 index 0000000..fd4bd41 Binary files /dev/null and b/documents/pdf/qpdf/rotated.pdf differ diff --git a/documents/pdf/qpdf/sample-form-out.pdf b/documents/pdf/qpdf/sample-form-out.pdf new file mode 100644 index 0000000..8244afc Binary files /dev/null and b/documents/pdf/qpdf/sample-form-out.pdf differ diff --git a/documents/pdf/qpdf/sample-form.pdf b/documents/pdf/qpdf/sample-form.pdf new file mode 100644 index 0000000..8c48ec3 Binary files /dev/null and b/documents/pdf/qpdf/sample-form.pdf differ diff --git a/documents/pdf/qpdf/shallow-array-out.pdf b/documents/pdf/qpdf/shallow-array-out.pdf new file mode 100644 index 0000000..24fb76d Binary files /dev/null and b/documents/pdf/qpdf/shallow-array-out.pdf differ diff --git a/documents/pdf/qpdf/shallow-array.pdf b/documents/pdf/qpdf/shallow-array.pdf new file mode 100644 index 0000000..d2288b1 Binary files /dev/null and b/documents/pdf/qpdf/shallow-array.pdf differ diff --git a/documents/pdf/qpdf/shared-font-xobject-split-1.pdf b/documents/pdf/qpdf/shared-font-xobject-split-1.pdf new file mode 100644 index 0000000..0116de7 Binary files /dev/null and b/documents/pdf/qpdf/shared-font-xobject-split-1.pdf differ diff --git a/documents/pdf/qpdf/shared-font-xobject-split-2.pdf b/documents/pdf/qpdf/shared-font-xobject-split-2.pdf new file mode 100644 index 0000000..dd48ec9 Binary files /dev/null and b/documents/pdf/qpdf/shared-font-xobject-split-2.pdf differ diff --git a/documents/pdf/qpdf/shared-font-xobject-split-3.pdf b/documents/pdf/qpdf/shared-font-xobject-split-3.pdf new file mode 100644 index 0000000..6b9b527 Binary files /dev/null and b/documents/pdf/qpdf/shared-font-xobject-split-3.pdf differ diff --git a/documents/pdf/qpdf/shared-font-xobject-split-4.pdf b/documents/pdf/qpdf/shared-font-xobject-split-4.pdf new file mode 100644 index 0000000..0014fb9 Binary files /dev/null and b/documents/pdf/qpdf/shared-font-xobject-split-4.pdf differ diff --git a/documents/pdf/qpdf/shared-font-xobject.pdf b/documents/pdf/qpdf/shared-font-xobject.pdf new file mode 100644 index 0000000..116d045 Binary files /dev/null and b/documents/pdf/qpdf/shared-font-xobject.pdf differ diff --git a/documents/pdf/qpdf/shared-form-images-merged.pdf b/documents/pdf/qpdf/shared-form-images-merged.pdf new file mode 100644 index 0000000..7a5a191 Binary files /dev/null and b/documents/pdf/qpdf/shared-form-images-merged.pdf differ diff --git a/documents/pdf/qpdf/shared-form-images-xobject.pdf b/documents/pdf/qpdf/shared-form-images-xobject.pdf new file mode 100644 index 0000000..f124f33 Binary files /dev/null and b/documents/pdf/qpdf/shared-form-images-xobject.pdf differ diff --git a/documents/pdf/qpdf/shared-form-images.pdf b/documents/pdf/qpdf/shared-form-images.pdf new file mode 100644 index 0000000..8e8c91f Binary files /dev/null and b/documents/pdf/qpdf/shared-form-images.pdf differ diff --git a/documents/pdf/qpdf/shared-form-split-3.pdf b/documents/pdf/qpdf/shared-form-split-3.pdf new file mode 100644 index 0000000..087f446 Binary files /dev/null and b/documents/pdf/qpdf/shared-form-split-3.pdf differ diff --git a/documents/pdf/qpdf/shared-form-split-4.pdf b/documents/pdf/qpdf/shared-form-split-4.pdf new file mode 100644 index 0000000..edc3768 Binary files /dev/null and b/documents/pdf/qpdf/shared-form-split-4.pdf differ diff --git a/documents/pdf/qpdf/shared-form-split-5.pdf b/documents/pdf/qpdf/shared-form-split-5.pdf new file mode 100644 index 0000000..16b2c8a Binary files /dev/null and b/documents/pdf/qpdf/shared-form-split-5.pdf differ diff --git a/documents/pdf/qpdf/shared-form-split-6.pdf b/documents/pdf/qpdf/shared-form-split-6.pdf new file mode 100644 index 0000000..4724c04 Binary files /dev/null and b/documents/pdf/qpdf/shared-form-split-6.pdf differ diff --git a/documents/pdf/qpdf/shared-form-xobject-split-1.pdf b/documents/pdf/qpdf/shared-form-xobject-split-1.pdf new file mode 100644 index 0000000..841a8b4 Binary files /dev/null and b/documents/pdf/qpdf/shared-form-xobject-split-1.pdf differ diff --git a/documents/pdf/qpdf/shared-form-xobject-split-2.pdf b/documents/pdf/qpdf/shared-form-xobject-split-2.pdf new file mode 100644 index 0000000..e4e597d Binary files /dev/null and b/documents/pdf/qpdf/shared-form-xobject-split-2.pdf differ diff --git a/documents/pdf/qpdf/shared-images-errors-1-3-out.pdf b/documents/pdf/qpdf/shared-images-errors-1-3-out.pdf new file mode 100644 index 0000000..2c39adc Binary files /dev/null and b/documents/pdf/qpdf/shared-images-errors-1-3-out.pdf differ diff --git a/documents/pdf/qpdf/shared-images-errors-1-out.pdf b/documents/pdf/qpdf/shared-images-errors-1-out.pdf new file mode 100644 index 0000000..d812792 Binary files /dev/null and b/documents/pdf/qpdf/shared-images-errors-1-out.pdf differ diff --git a/documents/pdf/qpdf/shared-images-errors-2-out.pdf b/documents/pdf/qpdf/shared-images-errors-2-out.pdf new file mode 100644 index 0000000..7aa7a21 Binary files /dev/null and b/documents/pdf/qpdf/shared-images-errors-2-out.pdf differ diff --git a/documents/pdf/qpdf/shared-images-errors.pdf b/documents/pdf/qpdf/shared-images-errors.pdf new file mode 100644 index 0000000..ddfb891 Binary files /dev/null and b/documents/pdf/qpdf/shared-images-errors.pdf differ diff --git a/documents/pdf/qpdf/shared-images-pages-out.pdf b/documents/pdf/qpdf/shared-images-pages-out.pdf new file mode 100644 index 0000000..aa0346d Binary files /dev/null and b/documents/pdf/qpdf/shared-images-pages-out.pdf differ diff --git a/documents/pdf/qpdf/shared-images.pdf b/documents/pdf/qpdf/shared-images.pdf new file mode 100644 index 0000000..475ac01 Binary files /dev/null and b/documents/pdf/qpdf/shared-images.pdf differ diff --git a/documents/pdf/qpdf/shared-split-01-04.pdf b/documents/pdf/qpdf/shared-split-01-04.pdf new file mode 100644 index 0000000..3e1e168 Binary files /dev/null and b/documents/pdf/qpdf/shared-split-01-04.pdf differ diff --git a/documents/pdf/qpdf/shared-split-05-08.pdf b/documents/pdf/qpdf/shared-split-05-08.pdf new file mode 100644 index 0000000..c70ff9f Binary files /dev/null and b/documents/pdf/qpdf/shared-split-05-08.pdf differ diff --git a/documents/pdf/qpdf/shared-split-09-10.pdf b/documents/pdf/qpdf/shared-split-09-10.pdf new file mode 100644 index 0000000..62435ab Binary files /dev/null and b/documents/pdf/qpdf/shared-split-09-10.pdf differ diff --git a/documents/pdf/qpdf/short-id-linearized.pdf b/documents/pdf/qpdf/short-id-linearized.pdf new file mode 100644 index 0000000..b7e5e49 Binary files /dev/null and b/documents/pdf/qpdf/short-id-linearized.pdf differ diff --git a/documents/pdf/qpdf/short-id.pdf b/documents/pdf/qpdf/short-id.pdf new file mode 100644 index 0000000..9b4df63 Binary files /dev/null and b/documents/pdf/qpdf/short-id.pdf differ diff --git a/documents/pdf/qpdf/short-o-u.pdf b/documents/pdf/qpdf/short-o-u.pdf new file mode 100644 index 0000000..7e68be7 Binary files /dev/null and b/documents/pdf/qpdf/short-o-u.pdf differ diff --git a/documents/pdf/qpdf/small-images.pdf b/documents/pdf/qpdf/small-images.pdf new file mode 100644 index 0000000..b83a016 Binary files /dev/null and b/documents/pdf/qpdf/small-images.pdf differ diff --git a/documents/pdf/qpdf/source1.pdf b/documents/pdf/qpdf/source1.pdf new file mode 100644 index 0000000..c181a46 Binary files /dev/null and b/documents/pdf/qpdf/source1.pdf differ diff --git a/documents/pdf/qpdf/source2.pdf b/documents/pdf/qpdf/source2.pdf new file mode 100644 index 0000000..56def44 Binary files /dev/null and b/documents/pdf/qpdf/source2.pdf differ diff --git a/documents/pdf/qpdf/specialized.pdf b/documents/pdf/qpdf/specialized.pdf new file mode 100644 index 0000000..e39e5b3 Binary files /dev/null and b/documents/pdf/qpdf/specialized.pdf differ diff --git a/documents/pdf/qpdf/split-content-stream-errors.pdf b/documents/pdf/qpdf/split-content-stream-errors.pdf new file mode 100644 index 0000000..3ee4a27 Binary files /dev/null and b/documents/pdf/qpdf/split-content-stream-errors.pdf differ diff --git a/documents/pdf/qpdf/split-content-stream.pdf b/documents/pdf/qpdf/split-content-stream.pdf new file mode 100644 index 0000000..36ba46b Binary files /dev/null and b/documents/pdf/qpdf/split-content-stream.pdf differ diff --git a/documents/pdf/qpdf/split-exp-1.pdf b/documents/pdf/qpdf/split-exp-1.pdf new file mode 100644 index 0000000..f4adc98 Binary files /dev/null and b/documents/pdf/qpdf/split-exp-1.pdf differ diff --git a/documents/pdf/qpdf/split-exp-group-01-05.pdf b/documents/pdf/qpdf/split-exp-group-01-05.pdf new file mode 100644 index 0000000..b9c6eb3 Binary files /dev/null and b/documents/pdf/qpdf/split-exp-group-01-05.pdf differ diff --git a/documents/pdf/qpdf/split-exp-group-06-10.pdf b/documents/pdf/qpdf/split-exp-group-06-10.pdf new file mode 100644 index 0000000..277dbfc Binary files /dev/null and b/documents/pdf/qpdf/split-exp-group-06-10.pdf differ diff --git a/documents/pdf/qpdf/split-exp-group-11-11.pdf b/documents/pdf/qpdf/split-exp-group-11-11.pdf new file mode 100644 index 0000000..bbbcd3a Binary files /dev/null and b/documents/pdf/qpdf/split-exp-group-11-11.pdf differ diff --git a/documents/pdf/qpdf/split-nntree-out.pdf b/documents/pdf/qpdf/split-nntree-out.pdf new file mode 100644 index 0000000..34711cd Binary files /dev/null and b/documents/pdf/qpdf/split-nntree-out.pdf differ diff --git a/documents/pdf/qpdf/split-nntree.pdf b/documents/pdf/qpdf/split-nntree.pdf new file mode 100644 index 0000000..7b10372 Binary files /dev/null and b/documents/pdf/qpdf/split-nntree.pdf differ diff --git a/documents/pdf/qpdf/split-tokens-split-1-2.pdf b/documents/pdf/qpdf/split-tokens-split-1-2.pdf new file mode 100644 index 0000000..107e8c0 Binary files /dev/null and b/documents/pdf/qpdf/split-tokens-split-1-2.pdf differ diff --git a/documents/pdf/qpdf/split-tokens.pdf b/documents/pdf/qpdf/split-tokens.pdf new file mode 100644 index 0000000..cc35e56 Binary files /dev/null and b/documents/pdf/qpdf/split-tokens.pdf differ diff --git a/documents/pdf/qpdf/stamp.pdf b/documents/pdf/qpdf/stamp.pdf new file mode 100644 index 0000000..ac90c35 Binary files /dev/null and b/documents/pdf/qpdf/stamp.pdf differ diff --git a/documents/pdf/qpdf/start.pdf b/documents/pdf/qpdf/start.pdf new file mode 100644 index 0000000..173bcef Binary files /dev/null and b/documents/pdf/qpdf/start.pdf differ diff --git a/documents/pdf/qpdf/stream-data.pdf b/documents/pdf/qpdf/stream-data.pdf new file mode 100644 index 0000000..55e4a31 Binary files /dev/null and b/documents/pdf/qpdf/stream-data.pdf differ diff --git a/documents/pdf/qpdf/stream-line-enders.pdf b/documents/pdf/qpdf/stream-line-enders.pdf new file mode 100644 index 0000000..e005091 Binary files /dev/null and b/documents/pdf/qpdf/stream-line-enders.pdf differ diff --git a/documents/pdf/qpdf/streams-with-newlines.pdf b/documents/pdf/qpdf/streams-with-newlines.pdf new file mode 100644 index 0000000..d36b36f Binary files /dev/null and b/documents/pdf/qpdf/streams-with-newlines.pdf differ diff --git a/documents/pdf/qpdf/terminate-parsing.pdf b/documents/pdf/qpdf/terminate-parsing.pdf new file mode 100644 index 0000000..d471d57 Binary files /dev/null and b/documents/pdf/qpdf/terminate-parsing.pdf differ diff --git a/documents/pdf/qpdf/test102.pdf b/documents/pdf/qpdf/test102.pdf new file mode 100644 index 0000000..21c42e3 Binary files /dev/null and b/documents/pdf/qpdf/test102.pdf differ diff --git a/documents/pdf/qpdf/test14-in.pdf b/documents/pdf/qpdf/test14-in.pdf new file mode 100644 index 0000000..6e017f3 Binary files /dev/null and b/documents/pdf/qpdf/test14-in.pdf differ diff --git a/documents/pdf/qpdf/test14-out.pdf b/documents/pdf/qpdf/test14-out.pdf new file mode 100644 index 0000000..473722c Binary files /dev/null and b/documents/pdf/qpdf/test14-out.pdf differ diff --git a/documents/pdf/qpdf/test4-1.pdf b/documents/pdf/qpdf/test4-1.pdf new file mode 100644 index 0000000..e4ef044 Binary files /dev/null and b/documents/pdf/qpdf/test4-1.pdf differ diff --git a/documents/pdf/qpdf/test4-2.pdf b/documents/pdf/qpdf/test4-2.pdf new file mode 100644 index 0000000..c1e2b8c Binary files /dev/null and b/documents/pdf/qpdf/test4-2.pdf differ diff --git a/documents/pdf/qpdf/test4-3.pdf b/documents/pdf/qpdf/test4-3.pdf new file mode 100644 index 0000000..4f070d8 Binary files /dev/null and b/documents/pdf/qpdf/test4-3.pdf differ diff --git a/documents/pdf/qpdf/test4-4.pdf b/documents/pdf/qpdf/test4-4.pdf new file mode 100644 index 0000000..8e470cc Binary files /dev/null and b/documents/pdf/qpdf/test4-4.pdf differ diff --git a/documents/pdf/qpdf/test4-5.pdf b/documents/pdf/qpdf/test4-5.pdf new file mode 100644 index 0000000..2c99160 Binary files /dev/null and b/documents/pdf/qpdf/test4-5.pdf differ diff --git a/documents/pdf/qpdf/test76.pdf b/documents/pdf/qpdf/test76.pdf new file mode 100644 index 0000000..230701e Binary files /dev/null and b/documents/pdf/qpdf/test76.pdf differ diff --git a/documents/pdf/qpdf/test77.pdf b/documents/pdf/qpdf/test77.pdf new file mode 100644 index 0000000..237d376 Binary files /dev/null and b/documents/pdf/qpdf/test77.pdf differ diff --git a/documents/pdf/qpdf/test78.pdf b/documents/pdf/qpdf/test78.pdf new file mode 100644 index 0000000..3ccf75c Binary files /dev/null and b/documents/pdf/qpdf/test78.pdf differ diff --git a/documents/pdf/qpdf/test79.pdf b/documents/pdf/qpdf/test79.pdf new file mode 100644 index 0000000..352a29a Binary files /dev/null and b/documents/pdf/qpdf/test79.pdf differ diff --git a/documents/pdf/qpdf/test80a1.pdf b/documents/pdf/qpdf/test80a1.pdf new file mode 100644 index 0000000..7483397 Binary files /dev/null and b/documents/pdf/qpdf/test80a1.pdf differ diff --git a/documents/pdf/qpdf/test80a2.pdf b/documents/pdf/qpdf/test80a2.pdf new file mode 100644 index 0000000..8dfb9b2 Binary files /dev/null and b/documents/pdf/qpdf/test80a2.pdf differ diff --git a/documents/pdf/qpdf/test80b1.pdf b/documents/pdf/qpdf/test80b1.pdf new file mode 100644 index 0000000..8445590 Binary files /dev/null and b/documents/pdf/qpdf/test80b1.pdf differ diff --git a/documents/pdf/qpdf/test80b2.pdf b/documents/pdf/qpdf/test80b2.pdf new file mode 100644 index 0000000..8a43821 Binary files /dev/null and b/documents/pdf/qpdf/test80b2.pdf differ diff --git a/documents/pdf/qpdf/test84.pdf b/documents/pdf/qpdf/test84.pdf new file mode 100644 index 0000000..77cb1d6 Binary files /dev/null and b/documents/pdf/qpdf/test84.pdf differ diff --git a/documents/pdf/qpdf/three-files-2-3-4-collate-out.pdf b/documents/pdf/qpdf/three-files-2-3-4-collate-out.pdf new file mode 100644 index 0000000..2458441 Binary files /dev/null and b/documents/pdf/qpdf/three-files-2-3-4-collate-out.pdf differ diff --git a/documents/pdf/qpdf/three-files-2-collate-out.pdf b/documents/pdf/qpdf/three-files-2-collate-out.pdf new file mode 100644 index 0000000..93ca241 Binary files /dev/null and b/documents/pdf/qpdf/three-files-2-collate-out.pdf differ diff --git a/documents/pdf/qpdf/three-files-collate-out.pdf b/documents/pdf/qpdf/three-files-collate-out.pdf new file mode 100644 index 0000000..64d5baa Binary files /dev/null and b/documents/pdf/qpdf/three-files-collate-out.pdf differ diff --git a/documents/pdf/qpdf/tiff-predictor.pdf b/documents/pdf/qpdf/tiff-predictor.pdf new file mode 100644 index 0000000..1963241 Binary files /dev/null and b/documents/pdf/qpdf/tiff-predictor.pdf differ diff --git a/documents/pdf/qpdf/to-rotate.pdf b/documents/pdf/qpdf/to-rotate.pdf new file mode 100644 index 0000000..2ba1489 Binary files /dev/null and b/documents/pdf/qpdf/to-rotate.pdf differ diff --git a/documents/pdf/qpdf/token-filters-out.pdf b/documents/pdf/qpdf/token-filters-out.pdf new file mode 100644 index 0000000..379fb66 Binary files /dev/null and b/documents/pdf/qpdf/token-filters-out.pdf differ diff --git a/documents/pdf/qpdf/tokenize-content-streams.pdf b/documents/pdf/qpdf/tokenize-content-streams.pdf new file mode 100644 index 0000000..08194d4 Binary files /dev/null and b/documents/pdf/qpdf/tokenize-content-streams.pdf differ diff --git a/documents/pdf/qpdf/tokens.pdf b/documents/pdf/qpdf/tokens.pdf new file mode 100644 index 0000000..15aded9 Binary files /dev/null and b/documents/pdf/qpdf/tokens.pdf differ diff --git a/documents/pdf/qpdf/unfilterable-with-crypt.pdf b/documents/pdf/qpdf/unfilterable-with-crypt.pdf new file mode 100644 index 0000000..3316ac9 Binary files /dev/null and b/documents/pdf/qpdf/unfilterable-with-crypt.pdf differ diff --git a/documents/pdf/qpdf/unfilterable.pdf b/documents/pdf/qpdf/unfilterable.pdf new file mode 100644 index 0000000..06fbb5a Binary files /dev/null and b/documents/pdf/qpdf/unfilterable.pdf differ diff --git a/documents/pdf/qpdf/unique-resources.pdf b/documents/pdf/qpdf/unique-resources.pdf new file mode 100644 index 0000000..0848ae1 Binary files /dev/null and b/documents/pdf/qpdf/unique-resources.pdf differ diff --git a/documents/pdf/qpdf/unreferenced-dropped.pdf b/documents/pdf/qpdf/unreferenced-dropped.pdf new file mode 100644 index 0000000..166e566 Binary files /dev/null and b/documents/pdf/qpdf/unreferenced-dropped.pdf differ diff --git a/documents/pdf/qpdf/unreferenced-indirect-scalar.pdf b/documents/pdf/qpdf/unreferenced-indirect-scalar.pdf new file mode 100644 index 0000000..dcacad8 Binary files /dev/null and b/documents/pdf/qpdf/unreferenced-indirect-scalar.pdf differ diff --git a/documents/pdf/qpdf/unreferenced-objects.pdf b/documents/pdf/qpdf/unreferenced-objects.pdf new file mode 100644 index 0000000..3bde19c Binary files /dev/null and b/documents/pdf/qpdf/unreferenced-objects.pdf differ diff --git a/documents/pdf/qpdf/unreferenced-preserved.pdf b/documents/pdf/qpdf/unreferenced-preserved.pdf new file mode 100644 index 0000000..a7c3922 Binary files /dev/null and b/documents/pdf/qpdf/unreferenced-preserved.pdf differ diff --git a/documents/pdf/qpdf/unrotated.pdf b/documents/pdf/qpdf/unrotated.pdf new file mode 100644 index 0000000..09513bc Binary files /dev/null and b/documents/pdf/qpdf/unrotated.pdf differ diff --git a/documents/pdf/qpdf/unsupported-optimization.pdf b/documents/pdf/qpdf/unsupported-optimization.pdf new file mode 100644 index 0000000..725c741 Binary files /dev/null and b/documents/pdf/qpdf/unsupported-optimization.pdf differ diff --git a/documents/pdf/qpdf/uo-1.pdf b/documents/pdf/qpdf/uo-1.pdf new file mode 100644 index 0000000..9e8dafb Binary files /dev/null and b/documents/pdf/qpdf/uo-1.pdf differ diff --git a/documents/pdf/qpdf/uo-3.pdf b/documents/pdf/qpdf/uo-3.pdf new file mode 100644 index 0000000..aee2f6b Binary files /dev/null and b/documents/pdf/qpdf/uo-3.pdf differ diff --git a/documents/pdf/qpdf/uo-4.pdf b/documents/pdf/qpdf/uo-4.pdf new file mode 100644 index 0000000..2283b35 Binary files /dev/null and b/documents/pdf/qpdf/uo-4.pdf differ diff --git a/documents/pdf/qpdf/uo-5.pdf b/documents/pdf/qpdf/uo-5.pdf new file mode 100644 index 0000000..b545942 Binary files /dev/null and b/documents/pdf/qpdf/uo-5.pdf differ diff --git a/documents/pdf/qpdf/uo-6.pdf b/documents/pdf/qpdf/uo-6.pdf new file mode 100644 index 0000000..dc895cc Binary files /dev/null and b/documents/pdf/qpdf/uo-6.pdf differ diff --git a/documents/pdf/qpdf/uo-7.pdf b/documents/pdf/qpdf/uo-7.pdf new file mode 100644 index 0000000..1b5a8e3 Binary files /dev/null and b/documents/pdf/qpdf/uo-7.pdf differ diff --git a/documents/pdf/qpdf/uo-8.pdf b/documents/pdf/qpdf/uo-8.pdf new file mode 100644 index 0000000..ae01b24 Binary files /dev/null and b/documents/pdf/qpdf/uo-8.pdf differ diff --git a/documents/pdf/qpdf/update-stream-data-updated.pdf b/documents/pdf/qpdf/update-stream-data-updated.pdf new file mode 100644 index 0000000..ec5a235 Binary files /dev/null and b/documents/pdf/qpdf/update-stream-data-updated.pdf differ diff --git a/documents/pdf/qpdf/update-stream-dict-only-updated.pdf b/documents/pdf/qpdf/update-stream-dict-only-updated.pdf new file mode 100644 index 0000000..6b95121 Binary files /dev/null and b/documents/pdf/qpdf/update-stream-dict-only-updated.pdf differ diff --git a/documents/pdf/qpdf/utf16le.pdf b/documents/pdf/qpdf/utf16le.pdf new file mode 100644 index 0000000..665abba Binary files /dev/null and b/documents/pdf/qpdf/utf16le.pdf differ diff --git a/documents/pdf/qpdf/v4-aes-clearmeta.pdf b/documents/pdf/qpdf/v4-aes-clearmeta.pdf new file mode 100644 index 0000000..f819a3b Binary files /dev/null and b/documents/pdf/qpdf/v4-aes-clearmeta.pdf differ diff --git a/documents/pdf/qpdf/v4-aes.pdf b/documents/pdf/qpdf/v4-aes.pdf new file mode 100644 index 0000000..b7305ea Binary files /dev/null and b/documents/pdf/qpdf/v4-aes.pdf differ diff --git a/documents/pdf/qpdf/v4-clearmeta.pdf b/documents/pdf/qpdf/v4-clearmeta.pdf new file mode 100644 index 0000000..12a658d Binary files /dev/null and b/documents/pdf/qpdf/v4-clearmeta.pdf differ diff --git a/documents/pdf/qpdf/v4.pdf b/documents/pdf/qpdf/v4.pdf new file mode 100644 index 0000000..4d0d056 Binary files /dev/null and b/documents/pdf/qpdf/v4.pdf differ diff --git a/documents/pdf/qpdf/various-updates-updated.pdf b/documents/pdf/qpdf/various-updates-updated.pdf new file mode 100644 index 0000000..bc6eb32 Binary files /dev/null and b/documents/pdf/qpdf/various-updates-updated.pdf differ diff --git a/documents/pdf/qpdf/warn-replace.pdf b/documents/pdf/qpdf/warn-replace.pdf new file mode 100644 index 0000000..6f666f3 Binary files /dev/null and b/documents/pdf/qpdf/warn-replace.pdf differ diff --git a/documents/pdf/qpdf/warning.pdf b/documents/pdf/qpdf/warning.pdf new file mode 100644 index 0000000..f08d704 Binary files /dev/null and b/documents/pdf/qpdf/warning.pdf differ diff --git a/documents/pdf/qpdf/weird-tokens.pdf b/documents/pdf/qpdf/weird-tokens.pdf new file mode 100644 index 0000000..fee91b2 Binary files /dev/null and b/documents/pdf/qpdf/weird-tokens.pdf differ diff --git a/documents/pdf/qpdf/xref-errors.pdf b/documents/pdf/qpdf/xref-errors.pdf new file mode 100644 index 0000000..e48d3c5 Binary files /dev/null and b/documents/pdf/qpdf/xref-errors.pdf differ diff --git a/documents/pdf/qpdf/xref-range.pdf b/documents/pdf/qpdf/xref-range.pdf new file mode 100644 index 0000000..b07682e Binary files /dev/null and b/documents/pdf/qpdf/xref-range.pdf differ diff --git a/documents/pdf/qpdf/xref-with-short-size.pdf b/documents/pdf/qpdf/xref-with-short-size.pdf new file mode 100644 index 0000000..fc0950b Binary files /dev/null and b/documents/pdf/qpdf/xref-with-short-size.pdf differ diff --git a/documents/pdf/qpdf/zero-offset.pdf b/documents/pdf/qpdf/zero-offset.pdf new file mode 100644 index 0000000..f71e027 Binary files /dev/null and b/documents/pdf/qpdf/zero-offset.pdf differ diff --git a/documents/pdf/qpdf/zlib-9.pdf b/documents/pdf/qpdf/zlib-9.pdf new file mode 100644 index 0000000..bc55858 Binary files /dev/null and b/documents/pdf/qpdf/zlib-9.pdf differ diff --git a/documents/pdf/qpdf/zlib-new-id.pdf b/documents/pdf/qpdf/zlib-new-id.pdf new file mode 100644 index 0000000..19bc2de Binary files /dev/null and b/documents/pdf/qpdf/zlib-new-id.pdf differ diff --git a/documents/pdf/qpdf/zlib-new-id1.pdf b/documents/pdf/qpdf/zlib-new-id1.pdf new file mode 100644 index 0000000..ecce05a Binary files /dev/null and b/documents/pdf/qpdf/zlib-new-id1.pdf differ diff --git a/documents/pdf/qpdf/zlib-new-id2.pdf b/documents/pdf/qpdf/zlib-new-id2.pdf new file mode 100644 index 0000000..1b07c14 Binary files /dev/null and b/documents/pdf/qpdf/zlib-new-id2.pdf differ diff --git a/documents/pdf/qpdf/zlib-ng.pdf b/documents/pdf/qpdf/zlib-ng.pdf new file mode 100644 index 0000000..ef0a53c Binary files /dev/null and b/documents/pdf/qpdf/zlib-ng.pdf differ diff --git a/documents/pdf/qpdf/zlib.pdf b/documents/pdf/qpdf/zlib.pdf new file mode 100644 index 0000000..6755399 Binary files /dev/null and b/documents/pdf/qpdf/zlib.pdf differ