aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog23
-rw-r--r--include/qpdf/QPDFAcroFormDocumentHelper.hh10
-rw-r--r--include/qpdf/QPDFFormFieldObjectHelper.hh14
-rw-r--r--libqpdf/QPDFAcroFormDocumentHelper.cc45
-rw-r--r--libqpdf/QPDFFormFieldObjectHelper.cc301
-rw-r--r--qpdf/qpdf.cc38
-rw-r--r--qpdf/qpdf.testcov4
-rw-r--r--qpdf/qtest/qpdf.test51
-rw-r--r--qpdf/qtest/qpdf/appearances-1.pdf3853
-rw-r--r--qpdf/qtest/qpdf/appearances-11.pdf3853
-rw-r--r--qpdf/qtest/qpdf/appearances-12.pdf3853
-rw-r--r--qpdf/qtest/qpdf/appearances-2.pdf3853
-rw-r--r--qpdf/qtest/qpdf/appearances-a.pdf3278
-rw-r--r--qpdf/qtest/qpdf/appearances-b.pdf3853
-rw-r--r--qpdf/qtest/qpdf/appearances-quack.pdf3853
-rw-r--r--qpdf/qtest/qpdf/json-need-appearances-acroform.out2
-rw-r--r--qpdf/qtest/qpdf/more-choices.pdf3788
-rw-r--r--qpdf/qtest/qpdf/need-appearances-out.pdf390
-rw-r--r--qpdf/qtest/qpdf/need-appearances.pdf382
-rw-r--r--qpdf/test_driver.cc26
20 files changed, 31076 insertions, 394 deletions
diff --git a/ChangeLog b/ChangeLog
index 9eedd250..2c73731a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,28 @@
2019-01-03 Jay Berkenbilt <ejb@ql.org>
+ * Fix behavior of form field value setting to handle the following
+ cases:
+ - Strings are always written as UTF-16
+ - Check boxes and radio buttons are handled properly with
+ synchronization of values and appearance states
+
+ * Define constants in qpdf/Constants.h for interpretation of
+ annotation and form field flags
+
+ * Add QPDFAnnotationObjectHelper::getFlags
+
+ * Add many new methods to QPDFFormFieldObjectHelper for querying
+ flags and field types
+
+ * Add new methods for appearance stream generation. See comments
+ in QPDFFormFieldObjectHelper.hh for generateAppearance() for a
+ description of limitations.
+ - QPDFAcroFormDocumentHelper::generateAppearancesIfNeeded
+ - QPDFFormFieldObjectHelper::generateAppearance
+
+ * Bug fix: when writing form field values, always write string
+ values encoded as UTF-16.
+
* Add method QUtil::utf8_to_ascii, which returns an ASCII string
for a UTF-8 string, replacing out-of-range characters with a
specified substitute.
diff --git a/include/qpdf/QPDFAcroFormDocumentHelper.hh b/include/qpdf/QPDFAcroFormDocumentHelper.hh
index 3a308467..281056b9 100644
--- a/include/qpdf/QPDFAcroFormDocumentHelper.hh
+++ b/include/qpdf/QPDFAcroFormDocumentHelper.hh
@@ -157,6 +157,16 @@ class QPDFAcroFormDocumentHelper: public QPDFDocumentHelper
QPDF_DLL
void setNeedAppearances(bool);
+ // If /NeedAppearances is false, do nothing. Otherwise generate
+ // appearance streams for all widget annotations that need them.
+ // See comments in QPDFFormFieldObjectHelper.hh for
+ // generateAppearance for limitations. For checkbox and radio
+ // button fields, this code ensures that appearance state is
+ // consistent with the field's value and uses any pre-existing
+ // appearance streams.
+ QPDF_DLL
+ void generateAppearancesIfNeeded();
+
private:
void analyze();
void traverseField(QPDFObjectHandle field,
diff --git a/include/qpdf/QPDFFormFieldObjectHelper.hh b/include/qpdf/QPDFFormFieldObjectHelper.hh
index 7ab9a1c0..a03ce555 100644
--- a/include/qpdf/QPDFFormFieldObjectHelper.hh
+++ b/include/qpdf/QPDFFormFieldObjectHelper.hh
@@ -31,6 +31,8 @@
#include <qpdf/DLL.h>
#include <vector>
+class QPDFAnnotationObjectHelper;
+
class QPDFFormFieldObjectHelper: public QPDFObjectHelper
{
public:
@@ -179,9 +181,21 @@ class QPDFFormFieldObjectHelper: public QPDFObjectHelper
QPDF_DLL
void setV(std::string const& utf8_value, bool need_appearances = true);
+ // Update the appearance stream for this field. Note that qpdf's
+ // abilitiy to generate appearance streams is limited. We only
+ // generate appearance streams for streams of type text or choice.
+ // The appearance uses the default parameters provided in the
+ // file, and it only supports ASCII characters. Quadding is
+ // currently ignored. While this functionality is limited, it
+ // should do a decent job on properly constructed PDF files when
+ // field values are restricted to ASCII characters.
+ QPDF_DLL
+ void generateAppearance(QPDFAnnotationObjectHelper&);
+
private:
void setRadioButtonValue(QPDFObjectHandle name);
void setCheckBoxValue(bool value);
+ void generateTextAppearance(QPDFAnnotationObjectHelper&);
class Members
{
diff --git a/libqpdf/QPDFAcroFormDocumentHelper.cc b/libqpdf/QPDFAcroFormDocumentHelper.cc
index 46648ed9..a55f7160 100644
--- a/libqpdf/QPDFAcroFormDocumentHelper.cc
+++ b/libqpdf/QPDFAcroFormDocumentHelper.cc
@@ -285,3 +285,48 @@ QPDFAcroFormDocumentHelper::setNeedAppearances(bool val)
acroform.removeKey("/NeedAppearances");
}
}
+
+void
+QPDFAcroFormDocumentHelper::generateAppearancesIfNeeded()
+{
+ if (! getNeedAppearances())
+ {
+ return;
+ }
+
+ QPDFPageDocumentHelper pdh(this->qpdf);
+ std::vector<QPDFPageObjectHelper> pages = pdh.getAllPages();
+ for (std::vector<QPDFPageObjectHelper>::iterator page_iter =
+ pages.begin();
+ page_iter != pages.end(); ++page_iter)
+ {
+ std::vector<QPDFAnnotationObjectHelper> annotations =
+ getWidgetAnnotationsForPage(*page_iter);
+ for (std::vector<QPDFAnnotationObjectHelper>::iterator annot_iter =
+ annotations.begin();
+ annot_iter != annotations.end(); ++annot_iter)
+ {
+ QPDFAnnotationObjectHelper& aoh = *annot_iter;
+ QPDFFormFieldObjectHelper ffh =
+ getFieldForAnnotation(aoh);
+ if (ffh.getFieldType() == "/Btn")
+ {
+ // Rather than generating appearances for button
+ // fields, rely on what's already there. Just make
+ // sure /AS is consistent with /V, which we can do by
+ // resetting the value of the field back to itself.
+ // This code is referenced in a comment in
+ // QPDFFormFieldObjectHelper::generateAppearance.
+ if (ffh.isRadioButton() || ffh.isCheckbox())
+ {
+ ffh.setV(ffh.getValue());
+ }
+ }
+ else
+ {
+ ffh.generateAppearance(aoh);
+ }
+ }
+ }
+ setNeedAppearances(false);
+}
diff --git a/libqpdf/QPDFFormFieldObjectHelper.cc b/libqpdf/QPDFFormFieldObjectHelper.cc
index de3d4e1b..51696caa 100644
--- a/libqpdf/QPDFFormFieldObjectHelper.cc
+++ b/libqpdf/QPDFFormFieldObjectHelper.cc
@@ -1,6 +1,10 @@
#include <qpdf/QPDFFormFieldObjectHelper.hh>
#include <qpdf/QTC.hh>
#include <qpdf/QPDFAcroFormDocumentHelper.hh>
+#include <qpdf/QPDFAnnotationObjectHelper.hh>
+#include <qpdf/QUtil.hh>
+#include <qpdf/Pl_QPDFTokenizer.hh>
+#include <stdlib.h>
QPDFFormFieldObjectHelper::Members::~Members()
{
@@ -313,7 +317,15 @@ QPDFFormFieldObjectHelper::setV(
}
return;
}
- setFieldAttribute("/V", value);
+ if (value.isString())
+ {
+ setFieldAttribute(
+ "/V", QPDFObjectHandle::newUnicodeString(value.getUTF8Value()));
+ }
+ else
+ {
+ setFieldAttribute("/V", value);
+ }
if (need_appearances)
{
QPDF* qpdf = this->oh.getOwningQPDF();
@@ -470,3 +482,290 @@ QPDFFormFieldObjectHelper::setCheckBoxValue(bool value)
QTC::TC("qpdf", "QPDFFormFieldObjectHelper set checkbox AS");
annot.replaceKey("/AS", name);
}
+
+void
+QPDFFormFieldObjectHelper::generateAppearance(QPDFAnnotationObjectHelper& aoh)
+{
+ std::string ft = getFieldType();
+ // Ignore field types we don't know how to generate appearances
+ // for. Button fields don't really need them -- see code in
+ // QPDFAcroFormDocumentHelper::generateAppearancesIfNeeded.
+ if ((ft == "/Tx") || (ft == "/Ch"))
+ {
+ generateTextAppearance(aoh);
+ }
+}
+
+class ValueSetter: public QPDFObjectHandle::TokenFilter
+{
+ public:
+ ValueSetter(std::string const& DA, std::string const& V,
+ std::vector<std::string> const& opt, double tf,
+ QPDFObjectHandle::Rectangle const& bbox);
+ virtual ~ValueSetter()
+ {
+ }
+ virtual void handleToken(QPDFTokenizer::Token const&);
+ void writeAppearance();
+
+ private:
+ std::string DA;
+ std::string V;
+ std::vector<std::string> opt;
+ double tf;
+ QPDFObjectHandle::Rectangle bbox;
+ enum { st_top, st_bmc, st_emc, st_end } state;
+};
+
+ValueSetter::ValueSetter(std::string const& DA, std::string const& V,
+ std::vector<std::string> const& opt, double tf,
+ QPDFObjectHandle::Rectangle const& bbox) :
+ DA(DA),
+ V(V),
+ opt(opt),
+ tf(tf),
+ bbox(bbox),
+ state(st_top)
+{
+}
+
+void
+ValueSetter::handleToken(QPDFTokenizer::Token const& token)
+{
+ QPDFTokenizer::token_type_e ttype = token.getType();
+ std::string value = token.getValue();
+ bool do_replace = false;
+ switch (state)
+ {
+ case st_top:
+ writeToken(token);
+ if ((ttype == QPDFTokenizer::tt_word) && (value == "BMC"))
+ {
+ state = st_bmc;
+ }
+ break;
+
+ case st_bmc:
+ if ((ttype == QPDFTokenizer::tt_space) ||
+ (ttype == QPDFTokenizer::tt_comment))
+ {
+ writeToken(token);
+ }
+ else
+ {
+ state = st_emc;
+ }
+ // fall through to emc
+
+ case st_emc:
+ if ((ttype == QPDFTokenizer::tt_word) && (value == "EMC"))
+ {
+ do_replace = true;
+ state = st_end;
+ }
+ break;
+
+ case st_end:
+ writeToken(token);
+ break;
+ }
+ if (do_replace)
+ {
+ writeAppearance();
+ }
+}
+
+void ValueSetter::writeAppearance()
+{
+ // This code does not take quadding into consideration because
+ // doing so requires font metric information, which we don't
+ // have in many cases.
+
+ double tfh = 1.2 * tf;
+ int dx = 1;
+
+ // Write one or more lines, centered vertically, possibly with
+ // one row highlighted.
+
+ size_t max_rows = static_cast<size_t>((bbox.ury - bbox.lly) / tfh);
+ bool highlight = false;
+ size_t highlight_idx = 0;
+
+ std::vector<std::string> lines;
+ if (opt.empty() || (max_rows < 2))
+ {
+ lines.push_back(V);
+ }
+ else
+ {
+ // Figure out what rows to write
+ size_t nopt = opt.size();
+ size_t found_idx = 0;
+ bool found = false;
+ for (found_idx = 0; found_idx < nopt; ++found_idx)
+ {
+ if (opt.at(found_idx) == V)
+ {
+ found = true;
+ break;
+ }
+ }
+ if (found)
+ {
+ // Try to make the found item the second one, but
+ // adjust for under/overflow.
+ int wanted_first = found_idx - 1;
+ int wanted_last = found_idx + max_rows - 2;
+ QTC::TC("qpdf", "QPDFFormFieldObjectHelper list found");
+ while (wanted_first < 0)
+ {
+ QTC::TC("qpdf", "QPDFFormFieldObjectHelper list first too low");
+ ++wanted_first;
+ ++wanted_last;
+ }
+ while (wanted_last >= static_cast<int>(nopt))
+ {
+ QTC::TC("qpdf", "QPDFFormFieldObjectHelper list last too high");
+ if (wanted_first > 0)
+ {
+ --wanted_first;
+ }
+ --wanted_last;
+ }
+ highlight = true;
+ highlight_idx = found_idx - wanted_first;
+ for (int i = wanted_first; i <= wanted_last; ++i)
+ {
+ lines.push_back(opt.at(i));
+ }
+ }
+ else
+ {
+ QTC::TC("qpdf", "QPDFFormFieldObjectHelper list not found");
+ // include our value and the first n-1 rows
+ highlight_idx = 0;
+ highlight = true;
+ lines.push_back(V);
+ for (size_t i = 0; ((i < nopt) && (i < (max_rows - 1))); ++i)
+ {
+ lines.push_back(opt.at(i));
+ }
+ }
+ }
+
+ // Write the lines centered vertically, highlighting if needed
+ size_t nlines = lines.size();
+ double dy = bbox.ury - ((bbox.ury - bbox.lly - (nlines * tfh)) / 2.0);
+ write(DA + "\nq\n");
+ if (highlight)
+ {
+ write("q\n0.85 0.85 0.85 rg\n" +
+ QUtil::int_to_string(bbox.llx) + " " +
+ QUtil::double_to_string(bbox.lly + dy -
+ (tfh * (highlight_idx + 1))) + " " +
+ QUtil::int_to_string(bbox.urx - bbox.llx) + " " +
+ QUtil::double_to_string(tfh) +
+ " re f\nQ\n");
+ }
+ dy += 0.2 * tf;
+ for (size_t i = 0; i < nlines; ++i)
+ {
+ dy -= tfh;
+ write("BT\n" +
+ QUtil::int_to_string(bbox.llx + dx) + " " +
+ QUtil::double_to_string(bbox.lly + dy) + " Td\n" +
+ QPDFObjectHandle::newString(lines.at(i)).unparse() +
+ " Tj\nET\n");
+ }
+ write("Q\nEMC");
+}
+
+class TfFinder: public QPDFObjectHandle::TokenFilter
+{
+ public:
+ TfFinder();
+ virtual ~TfFinder()
+ {
+ }
+ virtual void handleToken(QPDFTokenizer::Token const&);
+ double getTf();
+
+ private:
+ double tf;
+ double last_num;
+};
+
+TfFinder::TfFinder() :
+ tf(11.0),
+ last_num(0.0)
+{
+}
+
+void
+TfFinder::handleToken(QPDFTokenizer::Token const& token)
+{
+ QPDFTokenizer::token_type_e ttype = token.getType();
+ std::string value = token.getValue();
+ switch (ttype)
+ {
+ case QPDFTokenizer::tt_integer:
+ case QPDFTokenizer::tt_real:
+ last_num = strtod(value.c_str(), 0);
+ break;
+
+ case QPDFTokenizer::tt_word:
+ if ((value == "Tf") &&
+ (last_num > 1.0) &&
+ (last_num < 1000.0))
+ {
+ // These ranges are arbitrary but keep us from doing
+ // insane things or suffering from over/underflow
+ tf = last_num;
+ }
+ break;
+
+ default:
+ break;
+ }
+}
+
+double
+TfFinder::getTf()
+{
+ return this->tf;
+}
+
+void
+QPDFFormFieldObjectHelper::generateTextAppearance(
+ QPDFAnnotationObjectHelper& aoh)
+{
+ QPDFObjectHandle AS = aoh.getAppearanceStream("/N");
+ if (! AS.isStream())
+ {
+ aoh.getObjectHandle().warnIfPossible(
+ "unable to get normal appearance stream for update");
+ return;
+ }
+ QPDFObjectHandle bbox_obj = AS.getDict().getKey("/BBox");
+ if (! bbox_obj.isRectangle())
+ {
+ aoh.getObjectHandle().warnIfPossible(
+ "unable to get appearance stream bounding box");
+ return;
+ }
+ QPDFObjectHandle::Rectangle bbox = bbox_obj.getArrayAsRectangle();
+ std::string DA = getDefaultAppearance();
+ std::string V = QUtil::utf8_to_ascii(getValueAsString());
+
+ TfFinder tff;
+ Pl_QPDFTokenizer tok("tf", &tff);
+ tok.write(QUtil::unsigned_char_pointer(DA.c_str()), DA.length());
+ tok.finish();
+ double tf = tff.getTf();
+ std::vector<std::string> opt;
+ if (isChoice() && ((getFlags() & ff_ch_combo) == 0))
+ {
+ opt = getChoices();
+ }
+ AS.addTokenFilter(new ValueSetter(DA, V, opt, tf, bbox));
+}
diff --git a/qpdf/qpdf.cc b/qpdf/qpdf.cc
index 610bfb82..7426b016 100644
--- a/qpdf/qpdf.cc
+++ b/qpdf/qpdf.cc
@@ -106,6 +106,7 @@ struct Options
flatten_annotations(false),
flatten_annotations_required(0),
flatten_annotations_forbidden(an_invisible | an_hidden),
+ generate_appearances(false),
show_npages(false),
deterministic_id(false),
static_id(false),
@@ -181,6 +182,7 @@ struct Options
bool flatten_annotations;
int flatten_annotations_required;
int flatten_annotations_forbidden;
+ bool generate_appearances;
std::string min_version;
std::string force_version;
bool show_npages;
@@ -570,6 +572,7 @@ class ArgParser
void argLinearizePass1(char* parameter);
void argCoalesceContents();
void argFlattenAnnotations(char* parameter);
+ void argGenerateAppearances();
void argMinVersion(char* parameter);
void argForceVersion(char* parameter);
void argSplitPages(char* parameter);
@@ -771,6 +774,8 @@ ArgParser::initOptionTable()
char const* flatten_choices[] = {"all", "print", "screen", 0};
(*t)["flatten-annotations"] = oe_requiredChoices(
&ArgParser::argFlattenAnnotations, flatten_choices);
+ (*t)["generate-appearances"] =
+ oe_bare(&ArgParser::argGenerateAppearances);
(*t)["min-version"] = oe_requiredParameter(
&ArgParser::argMinVersion, "version");
(*t)["force-version"] = oe_requiredParameter(
@@ -1234,6 +1239,12 @@ ArgParser::argFlattenAnnotations(char* parameter)
}
void
+ArgParser::argGenerateAppearances()
+{
+ o.generate_appearances = true;
+}
+
+void
ArgParser::argMinVersion(char* parameter)
{
o.min_version = parameter;
@@ -1877,18 +1888,28 @@ familiar with the PDF file format or who are PDF developers.\n\
--flatten-annotations=option\n\
incorporate rendering of annotations into page\n\
contents including those for interactive form\n\
- fields\n\
+ fields; may also want --generate-appearances\n\
+--generate-appearances generate appearance streams for form fields\n\
--qdf turns on \"QDF mode\" (below)\n\
--linearize-pass1=file write intermediate pass of linearized file\n\
for debugging\n\
--min-version=version sets the minimum PDF version of the output file\n\
--force-version=version forces this to be the PDF version of the output file\n\
\n\
-Options for --flatten-annotations are all, print, or screen. If the\n\
-option is print, only annotations marked as print are included. If the\n\
-option is screen, options marked as \"no view\" are excluded.\n\
-Otherwise, annotations are flattened regardless of the presence of\n\
-print or NoView flags.\n\
+Options for --flatten-annotations are all, print, or screen. If the option\n\
+is print, only annotations marked as print are included. If the option is\n\
+screen, options marked as \"no view\" are excluded. Otherwise, annotations\n\
+are flattened regardless of the presence of print or NoView flags. It is\n\
+common for PDF files to have a flag set that appearance streams need to be\n\
+regenerated. This happens when someone changes a form value with software\n\
+that does not know how to render the new value. qpdf will not flatten form\n\
+fields in files like this. If you get this warning, you have two choices:\n\
+either use qpdf's --generate-appearances flag to tell qpdf to go ahead and\n\
+regenerate appearances, or use some other tool to generate the appearances.\n\
+qpdf does a pretty good job with most forms when only ASCII characters are\n\
+used in form field values, but if your form fields contain other\n\
+characters, rich text, or are other than left justified, you will get\n\
+better results first saving with other software.\n\
\n\
Version numbers may be expressed as major.minor.extension-level, so 1.7.3\n\
means PDF version 1.7 at extension level 3.\n\
@@ -3356,6 +3377,11 @@ static void do_inspection(QPDF& pdf, Options& o)
static void handle_transformations(QPDF& pdf, Options& o)
{
QPDFPageDocumentHelper dh(pdf);
+ if (o.generate_appearances)
+ {
+ QPDFAcroFormDocumentHelper afdh(pdf);
+ afdh.generateAppearancesIfNeeded();
+ }
if (o.flatten_annotations)
{
dh.flattenAnnotations(o.flatten_annotations_required,
diff --git a/qpdf/qpdf.testcov b/qpdf/qpdf.testcov
index 780a4930..79537417 100644
--- a/qpdf/qpdf.testcov
+++ b/qpdf/qpdf.testcov
@@ -398,3 +398,7 @@ QPDFFormFieldObjectHelper checkbox kid widget 0
QPDFObjectHandle broken radio button 0
QPDFFormFieldObjectHelper set checkbox AS 0
QPDFObjectHandle broken checkbox 0
+QPDFFormFieldObjectHelper list not found 0
+QPDFFormFieldObjectHelper list found 0
+QPDFFormFieldObjectHelper list first too low 0
+QPDFFormFieldObjectHelper list last too high 0
diff --git a/qpdf/qtest/qpdf.test b/qpdf/qtest/qpdf.test
index 85a794f0..cd1db365 100644
--- a/qpdf/qtest/qpdf.test
+++ b/qpdf/qtest/qpdf.test
@@ -234,6 +234,57 @@ $td->runtest("compare files",
show_ntests();
# ----------
+$td->notify("--- Appearance Streams ---");
+$n_tests += 4;
+
+$td->runtest("generate appearances and flatten",
+ {$td->COMMAND =>
+ "qpdf --qdf --no-original-object-ids --static-id" .
+ " --generate-appearances --flatten-annotations=all" .
+ " need-appearances.pdf a.pdf"},
+ {$td->STRING => "", $td->EXIT_STATUS => 0},
+ $td->NORMALIZE_NEWLINES);
+$td->runtest("compare files",
+ {$td->FILE => "a.pdf"},
+ {$td->FILE => "appearances-a.pdf"});
+
+$td->runtest("more choices",
+ {$td->COMMAND =>
+ "qpdf --qdf --no-original-object-ids --static-id" .
+ " --generate-appearances" .
+ " more-choices.pdf b.pdf"},
+ {$td->STRING => "", $td->EXIT_STATUS => 0},
+ $td->NORMALIZE_NEWLINES);
+# b.pdf still has forms
+$td->runtest("compare files",
+ {$td->FILE => "b.pdf"},
+ {$td->FILE => "appearances-b.pdf"});
+
+my @choice_values = qw(1 2 11 12 quack);
+$n_tests += 3 * scalar(@choice_values);
+foreach my $i (@choice_values)
+{
+ # b.pdf was generated by qpdf and needs appearances
+ # test_driver 52 writes a.pdf
+ $td->runtest("set value to $i",
+ {$td->COMMAND => "test_driver 52 b.pdf $i"},
+ {$td->STRING => "setting list1 value\ntest 52 done\n",
+ $td->EXIT_STATUS => 0},
+ $td->NORMALIZE_NEWLINES);
+ $td->runtest("regenerate appearances",
+ {$td->COMMAND =>
+ "qpdf --qdf --no-original-object-ids --static-id" .
+ " --generate-appearances" .
+ " a.pdf b.pdf"},
+ {$td->STRING => "", $td->EXIT_STATUS => 0},
+ $td->NORMALIZE_NEWLINES);
+ $td->runtest("compare files",
+ {$td->FILE => "b.pdf"},
+ {$td->FILE => "appearances-$i.pdf"});
+}
+
+show_ntests();
+# ----------
$td->notify("--- Stream Replacement Tests ---");
$n_tests += 8;
diff --git a/qpdf/qtest/qpdf/appearances-1.pdf b/qpdf/qtest/qpdf/appearances-1.pdf
new file mode 100644
index 00000000..9a3caa67
--- /dev/null
+++ b/qpdf/qtest/qpdf/appearances-1.pdf
@@ -0,0 +1,3853 @@
+%PDF-1.5
+%
+%QDF-1.0
+
+1 0 obj
+<<
+ /AcroForm <<
+ /DR 3 0 R
+ /Fields [
+ 4 0 R
+ 5 0 R
+ 6 0 R
+ 7 0 R
+ 8 0 R
+ 9 0 R
+ 10 0 R
+ 11 0 R
+ 12 0 R
+ 13 0 R
+ 14 0 R
+ ]
+ >>
+ /Lang (en-US)
+ /MarkInfo <<
+ /Marked true
+ >>
+ /OpenAction [
+ 15 0 R
+ /XYZ
+ null
+ null
+ 0
+ ]
+ /Pages 16 0 R
+ /StructTreeRoot 17 0 R
+ /Type /Catalog
+>>
+endobj
+
+2 0 obj
+<<
+ /CreationDate (D:20190103125434-05'00')
+ /Creator <feff005700720069007400650072>
+ /Producer <feff004c0069006200720065004f0066006600690063006500200036002e0031>
+>>
+endobj
+
+3 0 obj
+<<
+ /Font 18 0 R
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+>>
+endobj
+
+4 0 obj
+<<
+ /AP <<
+ /N 19 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Tx
+ /P 15 0 R
+ /Rect [
+ 123.499
+ 689.901
+ 260.801
+ 704.699
+ ]
+ /Subtype /Widget
+ /T (text)
+ /Type /Annot
+ /V <feff006100620063>
+>>
+endobj
+
+5 0 obj
+<<
+ /DV /1
+ /FT /Btn
+ /Ff 49152
+ /Kids [
+ 21 0 R
+ 22 0 R
+ 23 0 R
+ ]
+ /P 15 0 R
+ /T (r1)
+ /V /2
+>>
+endobj
+
+6 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 24 0 R
+ /Yes 26 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Off
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 554.301
+ 130.701
+ 566.349
+ ]
+ /Subtype /Widget
+ /T (checkbox1)
+ /Type /Annot
+ /V /Off
+>>
+endobj
+
+7 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 29 0 R
+ /Yes 31 0 R
+ >>
+ >>
+ /AS /Yes
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Yes
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 527.751
+ 130.701
+ 539.799
+ ]
+ /Subtype /Widget
+ /T (checkbox2)
+ /Type /Annot
+ /V /Yes
+>>
+endobj
+
+8 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 33 0 R
+ /Yes 35 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Off
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 500.501
+ 130.701
+ 512.549
+ ]
+ /Subtype /Widget
+ /T (checkbox3)
+ /Type /Annot
+ /V /Off
+>>
+endobj
+
+9 0 obj
+<<
+ /DV /2
+ /FT /Btn
+ /Ff 49152
+ /Kids [
+ 37 0 R
+ 38 0 R
+ 39 0 R
+ ]
+ /P 15 0 R
+ /T (r2)
+ /V /2
+>>
+endobj
+
+10 0 obj
+<<
+ /AP <<
+ /N 40 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff00730061006c00610064002003c002ac>
+ /F 4
+ /FT /Tx
+ /P 15 0 R
+ /Rect [
+ 113.649
+ 260.151
+ 351.101
+ 278.099
+ ]
+ /Subtype /Widget
+ /T (text2)
+ /Type /Annot
+ /V <feff00730061006c00610064002003c002ac>
+>>
+endobj
+
+11 0 obj
+<<
+ /AP <<
+ /N 42 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Opt [
+ <feff0031>
+ <feff0032>
+ <feff0033>
+ <feff0034>
+ <feff0066006900760065>
+ <feff007300690078>
+ <feff0073006500760065006e>
+ <feff00650069006700680074>
+ <feff0039>
+ <feff00310030>
+ <feff00310031>
+ <feff00310032>
+ ]
+ /P 15 0 R
+ /Rect [
+ 158.449
+ 156.651
+ 221.001
+ 232.849
+ ]
+ /Subtype /Widget
+ /T (list1)
+ /Type /Annot
+ /V <feff0031>
+>>
+endobj
+
+12 0 obj
+<<
+ /AP <<
+ /N 44 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 131072
+ /Opt [
+ <feff006e0069006e0065>
+ <feff00740065006e>
+ <feff0065006c0065007000680061006e0074>
+ <feff007400770065006c00760065>
+ ]
+ /P 15 0 R
+ /Rect [
+ 159.149
+ 107.251
+ 244.201
+ 130.949
+ ]
+ /Subtype /Widget
+ /T (drop1)
+ /Type /Annot
+ /V <feff0065006c0065007000680061006e0074>
+>>
+endobj
+
+13 0 obj
+<<
+ /AP <<
+ /N 46 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 393216
+ /Opt [
+ <feff006f006e0065>
+ <feff00740077006f>
+ <feff00700069>
+ <feff0066006f00750072>
+ ]
+ /P 15 0 R
+ /Rect [
+ 403.949
+ 159.401
+ 459.001
+ 232.849
+ ]
+ /Subtype /Widget
+ /T (combolist1)
+ /Type /Annot
+ /V <feff00700069>
+>>
+endobj
+
+14 0 obj
+<<
+ /AP <<
+ /N 48 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 393216
+ /Opt [
+ <feff0061006c007000680061>
+ <feff0062006500740061>
+ <feff00670061006d006d0061>
+ <feff00640065006c00740061>
+ ]
+ /P 15 0 R
+ /Rect [
+ 404.599
+ 101.451
+ 476.701
+ 135.349
+ ]
+ /Subtype /Widget
+ /T (combodrop1)
+ /Type /Annot
+ /V <feff00640065006c00740061>
+>>
+endobj
+
+%% Page 1
+15 0 obj
+<<
+ /Annots [
+ 4 0 R
+ 21 0 R
+ 22 0 R
+ 23 0 R
+ 6 0 R
+ 7 0 R
+ 8 0 R
+ 37 0 R
+ 38 0 R
+ 39 0 R
+ 10 0 R
+ 13 0 R
+ 11 0 R
+ 12 0 R
+ 14 0 R
+ 50 0 R
+ 51 0 R
+ ]
+ /Contents 52 0 R
+ /Group <<
+ /CS /DeviceRGB
+ /I true
+ /S /Transparency
+ >>
+ /MediaBox [
+ 0
+ 0
+ 612
+ 792
+ ]
+ /Parent 16 0 R
+ /Resources 3 0 R
+ /StructParents 0
+ /Type /Page
+>>
+endobj
+
+16 0 obj
+<<
+ /Count 1
+ /Kids [
+ 15 0 R
+ ]
+ /MediaBox [
+ 0
+ 0
+ 612
+ 792
+ ]
+ /Resources 3 0 R
+ /Type /Pages
+>>
+endobj
+
+17 0 obj
+<<
+ /K [
+ 54 0 R
+ ]
+ /ParentTree 55 0 R
+ /RoleMap <<
+ /Document /Document
+ /Standard /P
+ >>
+ /Type /StructTreeRoot
+>>
+endobj
+
+18 0 obj
+<<
+ /F1 56 0 R
+ /F2 57 0 R
+ /F3 58 0 R
+ /F4 59 0 R
+ /ZaDi 28 0 R
+>>
+endobj
+
+19 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 137.3
+ 14.8
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 20 0 R
+>>
+stream
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F2 12 Tf
+q
+BT
+1 2.600000 Td
+(abc) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+20 0 obj
+82
+endobj
+
+21 0 obj
+<<
+ /AP <<
+ /N <<
+ /1 60 0 R
+ /Off 62 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 152.749
+ 648.501
+ 164.801
+ 660.549
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+22 0 obj
+<<
+ /AP <<
+ /N <<
+ /2 64 0 R
+ /Off 66 0 R
+ >>
+ >>
+ /AS /2
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 152.749
+ 627.301
+ 164.801
+ 639.349
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+23 0 obj
+<<
+ /AP <<
+ /N <<
+ /3 68 0 R
+ /Off 70 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 151.399
+ 606.501
+ 163.451
+ 618.549
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+24 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 25 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+25 0 obj
+12
+endobj
+
+26 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 27 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+27 0 obj
+82
+endobj
+
+28 0 obj
+<<
+ /BaseFont /ZapfDingbats
+ /Subtype /Type1
+ /Type /Font
+>>
+endobj
+
+29 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 30 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+30 0 obj
+12
+endobj
+
+31 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 32 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+32 0 obj
+82
+endobj
+
+33 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 34 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+34 0 obj
+12
+endobj
+
+35 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 36 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+36 0 obj
+82
+endobj
+
+37 0 obj
+<<
+ /AP <<
+ /N <<
+ /1 72 0 R
+ /Off 74 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 118.649
+ 388.101
+ 130.701
+ 400.149
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+38 0 obj
+<<
+ /AP <<
+ /N <<
+ /2 76 0 R
+ /Off 78 0 R
+ >>
+ >>
+ /AS /2
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 119.349
+ 362.201
+ 131.401
+ 374.249
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+39 0 obj
+<<
+ /AP <<
+ /N <<
+ /3 80 0 R
+ /Off 82 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 119.349
+ 333.551
+ 131.401
+ 345.599
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+40 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 237.45
+ 17.95
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 41 0 R
+>>
+stream
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F2 12 Tf
+q
+BT
+1 4.175000 Td
+(salad ??) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+41 0 obj
+87
+endobj
+
+42 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 62.55
+ 76.2
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 43 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 62.55 76.2 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+q
+0.85 0.85 0.85 rg
+0 62.100000 62 12.000000 re f
+Q
+BT
+1 64.100000 Td
+(1) Tj
+ET
+BT
+1 52.100000 Td
+(2) Tj
+ET
+BT
+1 40.100000 Td
+(3) Tj
+ET
+BT
+1 28.100000 Td
+(4) Tj
+ET
+BT
+1 16.100000 Td
+(five) Tj
+ET
+BT
+1 4.100000 Td
+(six) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+43 0 obj
+311
+endobj
+
+44 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 85.05
+ 23.7
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 45 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 85.05 23.7 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+BT
+1 7.850000 Td
+(elephant) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+45 0 obj
+121
+endobj
+
+46 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 55.05
+ 73.45
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 47 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 55.05 73.45 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+BT
+1 32.725000 Td
+(pi) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+47 0 obj
+117
+endobj
+
+48 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 72.1
+ 33.9
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 49 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 72.1 33.9 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+BT
+1 12.950000 Td
+(delta) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+49 0 obj
+118
+endobj
+
+50 0 obj
+<<
+ /AP <<
+ /N 84 0 R
+ >>
+ /C [
+ 1
+ 1
+ 0
+ ]
+ /CA 1
+ /Contents (Salad)
+ /CreationDate (D:20181231235455Z00'00)
+ /F 28
+ /M (D:20181231235455Z00'00)
+ /Name /Comment
+ /P 15 0 R
+ /Popup 51 0 R
+ /Rect [
+ 435
+ 703
+ 453
+ 721
+ ]
+ /Subtype /Text
+ /T (Jay Berkenbilt)
+ /Type /Annot
+>>
+endobj
+
+51 0 obj
+<<
+ /F 28
+ /Open false
+ /Parent 50 0 R
+ /Rect [
+ 612
+ 601
+ 792
+ 721
+ ]
+ /Subtype /Popup
+ /Type /Annot
+>>
+endobj
+
+%% Contents for page 1
+52 0 obj
+<<
+ /Length 53 0 R
+>>
+stream
+0.1 w
+/Artifact BMC
+q 0 0.028 611.971 791.971 re
+W* n
+EMC
+/Standard<</MCID 0>>BDC
+q 0 0 0 rg
+BT
+56.8 724.1 Td /F1 12 Tf[<01>1<0203>1<0403>1<05>58<06>-10<0708>2<09070a0b0408>2(\f)]TJ
+ET
+Q
+EMC
+/Standard<</MCID 1>>BDC
+q 0 0 0 rg
+BT
+56.8 693 Td /F1 12 Tf[(\r)68<03>1<0e0f>2<0710>-1<11>2<03>1<12>2<13>-7<0707070707>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 2>>BDC
+q 0 0 0 rg
+BT
+56.8 661.9 Td /F1 12 Tf[<0414>1<1311>2<0b0715>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 3>>BDC
+q 0 0 0 rg
+BT
+56.8 565.3 Td /F1 12 Tf[<16>1<0203>1<16>1<17>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 4>>BDC
+q 0 0 0 rg
+BT
+56.8 413.5 Td /F1 12 Tf[<0414>1<1311>2<0b0718>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 5>>BDC
+q 0 0 0 rg
+BT
+56.8 261.7 Td /F1 12 Tf[<19>-1<0b0f>2<14>1<0f>2<0b>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 6>>BDC
+q 0 0 0 rg
+BT
+56.8 206.5 Td /F1 12 Tf[<1a>2<11>2<06>-2<0f>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 7>>BDC
+q 0 0 0 rg
+BT
+269.5 206.5 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0712>2<11>2<06>-2<0f>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 8>>BDC
+q 0 0 0 rg
+BT
+56.8 123.7 Td /F1 12 Tf[<1d>5<040b1e130b1f>-2( )]TJ
+ET
+Q
+EMC
+/Standard<</MCID 9>>BDC
+q 0 0 0 rg
+BT
+269.5 123.7 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0713040b1e130b1f>-2( )]TJ
+ET
+Q
+EMC
+/Form<</MCID 10>>BDC
+0 0 0 RG
+1 1 1 rg
+120.5 686.9 143.3 20.8 re B*
+EMC
+/Form<</MCID 11>>BDC
+151.55 642.6 183.45 23.9 re f*
+q 1.2 w 0 0 0 RG
+158.75 660.55 m 162.1 660.55 164.8 657.9 164.8 654.55 c
+164.8 651.2 162.1 648.5 158.75 648.5 c
+155.4 648.5 152.75 651.2 152.75 654.55 c
+152.75 657.9 155.4 660.55 158.75 660.55 c s
+ Q
+q 169.6 642.6 164.25 23.9 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+169.6 650.3 Td /F3 12 Tf[<0102>-1<0304>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 12>>BDC
+1 1 1 rg
+151.55 624.8 125.5 17.1 re f*
+q 1.2 w 0 0 0 RG
+158.75 639.35 m 162.1 639.35 164.8 636.7 164.8 633.35 c
+164.8 630 162.1 627.3 158.75 627.3 c
+155.4 627.3 152.75 630 152.75 633.35 c
+152.75 636.7 155.4 639.35 158.75 639.35 c s
+ Q
+q 169.6 624.8 106.3 17.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+169.6 629.1 Td /F3 12 Tf[<0102>-1<0305>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 13>>BDC
+1 1 1 rg
+150.2 605.7 118.7 13.7 re f*
+q 1.2 w 0 0 0 RG
+157.4 618.55 m 160.75 618.55 163.45 615.9 163.45 612.55 c
+163.45 609.2 160.75 606.5 157.4 606.5 c
+154.05 606.5 151.4 609.2 151.4 612.55 c
+151.4 615.9 154.05 618.55 157.4 618.55 c s
+ Q
+q 168.25 605.7 99.5 13.7 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+168.3 608.3 Td /F3 12 Tf[<0102>-1<0306>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 14>>BDC
+1 1 1 rg
+117.45 544.3 86.65 32.1 re f*
+q 1.2 w 0 0 0 RG
+118.65 554.3 12.05 12.05 re S
+ Q
+q 135.5 544.3 67.45 32.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 556.1 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 15>>BDC
+1 1 1 rg
+117.45 523.2 85.3 21.15 re f*
+q 1.2 w 0 0 0 RG
+118.65 527.75 12.05 12.05 re S
+ Q
+q 135.5 523.2 66.1 21.15 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 529.6 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<0f>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 16>>BDC
+1 1 1 rg
+117.45 498 72.35 17.1 re f*
+q 1.2 w 0 0 0 RG
+118.65 500.5 12.05 12.05 re S
+ Q
+q 135.5 498 53.15 17.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 502.3 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<10>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 17>>BDC
+1 1 1 rg
+117.45 378.75 169.15 30.75 re f*
+q 1.2 w 0 0 0 RG
+124.65 400.15 m 128 400.15 130.7 397.5 130.7 394.15 c
+130.7 390.8 128 388.1 124.65 388.1 c
+121.3 388.1 118.65 390.8 118.65 394.15 c
+118.65 397.5 121.3 400.15 124.65 400.15 c s
+ Q
+q 135.5 378.75 149.95 30.75 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 389.9 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 18>>BDC
+1 1 1 rg
+118.15 352.85 180.7 30.75 re f*
+q 1.2 w 0 0 0 RG
+125.35 374.25 m 128.7 374.25 131.4 371.6 131.4 368.25 c
+131.4 364.9 128.7 362.2 125.35 362.2 c
+122 362.2 119.35 364.9 119.35 368.25 c
+119.35 371.6 122 374.25 125.35 374.25 c s
+ Q
+q 136.2 352.85 161.5 30.75 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+136.2 364 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<0f>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 19>>BDC
+1 1 1 rg
+118.15 322.85 139.15 33.5 re f*
+q 1.2 w 0 0 0 RG
+125.35 345.6 m 128.7 345.6 131.4 342.95 131.4 339.6 c
+131.4 336.25 128.7 333.55 125.35 333.55 c
+122 333.55 119.35 336.25 119.35 339.6 c
+119.35 342.95 122 345.6 125.35 345.6 c s
+ Q
+q 136.2 322.85 119.95 33.5 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+136.2 335.4 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<10>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 20>>BDC
+0 0 0 RG
+1 1 1 rg
+110.65 257.15 243.45 23.95 re B*
+EMC
+/Form<</MCID 21>>BDC
+155.95 154.15 67.55 81.2 re B*
+EMC
+/Form<</MCID 22>>BDC
+156.65 104.75 90.05 28.7 re B*
+EMC
+/Form<</MCID 23>>BDC
+401.45 156.9 60.05 78.45 re B*
+EMC
+/Form<</MCID 24>>BDC
+402.1 98.95 77.1 38.9 re B*
+EMC
+Q
+endstream
+endobj
+
+%QDF: ignore_newline
+53 0 obj
+4747
+endobj
+
+54 0 obj
+<<
+ /K [
+ 86 0 R
+ 87 0 R
+ 88 0 R
+ 89 0 R
+ 90 0 R
+ 91 0 R
+ 92 0 R
+ 93 0 R
+ 94 0 R
+ 95 0 R
+ 96 0 R
+ 97 0 R
+ 98 0 R
+ 99 0 R
+ 100 0 R
+ 101 0 R
+ 102 0 R
+ 103 0 R
+ 104 0 R
+ 105 0 R
+ 106 0 R
+ 107 0 R
+ 108 0 R
+ 109 0 R
+ 110 0 R
+ 111 0 R
+ 112 0 R
+ 113 0 R
+ 114 0 R
+ 115 0 R
+ 116 0 R
+ 117 0 R
+ 118 0 R
+ 119 0 R
+ 120 0 R
+ 121 0 R
+ 122 0 R
+ 123 0 R
+ 124 0 R
+ 125 0 R
+ 126 0 R
+ 127 0 R
+ 128 0 R
+ 129 0 R
+ 130 0 R
+ 131 0 R
+ 132 0 R
+ 133 0 R
+ 134 0 R
+ 135 0 R
+ 136 0 R
+ 137 0 R
+ 138 0 R
+ 139 0 R
+ 140 0 R
+ 141 0 R
+ 142 0 R
+ 143 0 R
+ 144 0 R
+ ]
+ /P 17 0 R
+ /Pg 15 0 R
+ /S /Document
+ /Type /StructElem
+>>
+endobj
+
+55 0 obj
+<<
+ /Nums [
+ 0
+ [
+ 86 0 R
+ 88 0 R
+ 90 0 R
+ 97 0 R
+ 108 0 R
+ 119 0 R
+ 123 0 R
+ 123 0 R
+ 129 0 R
+ 129 0 R
+ 130 0 R
+ 131 0 R
+ 132 0 R
+ 133 0 R
+ 134 0 R
+ 135 0 R
+ 136 0 R
+ 137 0 R
+ 138 0 R
+ 139 0 R
+ 140 0 R
+ 141 0 R
+ 142 0 R
+ 143 0 R
+ 144 0 R
+ ]
+ ]
+>>
+endobj
+
+56 0 obj
+<<
+ /BaseFont /BAAAAA+LiberationSerif
+ /FirstChar 0
+ /FontDescriptor 145 0 R
+ /LastChar 32
+ /Subtype /TrueType
+ /ToUnicode 146 0 R
+ /Type /Font
+ /Widths [
+ 777
+ 943
+ 500
+ 443
+ 333
+ 333
+ 389
+ 250
+ 777
+ 500
+ 333
+ 500
+ 443
+ 610
+ 500
+ 277
+ 556
+ 277
+ 277
+ 500
+ 443
+ 500
+ 443
+ 500
+ 500
+ 556
+ 610
+ 666
+ 500
+ 722
+ 500
+ 722
+ 500
+ ]
+>>
+endobj
+
+57 0 obj
+<<
+ /BaseFont /LiberationSans
+ /Encoding /WinAnsiEncoding
+ /FirstChar 32
+ /FontDescriptor 148 0 R
+ /LastChar 255
+ /Subtype /TrueType
+ /Type /Font
+ /Widths [
+ 277
+ 277
+ 354
+ 556
+ 556
+ 889
+ 666
+ 190
+ 333
+ 333
+ 389
+ 583
+ 277
+ 333
+ 277
+ 277
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 277
+ 277
+ 583
+ 583
+ 583
+ 556
+ 1015
+ 666
+ 666
+ 722
+ 722
+ 666
+ 610
+ 777
+ 722
+ 277
+ 500
+ 666
+ 556
+ 833
+ 722
+ 777
+ 666
+ 777
+ 722
+ 666
+ 610
+ 722
+ 666
+ 943
+ 666
+ 666
+ 610
+ 277
+ 277
+ 277
+ 469
+ 556
+ 333
+ 556
+ 556
+ 500
+ 556
+ 556
+ 277
+ 556
+ 556
+ 222
+ 222
+ 500
+ 222
+ 833
+ 556
+ 556
+ 556
+ 556
+ 333
+ 500
+ 277
+ 556
+ 500
+ 722
+ 500
+ 500
+ 500
+ 333
+ 259
+ 333
+ 583
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 277
+ 333
+ 556
+ 556
+ 556
+ 556
+ 259
+ 556
+ 333
+ 736
+ 370
+ 556
+ 583
+ 333
+ 736
+ 552
+ 399
+ 548
+ 333
+ 333
+ 333
+ 576
+ 537
+ 333
+ 333
+ 333
+ 365
+ 556
+ 833
+ 833
+ 833
+ 610
+ 666
+ 666
+ 666
+ 666
+ 666
+ 666
+ 1000
+ 722
+ 666
+ 666
+ 666
+ 666
+ 277
+ 277
+ 277
+ 277
+ 722
+ 722
+ 777
+ 777
+ 777
+ 777
+ 777
+ 583
+ 777
+ 722
+ 722
+ 722
+ 722
+ 666
+ 666
+ 610
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 889
+ 500
+ 556
+ 556
+ 556
+ 556
+ 277
+ 277
+ 277
+ 277
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 548
+ 610
+ 556
+ 556
+ 556
+ 556
+ 500
+ 556
+ 500
+ ]
+>>
+endobj
+
+58 0 obj
+<<
+ /BaseFont /DAAAAA+LiberationSans
+ /FirstChar 0
+ /FontDescriptor 149 0 R
+ /LastChar 22
+ /Subtype /TrueType
+ /ToUnicode 150 0 R
+ /Type /Font
+ /Widths [
+ 750
+ 333
+ 556
+ 333
+ 556
+ 556
+ 500
+ 722
+ 556
+ 556
+ 500
+ 277
+ 666
+ 556
+ 500
+ 556
+ 556
+ 777
+ 556
+ 277
+ 222
+ 556
+ 556
+ ]
+>>
+endobj
+
+59 0 obj
+<<
+ /BaseFont /DejaVuSans
+ /Encoding /WinAnsiEncoding
+ /FirstChar 32
+ /FontDescriptor 152 0 R
+ /LastChar 255
+ /Subtype /TrueType
+ /Type /Font
+ /Widths [
+ 317
+ 400
+ 459
+ 837
+ 636
+ 950
+ 779
+ 274
+ 390
+ 390
+ 500
+ 837
+ 317
+ 360
+ 317
+ 336
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 336
+ 336
+ 837
+ 837
+ 837
+ 530
+ 1000
+ 684
+ 686
+ 698
+ 770
+ 631
+ 575
+ 774
+ 751
+ 294
+ 294
+ 655
+ 557
+ 862
+ 748
+ 787
+ 603
+ 787
+ 694
+ 634
+ 610
+ 731
+ 684
+ 988
+ 685
+ 610
+ 685
+ 390
+ 336
+ 390
+ 837
+ 500
+ 500
+ 612
+ 634
+ 549
+ 634
+ 615
+ 352
+ 634
+ 633
+ 277
+ 277
+ 579
+ 277
+ 974
+ 633
+ 611
+ 634
+ 634
+ 411
+ 520
+ 392
+ 633
+ 591
+ 817
+ 591
+ 591
+ 524
+ 636
+ 336
+ 636
+ 837
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 317
+ 400
+ 636
+ 636
+ 636
+ 636
+ 336
+ 500
+ 500
+ 1000
+ 471
+ 611
+ 837
+ 360
+ 1000
+ 500
+ 500
+ 837
+ 400
+ 400
+ 500
+ 636
+ 636
+ 317
+ 500
+ 400
+ 471
+ 611
+ 969
+ 969
+ 969
+ 530
+ 684
+ 684
+ 684
+ 684
+ 684
+ 684
+ 974
+ 698
+ 631
+ 631
+ 631
+ 631
+ 294
+ 294
+ 294
+ 294
+ 774
+ 748
+ 787
+ 787
+ 787
+ 787
+ 787
+ 837
+ 787
+ 731
+ 731
+ 731
+ 731
+ 610
+ 604
+ 629
+ 612
+ 612
+ 612
+ 612
+ 612
+ 612
+ 981
+ 549
+ 615
+ 615
+ 615
+ 615
+ 277
+ 277
+ 277
+ 277
+ 611
+ 633
+ 611
+ 611
+ 611
+ 611
+ 611
+ 837
+ 611
+ 633
+ 633
+ 633
+ 633
+ 591
+ 634
+ 591
+ ]
+>>
+endobj
+
+60 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 61 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+61 0 obj
+220
+endobj
+
+62 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 63 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+63 0 obj
+12
+endobj
+
+64 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 65 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+65 0 obj
+220
+endobj
+
+66 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 67 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+67 0 obj
+12
+endobj
+
+68 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 69 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+69 0 obj
+220
+endobj
+
+70 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 71 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+71 0 obj
+12
+endobj
+
+72 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 73 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+73 0 obj
+220
+endobj
+
+74 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 75 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+75 0 obj
+12
+endobj
+
+76 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 77 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+77 0 obj
+220
+endobj
+
+78 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 79 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+79 0 obj
+12
+endobj
+
+80 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 81 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+81 0 obj
+220
+endobj
+
+82 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 83 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+83 0 obj
+12
+endobj
+
+84 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 18
+ 18
+ ]
+ /Resources <<
+ /ExtGState <<
+ /GS0 <<
+ /AIS false
+ /BM /Normal
+ /CA .6
+ /Type /ExtGState
+ /ca .6
+ >>
+ >>
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 85 0 R
+>>
+stream
+q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b
+endstream
+endobj
+
+85 0 obj
+929
+endobj
+
+86 0 obj
+<<
+ /A 153 0 R
+ /K [
+ 0
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+87 0 obj
+<<
+ /A 154 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+88 0 obj
+<<
+ /A 155 0 R
+ /K [
+ 1
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+89 0 obj
+<<
+ /A 156 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+90 0 obj
+<<
+ /A 157 0 R
+ /K [
+ 2
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+91 0 obj
+<<
+ /A 158 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+92 0 obj
+<<
+ /A 159 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+93 0 obj
+<<
+ /A 160 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+94 0 obj
+<<
+ /A 161 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+95 0 obj
+<<
+ /A 162 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+96 0 obj
+<<
+ /A 163 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+97 0 obj
+<<
+ /A 164 0 R
+ /K [
+ 3
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+98 0 obj
+<<
+ /A 165 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+99 0 obj
+<<
+ /A 166 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+100 0 obj
+<<
+ /A 167 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+101 0 obj
+<<
+ /A 168 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+102 0 obj
+<<
+ /A 169 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+103 0 obj
+<<
+ /A 170 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+104 0 obj
+<<
+ /A 171 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+105 0 obj
+<<
+ /A 172 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+106 0 obj
+<<
+ /A 173 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+107 0 obj
+<<
+ /A 174 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+108 0 obj
+<<
+ /A 175 0 R
+ /K [
+ 4
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+109 0 obj
+<<
+ /A 176 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+110 0 obj
+<<
+ /A 177 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+111 0 obj
+<<
+ /A 178 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+112 0 obj
+<<
+ /A 179 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+113 0 obj
+<<
+ /A 180 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+114 0 obj
+<<
+ /A 181 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+115 0 obj
+<<
+ /A 182 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+116 0 obj
+<<
+ /A 183 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+117 0 obj
+<<
+ /A 184 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+118 0 obj
+<<
+ /A 185 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+119 0 obj
+<<
+ /A 186 0 R
+ /K [
+ 5
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+120 0 obj
+<<
+ /A 187 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+121 0 obj
+<<
+ /A 188 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+122 0 obj
+<<
+ /A 189 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+123 0 obj
+<<
+ /A 190 0 R
+ /K [
+ 6
+ 7
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+124 0 obj
+<<
+ /A 191 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+125 0 obj
+<<
+ /A 192 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+126 0 obj
+<<
+ /A 193 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+127 0 obj
+<<
+ /A 194 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+128 0 obj
+<<
+ /A 195 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+129 0 obj
+<<
+ /A 196 0 R
+ /K [
+ 8
+ 9
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+130 0 obj
+<<
+ /K [
+ 10
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+131 0 obj
+<<
+ /K [
+ 11
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+132 0 obj
+<<
+ /K [
+ 12
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+133 0 obj
+<<
+ /K [
+ 13
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+134 0 obj
+<<
+ /K [
+ 14
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+135 0 obj
+<<
+ /K [
+ 15
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+136 0 obj
+<<
+ /K [
+ 16
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+137 0 obj
+<<
+ /K [
+ 17
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+138 0 obj
+<<
+ /K [
+ 18
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+139 0 obj
+<<
+ /K [
+ 19
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+140 0 obj
+<<
+ /K [
+ 20
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+141 0 obj
+<<
+ /K [
+ 21
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+142 0 obj
+<<
+ /K [
+ 22
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+143 0 obj
+<<
+ /K [
+ 23
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+144 0 obj
+<<
+ /K [
+ 24
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+145 0 obj
+<<
+ /Ascent 891
+ /CapHeight 981
+ /Descent -216
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1277
+ 981
+ ]
+ /FontFile2 197 0 R
+ /FontName /BAAAAA+LiberationSerif
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+146 0 obj
+<<
+ /Length 147 0 R
+>>
+stream
+/CIDInit/ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo<<
+/Registry (Adobe)
+/Ordering (UCS)
+/Supplement 0
+>> def
+/CMapName/Adobe-Identity-UCS def
+/CMapType 2 def
+1 begincodespacerange
+<00> <FF>
+endcodespacerange
+32 beginbfchar
+<01> <0057>
+<02> <0068>
+<03> <0065>
+<04> <0072>
+<05> <2019>
+<06> <0073>
+<07> <0020>
+<08> <006D>
+<09> <0079>
+<0A> <0066>
+<0B> <006F>
+<0C> <003F>
+<0D> <0054>
+<0E> <0078>
+<0F> <0074>
+<10> <0046>
+<11> <0069>
+<12> <006C>
+<13> <0064>
+<14> <0061>
+<15> <0031>
+<16> <0063>
+<17> <006B>
+<18> <0032>
+<19> <0050>
+<1A> <004C>
+<1B> <0043>
+<1C> <0062>
+<1D> <0044>
+<1E> <0070>
+<1F> <0077>
+<20> <006E>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+endstream
+endobj
+
+147 0 obj
+702
+endobj
+
+148 0 obj
+<<
+ /Ascent 905
+ /CapHeight 979
+ /Descent -211
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1300
+ 979
+ ]
+ /FontName /LiberationSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+149 0 obj
+<<
+ /Ascent 905
+ /CapHeight 979
+ /Descent -211
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1300
+ 979
+ ]
+ /FontFile2 199 0 R
+ /FontName /DAAAAA+LiberationSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+150 0 obj
+<<
+ /Length 151 0 R
+>>
+stream
+/CIDInit/ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo<<
+/Registry (Adobe)
+/Ordering (UCS)
+/Supplement 0
+>> def
+/CMapName/Adobe-Identity-UCS def
+/CMapType 2 def
+1 begincodespacerange
+<00> <FF>
+endcodespacerange
+22 beginbfchar
+<01> <0072>
+<02> <0031>
+<03> <002D>
+<04> <0061>
+<05> <0062>
+<06> <0063>
+<07> <0043>
+<08> <0068>
+<09> <0065>
+<0A> <006B>
+<0B> <0020>
+<0C> <0042>
+<0D> <006F>
+<0E> <0078>
+<0F> <0032>
+<10> <0033>
+<11> <004F>
+<12> <0070>
+<13> <0074>
+<14> <0069>
+<15> <006E>
+<16> <0075>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+endstream
+endobj
+
+151 0 obj
+582
+endobj
+
+152 0 obj
+<<
+ /Ascent 928
+ /CapHeight 1232
+ /Descent -235
+ /Flags 4
+ /FontBBox [
+ -1020
+ -462
+ 1792
+ 1232
+ ]
+ /FontName /DejaVuSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+153 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+154 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+155 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+156 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+157 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+158 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+159 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+160 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+161 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+162 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+163 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+164 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+165 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+166 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+167 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+168 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+169 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+170 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+171 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+172 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+173 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+174 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+175 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+176 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+177 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+178 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+179 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+180 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+181 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+182 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+183 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+184 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+185 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+186 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+187 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+188 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+189 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+190 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+191 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+192 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+193 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+194 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+195 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+196 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+197 0 obj
+<<
+ /Length1 16184
+ /Length 198 0 R
+>>
+stream
+true
+{
+ 
+
+
+
+ 
+C#Ce
+-,
+ C#C -,
+-, i@a
+@@ @  CTX@
+#eB #B#?
+
+ H 
+_Y @
+ H 
+ PY
+_@qrr
+ 6A--XSY-- -
+PY
+
+@adH$4Dd $D
+9$d$!H@*H@
+ PY  
++,@@,-@@:-- -
+ PY
+"QYPY 
+PY
+
+
+sYvY@
+
+ `Y `Y_Y
+ _Y o/oO?/o_8/?^]]]]]]qqqqrr^]]]]]]qqqqqqqrrrrr
+ 
+
+
+
+"#PY PY QY
+
+ H 
+PY @
+ H 
+
+\
+ 4 : * p42
+nQ
+
+Copyright (c) 2012 Red Hat, Inc.Liberation SerifRegularAscender - Liberation SerifLiberation SerifVersion 2.00.2LiberationSerifLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman. Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL
+
+
+endstream
+endobj
+
+%QDF: ignore_newline
+198 0 obj
+16184
+endobj
+
+199 0 obj
+<<
+ /Length1 11088
+ /Length 200 0 R
+>>
+stream
+true
+ 
+ 
+C#Ce
+-,
+ C#C -,
+-, i@a
+@@ @  CTX@
+#eB #B#?
+
+
+
+
+!PY%?%%p%%%%%]]]qqqrr
+6YAXhZ
+
+PY
+]
+
+
+
+
+
+  v D T d 6 $         v d   & F V g F V  d V D 6 $      & 6 F 7f  @6=BH9 " 
+
+
+
+
+r
+iN
+
+Copyright (c) 2012 Red Hat, Inc.Liberation SansRegularAscender - Liberation SansLiberation SansVersion 2.00.2LiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL
+
+O P(F(F*F+_O_ F@FF@36FFUHU2
+endstream
+endobj
+
+%QDF: ignore_newline
+200 0 obj
+11088
+endobj
+
+xref
+0 201
+0000000000 65535 f
+0000000025 00000 n
+0000000413 00000 n
+0000000598 00000 n
+0000000671 00000 n
+0000000971 00000 n
+0000001102 00000 n
+0000001491 00000 n
+0000001880 00000 n
+0000002269 00000 n
+0000002400 00000 n
+0000002754 00000 n
+0000003305 00000 n
+0000003781 00000 n
+0000004202 00000 n
+0000004673 00000 n
+0000005098 00000 n
+0000005237 00000 n
+0000005387 00000 n
+0000005477 00000 n
+0000005714 00000 n
+0000005734 00000 n
+0000006100 00000 n
+0000006464 00000 n
+0000006830 00000 n
+0000006998 00000 n
+0000007018 00000 n
+0000007256 00000 n
+0000007276 00000 n
+0000007357 00000 n
+0000007525 00000 n
+0000007545 00000 n
+0000007783 00000 n
+0000007803 00000 n
+0000007971 00000 n
+0000007991 00000 n
+0000008229 00000 n
+0000008249 00000 n
+0000008615 00000 n
+0000008979 00000 n
+0000009345 00000 n
+0000009589 00000 n
+0000009609 00000 n
+0000010075 00000 n
+0000010096 00000 n
+0000010372 00000 n
+0000010393 00000 n
+0000010666 00000 n
+0000010687 00000 n
+0000010959 00000 n
+0000010980 00000 n
+0000011312 00000 n
+0000011476 00000 n
+0000016302 00000 n
+0000016324 00000 n
+0000017112 00000 n
+0000017513 00000 n
+0000017964 00000 n
+0000019881 00000 n
+0000020251 00000 n
+0000022165 00000 n
+0000022541 00000 n
+0000022562 00000 n
+0000022730 00000 n
+0000022750 00000 n
+0000023126 00000 n
+0000023147 00000 n
+0000023315 00000 n
+0000023335 00000 n
+0000023711 00000 n
+0000023732 00000 n
+0000023900 00000 n
+0000023920 00000 n
+0000024296 00000 n
+0000024317 00000 n
+0000024485 00000 n
+0000024505 00000 n
+0000024881 00000 n
+0000024902 00000 n
+0000025070 00000 n
+0000025090 00000 n
+0000025466 00000 n
+0000025487 00000 n
+0000025655 00000 n
+0000025675 00000 n
+0000026898 00000 n
+0000026919 00000 n
+0000027032 00000 n
+0000027128 00000 n
+0000027241 00000 n
+0000027337 00000 n
+0000027450 00000 n
+0000027546 00000 n
+0000027642 00000 n
+0000027738 00000 n
+0000027834 00000 n
+0000027930 00000 n
+0000028026 00000 n
+0000028139 00000 n
+0000028235 00000 n
+0000028331 00000 n
+0000028428 00000 n
+0000028525 00000 n
+0000028622 00000 n
+0000028719 00000 n
+0000028816 00000 n
+0000028913 00000 n
+0000029010 00000 n
+0000029107 00000 n
+0000029221 00000 n
+0000029318 00000 n
+0000029415 00000 n
+0000029512 00000 n
+0000029609 00000 n
+0000029706 00000 n
+0000029803 00000 n
+0000029900 00000 n
+0000029997 00000 n
+0000030094 00000 n
+0000030191 00000 n
+0000030305 00000 n
+0000030402 00000 n
+0000030499 00000 n
+0000030596 00000 n
+0000030716 00000 n
+0000030813 00000 n
+0000030910 00000 n
+0000031007 00000 n
+0000031104 00000 n
+0000031201 00000 n
+0000031321 00000 n
+0000031419 00000 n
+0000031517 00000 n
+0000031615 00000 n
+0000031713 00000 n
+0000031811 00000 n
+0000031909 00000 n
+0000032007 00000 n
+0000032105 00000 n
+0000032203 00000 n
+0000032301 00000 n
+0000032399 00000 n
+0000032497 00000 n
+0000032595 00000 n
+0000032693 00000 n
+0000032791 00000 n
+0000033036 00000 n
+0000033797 00000 n
+0000033819 00000 n
+0000034035 00000 n
+0000034279 00000 n
+0000034920 00000 n
+0000034942 00000 n
+0000035157 00000 n
+0000035214 00000 n
+0000035271 00000 n
+0000035328 00000 n
+0000035385 00000 n
+0000035442 00000 n
+0000035499 00000 n
+0000035556 00000 n
+0000035613 00000 n
+0000035670 00000 n
+0000035727 00000 n
+0000035784 00000 n
+0000035841 00000 n
+0000035898 00000 n
+0000035955 00000 n
+0000036012 00000 n
+0000036069 00000 n
+0000036126 00000 n
+0000036183 00000 n
+0000036240 00000 n
+0000036297 00000 n
+0000036354 00000 n
+0000036411 00000 n
+0000036468 00000 n
+0000036525 00000 n
+0000036582 00000 n
+0000036639 00000 n
+0000036696 00000 n
+0000036753 00000 n
+0000036810 00000 n
+0000036867 00000 n
+0000036924 00000 n
+0000036981 00000 n
+0000037038 00000 n
+0000037095 00000 n
+0000037152 00000 n
+0000037209 00000 n
+0000037266 00000 n
+0000037323 00000 n
+0000037380 00000 n
+0000037437 00000 n
+0000037494 00000 n
+0000037551 00000 n
+0000037608 00000 n
+0000037665 00000 n
+0000053947 00000 n
+0000053971 00000 n
+0000065157 00000 n
+trailer <<
+ /DocChecksum /CC322E136FE95DECF8BC297B1A9B2C2E
+ /Info 2 0 R
+ /Root 1 0 R
+ /Size 201
+ /ID [<f8abc47bb1df544a0df9c15a75ef0046><31415926535897932384626433832795>]
+>>
+startxref
+65181
+%%EOF
diff --git a/qpdf/qtest/qpdf/appearances-11.pdf b/qpdf/qtest/qpdf/appearances-11.pdf
new file mode 100644
index 00000000..a63f1827
--- /dev/null
+++ b/qpdf/qtest/qpdf/appearances-11.pdf
@@ -0,0 +1,3853 @@
+%PDF-1.5
+%
+%QDF-1.0
+
+1 0 obj
+<<
+ /AcroForm <<
+ /DR 3 0 R
+ /Fields [
+ 4 0 R
+ 5 0 R
+ 6 0 R
+ 7 0 R
+ 8 0 R
+ 9 0 R
+ 10 0 R
+ 11 0 R
+ 12 0 R
+ 13 0 R
+ 14 0 R
+ ]
+ >>
+ /Lang (en-US)
+ /MarkInfo <<
+ /Marked true
+ >>
+ /OpenAction [
+ 15 0 R
+ /XYZ
+ null
+ null
+ 0
+ ]
+ /Pages 16 0 R
+ /StructTreeRoot 17 0 R
+ /Type /Catalog
+>>
+endobj
+
+2 0 obj
+<<
+ /CreationDate (D:20190103125434-05'00')
+ /Creator <feff005700720069007400650072>
+ /Producer <feff004c0069006200720065004f0066006600690063006500200036002e0031>
+>>
+endobj
+
+3 0 obj
+<<
+ /Font 18 0 R
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+>>
+endobj
+
+4 0 obj
+<<
+ /AP <<
+ /N 19 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Tx
+ /P 15 0 R
+ /Rect [
+ 123.499
+ 689.901
+ 260.801
+ 704.699
+ ]
+ /Subtype /Widget
+ /T (text)
+ /Type /Annot
+ /V <feff006100620063>
+>>
+endobj
+
+5 0 obj
+<<
+ /DV /1
+ /FT /Btn
+ /Ff 49152
+ /Kids [
+ 21 0 R
+ 22 0 R
+ 23 0 R
+ ]
+ /P 15 0 R
+ /T (r1)
+ /V /2
+>>
+endobj
+
+6 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 24 0 R
+ /Yes 26 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Off
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 554.301
+ 130.701
+ 566.349
+ ]
+ /Subtype /Widget
+ /T (checkbox1)
+ /Type /Annot
+ /V /Off
+>>
+endobj
+
+7 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 29 0 R
+ /Yes 31 0 R
+ >>
+ >>
+ /AS /Yes
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Yes
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 527.751
+ 130.701
+ 539.799
+ ]
+ /Subtype /Widget
+ /T (checkbox2)
+ /Type /Annot
+ /V /Yes
+>>
+endobj
+
+8 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 33 0 R
+ /Yes 35 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Off
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 500.501
+ 130.701
+ 512.549
+ ]
+ /Subtype /Widget
+ /T (checkbox3)
+ /Type /Annot
+ /V /Off
+>>
+endobj
+
+9 0 obj
+<<
+ /DV /2
+ /FT /Btn
+ /Ff 49152
+ /Kids [
+ 37 0 R
+ 38 0 R
+ 39 0 R
+ ]
+ /P 15 0 R
+ /T (r2)
+ /V /2
+>>
+endobj
+
+10 0 obj
+<<
+ /AP <<
+ /N 40 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff00730061006c00610064002003c002ac>
+ /F 4
+ /FT /Tx
+ /P 15 0 R
+ /Rect [
+ 113.649
+ 260.151
+ 351.101
+ 278.099
+ ]
+ /Subtype /Widget
+ /T (text2)
+ /Type /Annot
+ /V <feff00730061006c00610064002003c002ac>
+>>
+endobj
+
+11 0 obj
+<<
+ /AP <<
+ /N 42 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Opt [
+ <feff0031>
+ <feff0032>
+ <feff0033>
+ <feff0034>
+ <feff0066006900760065>
+ <feff007300690078>
+ <feff0073006500760065006e>
+ <feff00650069006700680074>
+ <feff0039>
+ <feff00310030>
+ <feff00310031>
+ <feff00310032>
+ ]
+ /P 15 0 R
+ /Rect [
+ 158.449
+ 156.651
+ 221.001
+ 232.849
+ ]
+ /Subtype /Widget
+ /T (list1)
+ /Type /Annot
+ /V <feff00310031>
+>>
+endobj
+
+12 0 obj
+<<
+ /AP <<
+ /N 44 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 131072
+ /Opt [
+ <feff006e0069006e0065>
+ <feff00740065006e>
+ <feff0065006c0065007000680061006e0074>
+ <feff007400770065006c00760065>
+ ]
+ /P 15 0 R
+ /Rect [
+ 159.149
+ 107.251
+ 244.201
+ 130.949
+ ]
+ /Subtype /Widget
+ /T (drop1)
+ /Type /Annot
+ /V <feff0065006c0065007000680061006e0074>
+>>
+endobj
+
+13 0 obj
+<<
+ /AP <<
+ /N 46 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 393216
+ /Opt [
+ <feff006f006e0065>
+ <feff00740077006f>
+ <feff00700069>
+ <feff0066006f00750072>
+ ]
+ /P 15 0 R
+ /Rect [
+ 403.949
+ 159.401
+ 459.001
+ 232.849
+ ]
+ /Subtype /Widget
+ /T (combolist1)
+ /Type /Annot
+ /V <feff00700069>
+>>
+endobj
+
+14 0 obj
+<<
+ /AP <<
+ /N 48 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 393216
+ /Opt [
+ <feff0061006c007000680061>
+ <feff0062006500740061>
+ <feff00670061006d006d0061>
+ <feff00640065006c00740061>
+ ]
+ /P 15 0 R
+ /Rect [
+ 404.599
+ 101.451
+ 476.701
+ 135.349
+ ]
+ /Subtype /Widget
+ /T (combodrop1)
+ /Type /Annot
+ /V <feff00640065006c00740061>
+>>
+endobj
+
+%% Page 1
+15 0 obj
+<<
+ /Annots [
+ 4 0 R
+ 21 0 R
+ 22 0 R
+ 23 0 R
+ 6 0 R
+ 7 0 R
+ 8 0 R
+ 37 0 R
+ 38 0 R
+ 39 0 R
+ 10 0 R
+ 13 0 R
+ 11 0 R
+ 12 0 R
+ 14 0 R
+ 50 0 R
+ 51 0 R
+ ]
+ /Contents 52 0 R
+ /Group <<
+ /CS /DeviceRGB
+ /I true
+ /S /Transparency
+ >>
+ /MediaBox [
+ 0
+ 0
+ 612
+ 792
+ ]
+ /Parent 16 0 R
+ /Resources 3 0 R
+ /StructParents 0
+ /Type /Page
+>>
+endobj
+
+16 0 obj
+<<
+ /Count 1
+ /Kids [
+ 15 0 R
+ ]
+ /MediaBox [
+ 0
+ 0
+ 612
+ 792
+ ]
+ /Resources 3 0 R
+ /Type /Pages
+>>
+endobj
+
+17 0 obj
+<<
+ /K [
+ 54 0 R
+ ]
+ /ParentTree 55 0 R
+ /RoleMap <<
+ /Document /Document
+ /Standard /P
+ >>
+ /Type /StructTreeRoot
+>>
+endobj
+
+18 0 obj
+<<
+ /F1 56 0 R
+ /F2 57 0 R
+ /F3 58 0 R
+ /F4 59 0 R
+ /ZaDi 28 0 R
+>>
+endobj
+
+19 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 137.3
+ 14.8
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 20 0 R
+>>
+stream
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F2 12 Tf
+q
+BT
+1 2.600000 Td
+(abc) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+20 0 obj
+82
+endobj
+
+21 0 obj
+<<
+ /AP <<
+ /N <<
+ /1 60 0 R
+ /Off 62 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 152.749
+ 648.501
+ 164.801
+ 660.549
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+22 0 obj
+<<
+ /AP <<
+ /N <<
+ /2 64 0 R
+ /Off 66 0 R
+ >>
+ >>
+ /AS /2
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 152.749
+ 627.301
+ 164.801
+ 639.349
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+23 0 obj
+<<
+ /AP <<
+ /N <<
+ /3 68 0 R
+ /Off 70 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 151.399
+ 606.501
+ 163.451
+ 618.549
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+24 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 25 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+25 0 obj
+12
+endobj
+
+26 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 27 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+27 0 obj
+82
+endobj
+
+28 0 obj
+<<
+ /BaseFont /ZapfDingbats
+ /Subtype /Type1
+ /Type /Font
+>>
+endobj
+
+29 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 30 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+30 0 obj
+12
+endobj
+
+31 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 32 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+32 0 obj
+82
+endobj
+
+33 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 34 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+34 0 obj
+12
+endobj
+
+35 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 36 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+36 0 obj
+82
+endobj
+
+37 0 obj
+<<
+ /AP <<
+ /N <<
+ /1 72 0 R
+ /Off 74 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 118.649
+ 388.101
+ 130.701
+ 400.149
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+38 0 obj
+<<
+ /AP <<
+ /N <<
+ /2 76 0 R
+ /Off 78 0 R
+ >>
+ >>
+ /AS /2
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 119.349
+ 362.201
+ 131.401
+ 374.249
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+39 0 obj
+<<
+ /AP <<
+ /N <<
+ /3 80 0 R
+ /Off 82 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 119.349
+ 333.551
+ 131.401
+ 345.599
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+40 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 237.45
+ 17.95
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 41 0 R
+>>
+stream
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F2 12 Tf
+q
+BT
+1 4.175000 Td
+(salad ??) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+41 0 obj
+87
+endobj
+
+42 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 62.55
+ 76.2
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 43 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 62.55 76.2 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+q
+0.85 0.85 0.85 rg
+0 14.100000 62 12.000000 re f
+Q
+BT
+1 64.100000 Td
+(seven) Tj
+ET
+BT
+1 52.100000 Td
+(eight) Tj
+ET
+BT
+1 40.100000 Td
+(9) Tj
+ET
+BT
+1 28.100000 Td
+(10) Tj
+ET
+BT
+1 16.100000 Td
+(11) Tj
+ET
+BT
+1 4.100000 Td
+(12) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+43 0 obj
+317
+endobj
+
+44 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 85.05
+ 23.7
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 45 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 85.05 23.7 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+BT
+1 7.850000 Td
+(elephant) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+45 0 obj
+121
+endobj
+
+46 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 55.05
+ 73.45
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 47 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 55.05 73.45 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+BT
+1 32.725000 Td
+(pi) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+47 0 obj
+117
+endobj
+
+48 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 72.1
+ 33.9
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 49 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 72.1 33.9 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+BT
+1 12.950000 Td
+(delta) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+49 0 obj
+118
+endobj
+
+50 0 obj
+<<
+ /AP <<
+ /N 84 0 R
+ >>
+ /C [
+ 1
+ 1
+ 0
+ ]
+ /CA 1
+ /Contents (Salad)
+ /CreationDate (D:20181231235455Z00'00)
+ /F 28
+ /M (D:20181231235455Z00'00)
+ /Name /Comment
+ /P 15 0 R
+ /Popup 51 0 R
+ /Rect [
+ 435
+ 703
+ 453
+ 721
+ ]
+ /Subtype /Text
+ /T (Jay Berkenbilt)
+ /Type /Annot
+>>
+endobj
+
+51 0 obj
+<<
+ /F 28
+ /Open false
+ /Parent 50 0 R
+ /Rect [
+ 612
+ 601
+ 792
+ 721
+ ]
+ /Subtype /Popup
+ /Type /Annot
+>>
+endobj
+
+%% Contents for page 1
+52 0 obj
+<<
+ /Length 53 0 R
+>>
+stream
+0.1 w
+/Artifact BMC
+q 0 0.028 611.971 791.971 re
+W* n
+EMC
+/Standard<</MCID 0>>BDC
+q 0 0 0 rg
+BT
+56.8 724.1 Td /F1 12 Tf[<01>1<0203>1<0403>1<05>58<06>-10<0708>2<09070a0b0408>2(\f)]TJ
+ET
+Q
+EMC
+/Standard<</MCID 1>>BDC
+q 0 0 0 rg
+BT
+56.8 693 Td /F1 12 Tf[(\r)68<03>1<0e0f>2<0710>-1<11>2<03>1<12>2<13>-7<0707070707>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 2>>BDC
+q 0 0 0 rg
+BT
+56.8 661.9 Td /F1 12 Tf[<0414>1<1311>2<0b0715>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 3>>BDC
+q 0 0 0 rg
+BT
+56.8 565.3 Td /F1 12 Tf[<16>1<0203>1<16>1<17>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 4>>BDC
+q 0 0 0 rg
+BT
+56.8 413.5 Td /F1 12 Tf[<0414>1<1311>2<0b0718>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 5>>BDC
+q 0 0 0 rg
+BT
+56.8 261.7 Td /F1 12 Tf[<19>-1<0b0f>2<14>1<0f>2<0b>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 6>>BDC
+q 0 0 0 rg
+BT
+56.8 206.5 Td /F1 12 Tf[<1a>2<11>2<06>-2<0f>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 7>>BDC
+q 0 0 0 rg
+BT
+269.5 206.5 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0712>2<11>2<06>-2<0f>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 8>>BDC
+q 0 0 0 rg
+BT
+56.8 123.7 Td /F1 12 Tf[<1d>5<040b1e130b1f>-2( )]TJ
+ET
+Q
+EMC
+/Standard<</MCID 9>>BDC
+q 0 0 0 rg
+BT
+269.5 123.7 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0713040b1e130b1f>-2( )]TJ
+ET
+Q
+EMC
+/Form<</MCID 10>>BDC
+0 0 0 RG
+1 1 1 rg
+120.5 686.9 143.3 20.8 re B*
+EMC
+/Form<</MCID 11>>BDC
+151.55 642.6 183.45 23.9 re f*
+q 1.2 w 0 0 0 RG
+158.75 660.55 m 162.1 660.55 164.8 657.9 164.8 654.55 c
+164.8 651.2 162.1 648.5 158.75 648.5 c
+155.4 648.5 152.75 651.2 152.75 654.55 c
+152.75 657.9 155.4 660.55 158.75 660.55 c s
+ Q
+q 169.6 642.6 164.25 23.9 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+169.6 650.3 Td /F3 12 Tf[<0102>-1<0304>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 12>>BDC
+1 1 1 rg
+151.55 624.8 125.5 17.1 re f*
+q 1.2 w 0 0 0 RG
+158.75 639.35 m 162.1 639.35 164.8 636.7 164.8 633.35 c
+164.8 630 162.1 627.3 158.75 627.3 c
+155.4 627.3 152.75 630 152.75 633.35 c
+152.75 636.7 155.4 639.35 158.75 639.35 c s
+ Q
+q 169.6 624.8 106.3 17.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+169.6 629.1 Td /F3 12 Tf[<0102>-1<0305>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 13>>BDC
+1 1 1 rg
+150.2 605.7 118.7 13.7 re f*
+q 1.2 w 0 0 0 RG
+157.4 618.55 m 160.75 618.55 163.45 615.9 163.45 612.55 c
+163.45 609.2 160.75 606.5 157.4 606.5 c
+154.05 606.5 151.4 609.2 151.4 612.55 c
+151.4 615.9 154.05 618.55 157.4 618.55 c s
+ Q
+q 168.25 605.7 99.5 13.7 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+168.3 608.3 Td /F3 12 Tf[<0102>-1<0306>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 14>>BDC
+1 1 1 rg
+117.45 544.3 86.65 32.1 re f*
+q 1.2 w 0 0 0 RG
+118.65 554.3 12.05 12.05 re S
+ Q
+q 135.5 544.3 67.45 32.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 556.1 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 15>>BDC
+1 1 1 rg
+117.45 523.2 85.3 21.15 re f*
+q 1.2 w 0 0 0 RG
+118.65 527.75 12.05 12.05 re S
+ Q
+q 135.5 523.2 66.1 21.15 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 529.6 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<0f>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 16>>BDC
+1 1 1 rg
+117.45 498 72.35 17.1 re f*
+q 1.2 w 0 0 0 RG
+118.65 500.5 12.05 12.05 re S
+ Q
+q 135.5 498 53.15 17.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 502.3 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<10>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 17>>BDC
+1 1 1 rg
+117.45 378.75 169.15 30.75 re f*
+q 1.2 w 0 0 0 RG
+124.65 400.15 m 128 400.15 130.7 397.5 130.7 394.15 c
+130.7 390.8 128 388.1 124.65 388.1 c
+121.3 388.1 118.65 390.8 118.65 394.15 c
+118.65 397.5 121.3 400.15 124.65 400.15 c s
+ Q
+q 135.5 378.75 149.95 30.75 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 389.9 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 18>>BDC
+1 1 1 rg
+118.15 352.85 180.7 30.75 re f*
+q 1.2 w 0 0 0 RG
+125.35 374.25 m 128.7 374.25 131.4 371.6 131.4 368.25 c
+131.4 364.9 128.7 362.2 125.35 362.2 c
+122 362.2 119.35 364.9 119.35 368.25 c
+119.35 371.6 122 374.25 125.35 374.25 c s
+ Q
+q 136.2 352.85 161.5 30.75 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+136.2 364 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<0f>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 19>>BDC
+1 1 1 rg
+118.15 322.85 139.15 33.5 re f*
+q 1.2 w 0 0 0 RG
+125.35 345.6 m 128.7 345.6 131.4 342.95 131.4 339.6 c
+131.4 336.25 128.7 333.55 125.35 333.55 c
+122 333.55 119.35 336.25 119.35 339.6 c
+119.35 342.95 122 345.6 125.35 345.6 c s
+ Q
+q 136.2 322.85 119.95 33.5 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+136.2 335.4 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<10>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 20>>BDC
+0 0 0 RG
+1 1 1 rg
+110.65 257.15 243.45 23.95 re B*
+EMC
+/Form<</MCID 21>>BDC
+155.95 154.15 67.55 81.2 re B*
+EMC
+/Form<</MCID 22>>BDC
+156.65 104.75 90.05 28.7 re B*
+EMC
+/Form<</MCID 23>>BDC
+401.45 156.9 60.05 78.45 re B*
+EMC
+/Form<</MCID 24>>BDC
+402.1 98.95 77.1 38.9 re B*
+EMC
+Q
+endstream
+endobj
+
+%QDF: ignore_newline
+53 0 obj
+4747
+endobj
+
+54 0 obj
+<<
+ /K [
+ 86 0 R
+ 87 0 R
+ 88 0 R
+ 89 0 R
+ 90 0 R
+ 91 0 R
+ 92 0 R
+ 93 0 R
+ 94 0 R
+ 95 0 R
+ 96 0 R
+ 97 0 R
+ 98 0 R
+ 99 0 R
+ 100 0 R
+ 101 0 R
+ 102 0 R
+ 103 0 R
+ 104 0 R
+ 105 0 R
+ 106 0 R
+ 107 0 R
+ 108 0 R
+ 109 0 R
+ 110 0 R
+ 111 0 R
+ 112 0 R
+ 113 0 R
+ 114 0 R
+ 115 0 R
+ 116 0 R
+ 117 0 R
+ 118 0 R
+ 119 0 R
+ 120 0 R
+ 121 0 R
+ 122 0 R
+ 123 0 R
+ 124 0 R
+ 125 0 R
+ 126 0 R
+ 127 0 R
+ 128 0 R
+ 129 0 R
+ 130 0 R
+ 131 0 R
+ 132 0 R
+ 133 0 R
+ 134 0 R
+ 135 0 R
+ 136 0 R
+ 137 0 R
+ 138 0 R
+ 139 0 R
+ 140 0 R
+ 141 0 R
+ 142 0 R
+ 143 0 R
+ 144 0 R
+ ]
+ /P 17 0 R
+ /Pg 15 0 R
+ /S /Document
+ /Type /StructElem
+>>
+endobj
+
+55 0 obj
+<<
+ /Nums [
+ 0
+ [
+ 86 0 R
+ 88 0 R
+ 90 0 R
+ 97 0 R
+ 108 0 R
+ 119 0 R
+ 123 0 R
+ 123 0 R
+ 129 0 R
+ 129 0 R
+ 130 0 R
+ 131 0 R
+ 132 0 R
+ 133 0 R
+ 134 0 R
+ 135 0 R
+ 136 0 R
+ 137 0 R
+ 138 0 R
+ 139 0 R
+ 140 0 R
+ 141 0 R
+ 142 0 R
+ 143 0 R
+ 144 0 R
+ ]
+ ]
+>>
+endobj
+
+56 0 obj
+<<
+ /BaseFont /BAAAAA+LiberationSerif
+ /FirstChar 0
+ /FontDescriptor 145 0 R
+ /LastChar 32
+ /Subtype /TrueType
+ /ToUnicode 146 0 R
+ /Type /Font
+ /Widths [
+ 777
+ 943
+ 500
+ 443
+ 333
+ 333
+ 389
+ 250
+ 777
+ 500
+ 333
+ 500
+ 443
+ 610
+ 500
+ 277
+ 556
+ 277
+ 277
+ 500
+ 443
+ 500
+ 443
+ 500
+ 500
+ 556
+ 610
+ 666
+ 500
+ 722
+ 500
+ 722
+ 500
+ ]
+>>
+endobj
+
+57 0 obj
+<<
+ /BaseFont /LiberationSans
+ /Encoding /WinAnsiEncoding
+ /FirstChar 32
+ /FontDescriptor 148 0 R
+ /LastChar 255
+ /Subtype /TrueType
+ /Type /Font
+ /Widths [
+ 277
+ 277
+ 354
+ 556
+ 556
+ 889
+ 666
+ 190
+ 333
+ 333
+ 389
+ 583
+ 277
+ 333
+ 277
+ 277
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 277
+ 277
+ 583
+ 583
+ 583
+ 556
+ 1015
+ 666
+ 666
+ 722
+ 722
+ 666
+ 610
+ 777
+ 722
+ 277
+ 500
+ 666
+ 556
+ 833
+ 722
+ 777
+ 666
+ 777
+ 722
+ 666
+ 610
+ 722
+ 666
+ 943
+ 666
+ 666
+ 610
+ 277
+ 277
+ 277
+ 469
+ 556
+ 333
+ 556
+ 556
+ 500
+ 556
+ 556
+ 277
+ 556
+ 556
+ 222
+ 222
+ 500
+ 222
+ 833
+ 556
+ 556
+ 556
+ 556
+ 333
+ 500
+ 277
+ 556
+ 500
+ 722
+ 500
+ 500
+ 500
+ 333
+ 259
+ 333
+ 583
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 277
+ 333
+ 556
+ 556
+ 556
+ 556
+ 259
+ 556
+ 333
+ 736
+ 370
+ 556
+ 583
+ 333
+ 736
+ 552
+ 399
+ 548
+ 333
+ 333
+ 333
+ 576
+ 537
+ 333
+ 333
+ 333
+ 365
+ 556
+ 833
+ 833
+ 833
+ 610
+ 666
+ 666
+ 666
+ 666
+ 666
+ 666
+ 1000
+ 722
+ 666
+ 666
+ 666
+ 666
+ 277
+ 277
+ 277
+ 277
+ 722
+ 722
+ 777
+ 777
+ 777
+ 777
+ 777
+ 583
+ 777
+ 722
+ 722
+ 722
+ 722
+ 666
+ 666
+ 610
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 889
+ 500
+ 556
+ 556
+ 556
+ 556
+ 277
+ 277
+ 277
+ 277
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 548
+ 610
+ 556
+ 556
+ 556
+ 556
+ 500
+ 556
+ 500
+ ]
+>>
+endobj
+
+58 0 obj
+<<
+ /BaseFont /DAAAAA+LiberationSans
+ /FirstChar 0
+ /FontDescriptor 149 0 R
+ /LastChar 22
+ /Subtype /TrueType
+ /ToUnicode 150 0 R
+ /Type /Font
+ /Widths [
+ 750
+ 333
+ 556
+ 333
+ 556
+ 556
+ 500
+ 722
+ 556
+ 556
+ 500
+ 277
+ 666
+ 556
+ 500
+ 556
+ 556
+ 777
+ 556
+ 277
+ 222
+ 556
+ 556
+ ]
+>>
+endobj
+
+59 0 obj
+<<
+ /BaseFont /DejaVuSans
+ /Encoding /WinAnsiEncoding
+ /FirstChar 32
+ /FontDescriptor 152 0 R
+ /LastChar 255
+ /Subtype /TrueType
+ /Type /Font
+ /Widths [
+ 317
+ 400
+ 459
+ 837
+ 636
+ 950
+ 779
+ 274
+ 390
+ 390
+ 500
+ 837
+ 317
+ 360
+ 317
+ 336
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 336
+ 336
+ 837
+ 837
+ 837
+ 530
+ 1000
+ 684
+ 686
+ 698
+ 770
+ 631
+ 575
+ 774
+ 751
+ 294
+ 294
+ 655
+ 557
+ 862
+ 748
+ 787
+ 603
+ 787
+ 694
+ 634
+ 610
+ 731
+ 684
+ 988
+ 685
+ 610
+ 685
+ 390
+ 336
+ 390
+ 837
+ 500
+ 500
+ 612
+ 634
+ 549
+ 634
+ 615
+ 352
+ 634
+ 633
+ 277
+ 277
+ 579
+ 277
+ 974
+ 633
+ 611
+ 634
+ 634
+ 411
+ 520
+ 392
+ 633
+ 591
+ 817
+ 591
+ 591
+ 524
+ 636
+ 336
+ 636
+ 837
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 317
+ 400
+ 636
+ 636
+ 636
+ 636
+ 336
+ 500
+ 500
+ 1000
+ 471
+ 611
+ 837
+ 360
+ 1000
+ 500
+ 500
+ 837
+ 400
+ 400
+ 500
+ 636
+ 636
+ 317
+ 500
+ 400
+ 471
+ 611
+ 969
+ 969
+ 969
+ 530
+ 684
+ 684
+ 684
+ 684
+ 684
+ 684
+ 974
+ 698
+ 631
+ 631
+ 631
+ 631
+ 294
+ 294
+ 294
+ 294
+ 774
+ 748
+ 787
+ 787
+ 787
+ 787
+ 787
+ 837
+ 787
+ 731
+ 731
+ 731
+ 731
+ 610
+ 604
+ 629
+ 612
+ 612
+ 612
+ 612
+ 612
+ 612
+ 981
+ 549
+ 615
+ 615
+ 615
+ 615
+ 277
+ 277
+ 277
+ 277
+ 611
+ 633
+ 611
+ 611
+ 611
+ 611
+ 611
+ 837
+ 611
+ 633
+ 633
+ 633
+ 633
+ 591
+ 634
+ 591
+ ]
+>>
+endobj
+
+60 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 61 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+61 0 obj
+220
+endobj
+
+62 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 63 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+63 0 obj
+12
+endobj
+
+64 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 65 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+65 0 obj
+220
+endobj
+
+66 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 67 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+67 0 obj
+12
+endobj
+
+68 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 69 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+69 0 obj
+220
+endobj
+
+70 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 71 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+71 0 obj
+12
+endobj
+
+72 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 73 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+73 0 obj
+220
+endobj
+
+74 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 75 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+75 0 obj
+12
+endobj
+
+76 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 77 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+77 0 obj
+220
+endobj
+
+78 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 79 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+79 0 obj
+12
+endobj
+
+80 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 81 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+81 0 obj
+220
+endobj
+
+82 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 83 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+83 0 obj
+12
+endobj
+
+84 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 18
+ 18
+ ]
+ /Resources <<
+ /ExtGState <<
+ /GS0 <<
+ /AIS false
+ /BM /Normal
+ /CA .6
+ /Type /ExtGState
+ /ca .6
+ >>
+ >>
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 85 0 R
+>>
+stream
+q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b
+endstream
+endobj
+
+85 0 obj
+929
+endobj
+
+86 0 obj
+<<
+ /A 153 0 R
+ /K [
+ 0
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+87 0 obj
+<<
+ /A 154 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+88 0 obj
+<<
+ /A 155 0 R
+ /K [
+ 1
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+89 0 obj
+<<
+ /A 156 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+90 0 obj
+<<
+ /A 157 0 R
+ /K [
+ 2
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+91 0 obj
+<<
+ /A 158 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+92 0 obj
+<<
+ /A 159 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+93 0 obj
+<<
+ /A 160 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+94 0 obj
+<<
+ /A 161 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+95 0 obj
+<<
+ /A 162 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+96 0 obj
+<<
+ /A 163 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+97 0 obj
+<<
+ /A 164 0 R
+ /K [
+ 3
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+98 0 obj
+<<
+ /A 165 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+99 0 obj
+<<
+ /A 166 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+100 0 obj
+<<
+ /A 167 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+101 0 obj
+<<
+ /A 168 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+102 0 obj
+<<
+ /A 169 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+103 0 obj
+<<
+ /A 170 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+104 0 obj
+<<
+ /A 171 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+105 0 obj
+<<
+ /A 172 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+106 0 obj
+<<
+ /A 173 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+107 0 obj
+<<
+ /A 174 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+108 0 obj
+<<
+ /A 175 0 R
+ /K [
+ 4
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+109 0 obj
+<<
+ /A 176 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+110 0 obj
+<<
+ /A 177 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+111 0 obj
+<<
+ /A 178 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+112 0 obj
+<<
+ /A 179 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+113 0 obj
+<<
+ /A 180 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+114 0 obj
+<<
+ /A 181 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+115 0 obj
+<<
+ /A 182 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+116 0 obj
+<<
+ /A 183 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+117 0 obj
+<<
+ /A 184 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+118 0 obj
+<<
+ /A 185 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+119 0 obj
+<<
+ /A 186 0 R
+ /K [
+ 5
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+120 0 obj
+<<
+ /A 187 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+121 0 obj
+<<
+ /A 188 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+122 0 obj
+<<
+ /A 189 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+123 0 obj
+<<
+ /A 190 0 R
+ /K [
+ 6
+ 7
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+124 0 obj
+<<
+ /A 191 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+125 0 obj
+<<
+ /A 192 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+126 0 obj
+<<
+ /A 193 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+127 0 obj
+<<
+ /A 194 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+128 0 obj
+<<
+ /A 195 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+129 0 obj
+<<
+ /A 196 0 R
+ /K [
+ 8
+ 9
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+130 0 obj
+<<
+ /K [
+ 10
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+131 0 obj
+<<
+ /K [
+ 11
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+132 0 obj
+<<
+ /K [
+ 12
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+133 0 obj
+<<
+ /K [
+ 13
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+134 0 obj
+<<
+ /K [
+ 14
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+135 0 obj
+<<
+ /K [
+ 15
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+136 0 obj
+<<
+ /K [
+ 16
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+137 0 obj
+<<
+ /K [
+ 17
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+138 0 obj
+<<
+ /K [
+ 18
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+139 0 obj
+<<
+ /K [
+ 19
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+140 0 obj
+<<
+ /K [
+ 20
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+141 0 obj
+<<
+ /K [
+ 21
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+142 0 obj
+<<
+ /K [
+ 22
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+143 0 obj
+<<
+ /K [
+ 23
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+144 0 obj
+<<
+ /K [
+ 24
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+145 0 obj
+<<
+ /Ascent 891
+ /CapHeight 981
+ /Descent -216
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1277
+ 981
+ ]
+ /FontFile2 197 0 R
+ /FontName /BAAAAA+LiberationSerif
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+146 0 obj
+<<
+ /Length 147 0 R
+>>
+stream
+/CIDInit/ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo<<
+/Registry (Adobe)
+/Ordering (UCS)
+/Supplement 0
+>> def
+/CMapName/Adobe-Identity-UCS def
+/CMapType 2 def
+1 begincodespacerange
+<00> <FF>
+endcodespacerange
+32 beginbfchar
+<01> <0057>
+<02> <0068>
+<03> <0065>
+<04> <0072>
+<05> <2019>
+<06> <0073>
+<07> <0020>
+<08> <006D>
+<09> <0079>
+<0A> <0066>
+<0B> <006F>
+<0C> <003F>
+<0D> <0054>
+<0E> <0078>
+<0F> <0074>
+<10> <0046>
+<11> <0069>
+<12> <006C>
+<13> <0064>
+<14> <0061>
+<15> <0031>
+<16> <0063>
+<17> <006B>
+<18> <0032>
+<19> <0050>
+<1A> <004C>
+<1B> <0043>
+<1C> <0062>
+<1D> <0044>
+<1E> <0070>
+<1F> <0077>
+<20> <006E>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+endstream
+endobj
+
+147 0 obj
+702
+endobj
+
+148 0 obj
+<<
+ /Ascent 905
+ /CapHeight 979
+ /Descent -211
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1300
+ 979
+ ]
+ /FontName /LiberationSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+149 0 obj
+<<
+ /Ascent 905
+ /CapHeight 979
+ /Descent -211
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1300
+ 979
+ ]
+ /FontFile2 199 0 R
+ /FontName /DAAAAA+LiberationSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+150 0 obj
+<<
+ /Length 151 0 R
+>>
+stream
+/CIDInit/ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo<<
+/Registry (Adobe)
+/Ordering (UCS)
+/Supplement 0
+>> def
+/CMapName/Adobe-Identity-UCS def
+/CMapType 2 def
+1 begincodespacerange
+<00> <FF>
+endcodespacerange
+22 beginbfchar
+<01> <0072>
+<02> <0031>
+<03> <002D>
+<04> <0061>
+<05> <0062>
+<06> <0063>
+<07> <0043>
+<08> <0068>
+<09> <0065>
+<0A> <006B>
+<0B> <0020>
+<0C> <0042>
+<0D> <006F>
+<0E> <0078>
+<0F> <0032>
+<10> <0033>
+<11> <004F>
+<12> <0070>
+<13> <0074>
+<14> <0069>
+<15> <006E>
+<16> <0075>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+endstream
+endobj
+
+151 0 obj
+582
+endobj
+
+152 0 obj
+<<
+ /Ascent 928
+ /CapHeight 1232
+ /Descent -235
+ /Flags 4
+ /FontBBox [
+ -1020
+ -462
+ 1792
+ 1232
+ ]
+ /FontName /DejaVuSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+153 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+154 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+155 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+156 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+157 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+158 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+159 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+160 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+161 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+162 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+163 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+164 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+165 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+166 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+167 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+168 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+169 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+170 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+171 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+172 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+173 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+174 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+175 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+176 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+177 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+178 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+179 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+180 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+181 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+182 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+183 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+184 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+185 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+186 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+187 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+188 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+189 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+190 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+191 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+192 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+193 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+194 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+195 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+196 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+197 0 obj
+<<
+ /Length1 16184
+ /Length 198 0 R
+>>
+stream
+true
+{
+ 
+
+
+
+ 
+C#Ce
+-,
+ C#C -,
+-, i@a
+@@ @  CTX@
+#eB #B#?
+
+ H 
+_Y @
+ H 
+ PY
+_@qrr
+ 6A--XSY-- -
+PY
+
+@adH$4Dd $D
+9$d$!H@*H@
+ PY  
++,@@,-@@:-- -
+ PY
+"QYPY 
+PY
+
+
+sYvY@
+
+ `Y `Y_Y
+ _Y o/oO?/o_8/?^]]]]]]qqqqrr^]]]]]]qqqqqqqrrrrr
+ 
+
+
+
+"#PY PY QY
+
+ H 
+PY @
+ H 
+
+\
+ 4 : * p42
+nQ
+
+Copyright (c) 2012 Red Hat, Inc.Liberation SerifRegularAscender - Liberation SerifLiberation SerifVersion 2.00.2LiberationSerifLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman. Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL
+
+
+endstream
+endobj
+
+%QDF: ignore_newline
+198 0 obj
+16184
+endobj
+
+199 0 obj
+<<
+ /Length1 11088
+ /Length 200 0 R
+>>
+stream
+true
+ 
+ 
+C#Ce
+-,
+ C#C -,
+-, i@a
+@@ @  CTX@
+#eB #B#?
+
+
+
+
+!PY%?%%p%%%%%]]]qqqrr
+6YAXhZ
+
+PY
+]
+
+
+
+
+
+  v D T d 6 $         v d   & F V g F V  d V D 6 $      & 6 F 7f  @6=BH9 " 
+
+
+
+
+r
+iN
+
+Copyright (c) 2012 Red Hat, Inc.Liberation SansRegularAscender - Liberation SansLiberation SansVersion 2.00.2LiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL
+
+O P(F(F*F+_O_ F@FF@36FFUHU2
+endstream
+endobj
+
+%QDF: ignore_newline
+200 0 obj
+11088
+endobj
+
+xref
+0 201
+0000000000 65535 f
+0000000025 00000 n
+0000000413 00000 n
+0000000598 00000 n
+0000000671 00000 n
+0000000971 00000 n
+0000001102 00000 n
+0000001491 00000 n
+0000001880 00000 n
+0000002269 00000 n
+0000002400 00000 n
+0000002754 00000 n
+0000003309 00000 n
+0000003785 00000 n
+0000004206 00000 n
+0000004677 00000 n
+0000005102 00000 n
+0000005241 00000 n
+0000005391 00000 n
+0000005481 00000 n
+0000005718 00000 n
+0000005738 00000 n
+0000006104 00000 n
+0000006468 00000 n
+0000006834 00000 n
+0000007002 00000 n
+0000007022 00000 n
+0000007260 00000 n
+0000007280 00000 n
+0000007361 00000 n
+0000007529 00000 n
+0000007549 00000 n
+0000007787 00000 n
+0000007807 00000 n
+0000007975 00000 n
+0000007995 00000 n
+0000008233 00000 n
+0000008253 00000 n
+0000008619 00000 n
+0000008983 00000 n
+0000009349 00000 n
+0000009593 00000 n
+0000009613 00000 n
+0000010085 00000 n
+0000010106 00000 n
+0000010382 00000 n
+0000010403 00000 n
+0000010676 00000 n
+0000010697 00000 n
+0000010969 00000 n
+0000010990 00000 n
+0000011322 00000 n
+0000011486 00000 n
+0000016312 00000 n
+0000016334 00000 n
+0000017122 00000 n
+0000017523 00000 n
+0000017974 00000 n
+0000019891 00000 n
+0000020261 00000 n
+0000022175 00000 n
+0000022551 00000 n
+0000022572 00000 n
+0000022740 00000 n
+0000022760 00000 n
+0000023136 00000 n
+0000023157 00000 n
+0000023325 00000 n
+0000023345 00000 n
+0000023721 00000 n
+0000023742 00000 n
+0000023910 00000 n
+0000023930 00000 n
+0000024306 00000 n
+0000024327 00000 n
+0000024495 00000 n
+0000024515 00000 n
+0000024891 00000 n
+0000024912 00000 n
+0000025080 00000 n
+0000025100 00000 n
+0000025476 00000 n
+0000025497 00000 n
+0000025665 00000 n
+0000025685 00000 n
+0000026908 00000 n
+0000026929 00000 n
+0000027042 00000 n
+0000027138 00000 n
+0000027251 00000 n
+0000027347 00000 n
+0000027460 00000 n
+0000027556 00000 n
+0000027652 00000 n
+0000027748 00000 n
+0000027844 00000 n
+0000027940 00000 n
+0000028036 00000 n
+0000028149 00000 n
+0000028245 00000 n
+0000028341 00000 n
+0000028438 00000 n
+0000028535 00000 n
+0000028632 00000 n
+0000028729 00000 n
+0000028826 00000 n
+0000028923 00000 n
+0000029020 00000 n
+0000029117 00000 n
+0000029231 00000 n
+0000029328 00000 n
+0000029425 00000 n
+0000029522 00000 n
+0000029619 00000 n
+0000029716 00000 n
+0000029813 00000 n
+0000029910 00000 n
+0000030007 00000 n
+0000030104 00000 n
+0000030201 00000 n
+0000030315 00000 n
+0000030412 00000 n
+0000030509 00000 n
+0000030606 00000 n
+0000030726 00000 n
+0000030823 00000 n
+0000030920 00000 n
+0000031017 00000 n
+0000031114 00000 n
+0000031211 00000 n
+0000031331 00000 n
+0000031429 00000 n
+0000031527 00000 n
+0000031625 00000 n
+0000031723 00000 n
+0000031821 00000 n
+0000031919 00000 n
+0000032017 00000 n
+0000032115 00000 n
+0000032213 00000 n
+0000032311 00000 n
+0000032409 00000 n
+0000032507 00000 n
+0000032605 00000 n
+0000032703 00000 n
+0000032801 00000 n
+0000033046 00000 n
+0000033807 00000 n
+0000033829 00000 n
+0000034045 00000 n
+0000034289 00000 n
+0000034930 00000 n
+0000034952 00000 n
+0000035167 00000 n
+0000035224 00000 n
+0000035281 00000 n
+0000035338 00000 n
+0000035395 00000 n
+0000035452 00000 n
+0000035509 00000 n
+0000035566 00000 n
+0000035623 00000 n
+0000035680 00000 n
+0000035737 00000 n
+0000035794 00000 n
+0000035851 00000 n
+0000035908 00000 n
+0000035965 00000 n
+0000036022 00000 n
+0000036079 00000 n
+0000036136 00000 n
+0000036193 00000 n
+0000036250 00000 n
+0000036307 00000 n
+0000036364 00000 n
+0000036421 00000 n
+0000036478 00000 n
+0000036535 00000 n
+0000036592 00000 n
+0000036649 00000 n
+0000036706 00000 n
+0000036763 00000 n
+0000036820 00000 n
+0000036877 00000 n
+0000036934 00000 n
+0000036991 00000 n
+0000037048 00000 n
+0000037105 00000 n
+0000037162 00000 n
+0000037219 00000 n
+0000037276 00000 n
+0000037333 00000 n
+0000037390 00000 n
+0000037447 00000 n
+0000037504 00000 n
+0000037561 00000 n
+0000037618 00000 n
+0000037675 00000 n
+0000053957 00000 n
+0000053981 00000 n
+0000065167 00000 n
+trailer <<
+ /DocChecksum /CC322E136FE95DECF8BC297B1A9B2C2E
+ /Info 2 0 R
+ /Root 1 0 R
+ /Size 201
+ /ID [<f8abc47bb1df544a0df9c15a75ef0046><31415926535897932384626433832795>]
+>>
+startxref
+65191
+%%EOF
diff --git a/qpdf/qtest/qpdf/appearances-12.pdf b/qpdf/qtest/qpdf/appearances-12.pdf
new file mode 100644
index 00000000..51522c0d
--- /dev/null
+++ b/qpdf/qtest/qpdf/appearances-12.pdf
@@ -0,0 +1,3853 @@
+%PDF-1.5
+%
+%QDF-1.0
+
+1 0 obj
+<<
+ /AcroForm <<
+ /DR 3 0 R
+ /Fields [
+ 4 0 R
+ 5 0 R
+ 6 0 R
+ 7 0 R
+ 8 0 R
+ 9 0 R
+ 10 0 R
+ 11 0 R
+ 12 0 R
+ 13 0 R
+ 14 0 R
+ ]
+ >>
+ /Lang (en-US)
+ /MarkInfo <<
+ /Marked true
+ >>
+ /OpenAction [
+ 15 0 R
+ /XYZ
+ null
+ null
+ 0
+ ]
+ /Pages 16 0 R
+ /StructTreeRoot 17 0 R
+ /Type /Catalog
+>>
+endobj
+
+2 0 obj
+<<
+ /CreationDate (D:20190103125434-05'00')
+ /Creator <feff005700720069007400650072>
+ /Producer <feff004c0069006200720065004f0066006600690063006500200036002e0031>
+>>
+endobj
+
+3 0 obj
+<<
+ /Font 18 0 R
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+>>
+endobj
+
+4 0 obj
+<<
+ /AP <<
+ /N 19 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Tx
+ /P 15 0 R
+ /Rect [
+ 123.499
+ 689.901
+ 260.801
+ 704.699
+ ]
+ /Subtype /Widget
+ /T (text)
+ /Type /Annot
+ /V <feff006100620063>
+>>
+endobj
+
+5 0 obj
+<<
+ /DV /1
+ /FT /Btn
+ /Ff 49152
+ /Kids [
+ 21 0 R
+ 22 0 R
+ 23 0 R
+ ]
+ /P 15 0 R
+ /T (r1)
+ /V /2
+>>
+endobj
+
+6 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 24 0 R
+ /Yes 26 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Off
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 554.301
+ 130.701
+ 566.349
+ ]
+ /Subtype /Widget
+ /T (checkbox1)
+ /Type /Annot
+ /V /Off
+>>
+endobj
+
+7 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 29 0 R
+ /Yes 31 0 R
+ >>
+ >>
+ /AS /Yes
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Yes
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 527.751
+ 130.701
+ 539.799
+ ]
+ /Subtype /Widget
+ /T (checkbox2)
+ /Type /Annot
+ /V /Yes
+>>
+endobj
+
+8 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 33 0 R
+ /Yes 35 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Off
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 500.501
+ 130.701
+ 512.549
+ ]
+ /Subtype /Widget
+ /T (checkbox3)
+ /Type /Annot
+ /V /Off
+>>
+endobj
+
+9 0 obj
+<<
+ /DV /2
+ /FT /Btn
+ /Ff 49152
+ /Kids [
+ 37 0 R
+ 38 0 R
+ 39 0 R
+ ]
+ /P 15 0 R
+ /T (r2)
+ /V /2
+>>
+endobj
+
+10 0 obj
+<<
+ /AP <<
+ /N 40 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff00730061006c00610064002003c002ac>
+ /F 4
+ /FT /Tx
+ /P 15 0 R
+ /Rect [
+ 113.649
+ 260.151
+ 351.101
+ 278.099
+ ]
+ /Subtype /Widget
+ /T (text2)
+ /Type /Annot
+ /V <feff00730061006c00610064002003c002ac>
+>>
+endobj
+
+11 0 obj
+<<
+ /AP <<
+ /N 42 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Opt [
+ <feff0031>
+ <feff0032>
+ <feff0033>
+ <feff0034>
+ <feff0066006900760065>
+ <feff007300690078>
+ <feff0073006500760065006e>
+ <feff00650069006700680074>
+ <feff0039>
+ <feff00310030>
+ <feff00310031>
+ <feff00310032>
+ ]
+ /P 15 0 R
+ /Rect [
+ 158.449
+ 156.651
+ 221.001
+ 232.849
+ ]
+ /Subtype /Widget
+ /T (list1)
+ /Type /Annot
+ /V <feff00310032>
+>>
+endobj
+
+12 0 obj
+<<
+ /AP <<
+ /N 44 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 131072
+ /Opt [
+ <feff006e0069006e0065>
+ <feff00740065006e>
+ <feff0065006c0065007000680061006e0074>
+ <feff007400770065006c00760065>
+ ]
+ /P 15 0 R
+ /Rect [
+ 159.149
+ 107.251
+ 244.201
+ 130.949
+ ]
+ /Subtype /Widget
+ /T (drop1)
+ /Type /Annot
+ /V <feff0065006c0065007000680061006e0074>
+>>
+endobj
+
+13 0 obj
+<<
+ /AP <<
+ /N 46 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 393216
+ /Opt [
+ <feff006f006e0065>
+ <feff00740077006f>
+ <feff00700069>
+ <feff0066006f00750072>
+ ]
+ /P 15 0 R
+ /Rect [
+ 403.949
+ 159.401
+ 459.001
+ 232.849
+ ]
+ /Subtype /Widget
+ /T (combolist1)
+ /Type /Annot
+ /V <feff00700069>
+>>
+endobj
+
+14 0 obj
+<<
+ /AP <<
+ /N 48 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 393216
+ /Opt [
+ <feff0061006c007000680061>
+ <feff0062006500740061>
+ <feff00670061006d006d0061>
+ <feff00640065006c00740061>
+ ]
+ /P 15 0 R
+ /Rect [
+ 404.599
+ 101.451
+ 476.701
+ 135.349
+ ]
+ /Subtype /Widget
+ /T (combodrop1)
+ /Type /Annot
+ /V <feff00640065006c00740061>
+>>
+endobj
+
+%% Page 1
+15 0 obj
+<<
+ /Annots [
+ 4 0 R
+ 21 0 R
+ 22 0 R
+ 23 0 R
+ 6 0 R
+ 7 0 R
+ 8 0 R
+ 37 0 R
+ 38 0 R
+ 39 0 R
+ 10 0 R
+ 13 0 R
+ 11 0 R
+ 12 0 R
+ 14 0 R
+ 50 0 R
+ 51 0 R
+ ]
+ /Contents 52 0 R
+ /Group <<
+ /CS /DeviceRGB
+ /I true
+ /S /Transparency
+ >>
+ /MediaBox [
+ 0
+ 0
+ 612
+ 792
+ ]
+ /Parent 16 0 R
+ /Resources 3 0 R
+ /StructParents 0
+ /Type /Page
+>>
+endobj
+
+16 0 obj
+<<
+ /Count 1
+ /Kids [
+ 15 0 R
+ ]
+ /MediaBox [
+ 0
+ 0
+ 612
+ 792
+ ]
+ /Resources 3 0 R
+ /Type /Pages
+>>
+endobj
+
+17 0 obj
+<<
+ /K [
+ 54 0 R
+ ]
+ /ParentTree 55 0 R
+ /RoleMap <<
+ /Document /Document
+ /Standard /P
+ >>
+ /Type /StructTreeRoot
+>>
+endobj
+
+18 0 obj
+<<
+ /F1 56 0 R
+ /F2 57 0 R
+ /F3 58 0 R
+ /F4 59 0 R
+ /ZaDi 28 0 R
+>>
+endobj
+
+19 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 137.3
+ 14.8
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 20 0 R
+>>
+stream
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F2 12 Tf
+q
+BT
+1 2.600000 Td
+(abc) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+20 0 obj
+82
+endobj
+
+21 0 obj
+<<
+ /AP <<
+ /N <<
+ /1 60 0 R
+ /Off 62 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 152.749
+ 648.501
+ 164.801
+ 660.549
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+22 0 obj
+<<
+ /AP <<
+ /N <<
+ /2 64 0 R
+ /Off 66 0 R
+ >>
+ >>
+ /AS /2
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 152.749
+ 627.301
+ 164.801
+ 639.349
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+23 0 obj
+<<
+ /AP <<
+ /N <<
+ /3 68 0 R
+ /Off 70 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 151.399
+ 606.501
+ 163.451
+ 618.549
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+24 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 25 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+25 0 obj
+12
+endobj
+
+26 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 27 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+27 0 obj
+82
+endobj
+
+28 0 obj
+<<
+ /BaseFont /ZapfDingbats
+ /Subtype /Type1
+ /Type /Font
+>>
+endobj
+
+29 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 30 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+30 0 obj
+12
+endobj
+
+31 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 32 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+32 0 obj
+82
+endobj
+
+33 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 34 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+34 0 obj
+12
+endobj
+
+35 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 36 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+36 0 obj
+82
+endobj
+
+37 0 obj
+<<
+ /AP <<
+ /N <<
+ /1 72 0 R
+ /Off 74 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 118.649
+ 388.101
+ 130.701
+ 400.149
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+38 0 obj
+<<
+ /AP <<
+ /N <<
+ /2 76 0 R
+ /Off 78 0 R
+ >>
+ >>
+ /AS /2
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 119.349
+ 362.201
+ 131.401
+ 374.249
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+39 0 obj
+<<
+ /AP <<
+ /N <<
+ /3 80 0 R
+ /Off 82 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 119.349
+ 333.551
+ 131.401
+ 345.599
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+40 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 237.45
+ 17.95
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 41 0 R
+>>
+stream
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F2 12 Tf
+q
+BT
+1 4.175000 Td
+(salad ??) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+41 0 obj
+87
+endobj
+
+42 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 62.55
+ 76.2
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 43 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 62.55 76.2 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+q
+0.85 0.85 0.85 rg
+0 2.100000 62 12.000000 re f
+Q
+BT
+1 64.100000 Td
+(seven) Tj
+ET
+BT
+1 52.100000 Td
+(eight) Tj
+ET
+BT
+1 40.100000 Td
+(9) Tj
+ET
+BT
+1 28.100000 Td
+(10) Tj
+ET
+BT
+1 16.100000 Td
+(11) Tj
+ET
+BT
+1 4.100000 Td
+(12) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+43 0 obj
+316
+endobj
+
+44 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 85.05
+ 23.7
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 45 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 85.05 23.7 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+BT
+1 7.850000 Td
+(elephant) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+45 0 obj
+121
+endobj
+
+46 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 55.05
+ 73.45
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 47 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 55.05 73.45 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+BT
+1 32.725000 Td
+(pi) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+47 0 obj
+117
+endobj
+
+48 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 72.1
+ 33.9
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 49 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 72.1 33.9 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+BT
+1 12.950000 Td
+(delta) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+49 0 obj
+118
+endobj
+
+50 0 obj
+<<
+ /AP <<
+ /N 84 0 R
+ >>
+ /C [
+ 1
+ 1
+ 0
+ ]
+ /CA 1
+ /Contents (Salad)
+ /CreationDate (D:20181231235455Z00'00)
+ /F 28
+ /M (D:20181231235455Z00'00)
+ /Name /Comment
+ /P 15 0 R
+ /Popup 51 0 R
+ /Rect [
+ 435
+ 703
+ 453
+ 721
+ ]
+ /Subtype /Text
+ /T (Jay Berkenbilt)
+ /Type /Annot
+>>
+endobj
+
+51 0 obj
+<<
+ /F 28
+ /Open false
+ /Parent 50 0 R
+ /Rect [
+ 612
+ 601
+ 792
+ 721
+ ]
+ /Subtype /Popup
+ /Type /Annot
+>>
+endobj
+
+%% Contents for page 1
+52 0 obj
+<<
+ /Length 53 0 R
+>>
+stream
+0.1 w
+/Artifact BMC
+q 0 0.028 611.971 791.971 re
+W* n
+EMC
+/Standard<</MCID 0>>BDC
+q 0 0 0 rg
+BT
+56.8 724.1 Td /F1 12 Tf[<01>1<0203>1<0403>1<05>58<06>-10<0708>2<09070a0b0408>2(\f)]TJ
+ET
+Q
+EMC
+/Standard<</MCID 1>>BDC
+q 0 0 0 rg
+BT
+56.8 693 Td /F1 12 Tf[(\r)68<03>1<0e0f>2<0710>-1<11>2<03>1<12>2<13>-7<0707070707>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 2>>BDC
+q 0 0 0 rg
+BT
+56.8 661.9 Td /F1 12 Tf[<0414>1<1311>2<0b0715>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 3>>BDC
+q 0 0 0 rg
+BT
+56.8 565.3 Td /F1 12 Tf[<16>1<0203>1<16>1<17>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 4>>BDC
+q 0 0 0 rg
+BT
+56.8 413.5 Td /F1 12 Tf[<0414>1<1311>2<0b0718>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 5>>BDC
+q 0 0 0 rg
+BT
+56.8 261.7 Td /F1 12 Tf[<19>-1<0b0f>2<14>1<0f>2<0b>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 6>>BDC
+q 0 0 0 rg
+BT
+56.8 206.5 Td /F1 12 Tf[<1a>2<11>2<06>-2<0f>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 7>>BDC
+q 0 0 0 rg
+BT
+269.5 206.5 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0712>2<11>2<06>-2<0f>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 8>>BDC
+q 0 0 0 rg
+BT
+56.8 123.7 Td /F1 12 Tf[<1d>5<040b1e130b1f>-2( )]TJ
+ET
+Q
+EMC
+/Standard<</MCID 9>>BDC
+q 0 0 0 rg
+BT
+269.5 123.7 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0713040b1e130b1f>-2( )]TJ
+ET
+Q
+EMC
+/Form<</MCID 10>>BDC
+0 0 0 RG
+1 1 1 rg
+120.5 686.9 143.3 20.8 re B*
+EMC
+/Form<</MCID 11>>BDC
+151.55 642.6 183.45 23.9 re f*
+q 1.2 w 0 0 0 RG
+158.75 660.55 m 162.1 660.55 164.8 657.9 164.8 654.55 c
+164.8 651.2 162.1 648.5 158.75 648.5 c
+155.4 648.5 152.75 651.2 152.75 654.55 c
+152.75 657.9 155.4 660.55 158.75 660.55 c s
+ Q
+q 169.6 642.6 164.25 23.9 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+169.6 650.3 Td /F3 12 Tf[<0102>-1<0304>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 12>>BDC
+1 1 1 rg
+151.55 624.8 125.5 17.1 re f*
+q 1.2 w 0 0 0 RG
+158.75 639.35 m 162.1 639.35 164.8 636.7 164.8 633.35 c
+164.8 630 162.1 627.3 158.75 627.3 c
+155.4 627.3 152.75 630 152.75 633.35 c
+152.75 636.7 155.4 639.35 158.75 639.35 c s
+ Q
+q 169.6 624.8 106.3 17.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+169.6 629.1 Td /F3 12 Tf[<0102>-1<0305>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 13>>BDC
+1 1 1 rg
+150.2 605.7 118.7 13.7 re f*
+q 1.2 w 0 0 0 RG
+157.4 618.55 m 160.75 618.55 163.45 615.9 163.45 612.55 c
+163.45 609.2 160.75 606.5 157.4 606.5 c
+154.05 606.5 151.4 609.2 151.4 612.55 c
+151.4 615.9 154.05 618.55 157.4 618.55 c s
+ Q
+q 168.25 605.7 99.5 13.7 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+168.3 608.3 Td /F3 12 Tf[<0102>-1<0306>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 14>>BDC
+1 1 1 rg
+117.45 544.3 86.65 32.1 re f*
+q 1.2 w 0 0 0 RG
+118.65 554.3 12.05 12.05 re S
+ Q
+q 135.5 544.3 67.45 32.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 556.1 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 15>>BDC
+1 1 1 rg
+117.45 523.2 85.3 21.15 re f*
+q 1.2 w 0 0 0 RG
+118.65 527.75 12.05 12.05 re S
+ Q
+q 135.5 523.2 66.1 21.15 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 529.6 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<0f>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 16>>BDC
+1 1 1 rg
+117.45 498 72.35 17.1 re f*
+q 1.2 w 0 0 0 RG
+118.65 500.5 12.05 12.05 re S
+ Q
+q 135.5 498 53.15 17.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 502.3 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<10>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 17>>BDC
+1 1 1 rg
+117.45 378.75 169.15 30.75 re f*
+q 1.2 w 0 0 0 RG
+124.65 400.15 m 128 400.15 130.7 397.5 130.7 394.15 c
+130.7 390.8 128 388.1 124.65 388.1 c
+121.3 388.1 118.65 390.8 118.65 394.15 c
+118.65 397.5 121.3 400.15 124.65 400.15 c s
+ Q
+q 135.5 378.75 149.95 30.75 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 389.9 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 18>>BDC
+1 1 1 rg
+118.15 352.85 180.7 30.75 re f*
+q 1.2 w 0 0 0 RG
+125.35 374.25 m 128.7 374.25 131.4 371.6 131.4 368.25 c
+131.4 364.9 128.7 362.2 125.35 362.2 c
+122 362.2 119.35 364.9 119.35 368.25 c
+119.35 371.6 122 374.25 125.35 374.25 c s
+ Q
+q 136.2 352.85 161.5 30.75 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+136.2 364 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<0f>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 19>>BDC
+1 1 1 rg
+118.15 322.85 139.15 33.5 re f*
+q 1.2 w 0 0 0 RG
+125.35 345.6 m 128.7 345.6 131.4 342.95 131.4 339.6 c
+131.4 336.25 128.7 333.55 125.35 333.55 c
+122 333.55 119.35 336.25 119.35 339.6 c
+119.35 342.95 122 345.6 125.35 345.6 c s
+ Q
+q 136.2 322.85 119.95 33.5 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+136.2 335.4 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<10>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 20>>BDC
+0 0 0 RG
+1 1 1 rg
+110.65 257.15 243.45 23.95 re B*
+EMC
+/Form<</MCID 21>>BDC
+155.95 154.15 67.55 81.2 re B*
+EMC
+/Form<</MCID 22>>BDC
+156.65 104.75 90.05 28.7 re B*
+EMC
+/Form<</MCID 23>>BDC
+401.45 156.9 60.05 78.45 re B*
+EMC
+/Form<</MCID 24>>BDC
+402.1 98.95 77.1 38.9 re B*
+EMC
+Q
+endstream
+endobj
+
+%QDF: ignore_newline
+53 0 obj
+4747
+endobj
+
+54 0 obj
+<<
+ /K [
+ 86 0 R
+ 87 0 R
+ 88 0 R
+ 89 0 R
+ 90 0 R
+ 91 0 R
+ 92 0 R
+ 93 0 R
+ 94 0 R
+ 95 0 R
+ 96 0 R
+ 97 0 R
+ 98 0 R
+ 99 0 R
+ 100 0 R
+ 101 0 R
+ 102 0 R
+ 103 0 R
+ 104 0 R
+ 105 0 R
+ 106 0 R
+ 107 0 R
+ 108 0 R
+ 109 0 R
+ 110 0 R
+ 111 0 R
+ 112 0 R
+ 113 0 R
+ 114 0 R
+ 115 0 R
+ 116 0 R
+ 117 0 R
+ 118 0 R
+ 119 0 R
+ 120 0 R
+ 121 0 R
+ 122 0 R
+ 123 0 R
+ 124 0 R
+ 125 0 R
+ 126 0 R
+ 127 0 R
+ 128 0 R
+ 129 0 R
+ 130 0 R
+ 131 0 R
+ 132 0 R
+ 133 0 R
+ 134 0 R
+ 135 0 R
+ 136 0 R
+ 137 0 R
+ 138 0 R
+ 139 0 R
+ 140 0 R
+ 141 0 R
+ 142 0 R
+ 143 0 R
+ 144 0 R
+ ]
+ /P 17 0 R
+ /Pg 15 0 R
+ /S /Document
+ /Type /StructElem
+>>
+endobj
+
+55 0 obj
+<<
+ /Nums [
+ 0
+ [
+ 86 0 R
+ 88 0 R
+ 90 0 R
+ 97 0 R
+ 108 0 R
+ 119 0 R
+ 123 0 R
+ 123 0 R
+ 129 0 R
+ 129 0 R
+ 130 0 R
+ 131 0 R
+ 132 0 R
+ 133 0 R
+ 134 0 R
+ 135 0 R
+ 136 0 R
+ 137 0 R
+ 138 0 R
+ 139 0 R
+ 140 0 R
+ 141 0 R
+ 142 0 R
+ 143 0 R
+ 144 0 R
+ ]
+ ]
+>>
+endobj
+
+56 0 obj
+<<
+ /BaseFont /BAAAAA+LiberationSerif
+ /FirstChar 0
+ /FontDescriptor 145 0 R
+ /LastChar 32
+ /Subtype /TrueType
+ /ToUnicode 146 0 R
+ /Type /Font
+ /Widths [
+ 777
+ 943
+ 500
+ 443
+ 333
+ 333
+ 389
+ 250
+ 777
+ 500
+ 333
+ 500
+ 443
+ 610
+ 500
+ 277
+ 556
+ 277
+ 277
+ 500
+ 443
+ 500
+ 443
+ 500
+ 500
+ 556
+ 610
+ 666
+ 500
+ 722
+ 500
+ 722
+ 500
+ ]
+>>
+endobj
+
+57 0 obj
+<<
+ /BaseFont /LiberationSans
+ /Encoding /WinAnsiEncoding
+ /FirstChar 32
+ /FontDescriptor 148 0 R
+ /LastChar 255
+ /Subtype /TrueType
+ /Type /Font
+ /Widths [
+ 277
+ 277
+ 354
+ 556
+ 556
+ 889
+ 666
+ 190
+ 333
+ 333
+ 389
+ 583
+ 277
+ 333
+ 277
+ 277
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 277
+ 277
+ 583
+ 583
+ 583
+ 556
+ 1015
+ 666
+ 666
+ 722
+ 722
+ 666
+ 610
+ 777
+ 722
+ 277
+ 500
+ 666
+ 556
+ 833
+ 722
+ 777
+ 666
+ 777
+ 722
+ 666
+ 610
+ 722
+ 666
+ 943
+ 666
+ 666
+ 610
+ 277
+ 277
+ 277
+ 469
+ 556
+ 333
+ 556
+ 556
+ 500
+ 556
+ 556
+ 277
+ 556
+ 556
+ 222
+ 222
+ 500
+ 222
+ 833
+ 556
+ 556
+ 556
+ 556
+ 333
+ 500
+ 277
+ 556
+ 500
+ 722
+ 500
+ 500
+ 500
+ 333
+ 259
+ 333
+ 583
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 277
+ 333
+ 556
+ 556
+ 556
+ 556
+ 259
+ 556
+ 333
+ 736
+ 370
+ 556
+ 583
+ 333
+ 736
+ 552
+ 399
+ 548
+ 333
+ 333
+ 333
+ 576
+ 537
+ 333
+ 333
+ 333
+ 365
+ 556
+ 833
+ 833
+ 833
+ 610
+ 666
+ 666
+ 666
+ 666
+ 666
+ 666
+ 1000
+ 722
+ 666
+ 666
+ 666
+ 666
+ 277
+ 277
+ 277
+ 277
+ 722
+ 722
+ 777
+ 777
+ 777
+ 777
+ 777
+ 583
+ 777
+ 722
+ 722
+ 722
+ 722
+ 666
+ 666
+ 610
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 889
+ 500
+ 556
+ 556
+ 556
+ 556
+ 277
+ 277
+ 277
+ 277
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 548
+ 610
+ 556
+ 556
+ 556
+ 556
+ 500
+ 556
+ 500
+ ]
+>>
+endobj
+
+58 0 obj
+<<
+ /BaseFont /DAAAAA+LiberationSans
+ /FirstChar 0
+ /FontDescriptor 149 0 R
+ /LastChar 22
+ /Subtype /TrueType
+ /ToUnicode 150 0 R
+ /Type /Font
+ /Widths [
+ 750
+ 333
+ 556
+ 333
+ 556
+ 556
+ 500
+ 722
+ 556
+ 556
+ 500
+ 277
+ 666
+ 556
+ 500
+ 556
+ 556
+ 777
+ 556
+ 277
+ 222
+ 556
+ 556
+ ]
+>>
+endobj
+
+59 0 obj
+<<
+ /BaseFont /DejaVuSans
+ /Encoding /WinAnsiEncoding
+ /FirstChar 32
+ /FontDescriptor 152 0 R
+ /LastChar 255
+ /Subtype /TrueType
+ /Type /Font
+ /Widths [
+ 317
+ 400
+ 459
+ 837
+ 636
+ 950
+ 779
+ 274
+ 390
+ 390
+ 500
+ 837
+ 317
+ 360
+ 317
+ 336
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 336
+ 336
+ 837
+ 837
+ 837
+ 530
+ 1000
+ 684
+ 686
+ 698
+ 770
+ 631
+ 575
+ 774
+ 751
+ 294
+ 294
+ 655
+ 557
+ 862
+ 748
+ 787
+ 603
+ 787
+ 694
+ 634
+ 610
+ 731
+ 684
+ 988
+ 685
+ 610
+ 685
+ 390
+ 336
+ 390
+ 837
+ 500
+ 500
+ 612
+ 634
+ 549
+ 634
+ 615
+ 352
+ 634
+ 633
+ 277
+ 277
+ 579
+ 277
+ 974
+ 633
+ 611
+ 634
+ 634
+ 411
+ 520
+ 392
+ 633
+ 591
+ 817
+ 591
+ 591
+ 524
+ 636
+ 336
+ 636
+ 837
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 317
+ 400
+ 636
+ 636
+ 636
+ 636
+ 336
+ 500
+ 500
+ 1000
+ 471
+ 611
+ 837
+ 360
+ 1000
+ 500
+ 500
+ 837
+ 400
+ 400
+ 500
+ 636
+ 636
+ 317
+ 500
+ 400
+ 471
+ 611
+ 969
+ 969
+ 969
+ 530
+ 684
+ 684
+ 684
+ 684
+ 684
+ 684
+ 974
+ 698
+ 631
+ 631
+ 631
+ 631
+ 294
+ 294
+ 294
+ 294
+ 774
+ 748
+ 787
+ 787
+ 787
+ 787
+ 787
+ 837
+ 787
+ 731
+ 731
+ 731
+ 731
+ 610
+ 604
+ 629
+ 612
+ 612
+ 612
+ 612
+ 612
+ 612
+ 981
+ 549
+ 615
+ 615
+ 615
+ 615
+ 277
+ 277
+ 277
+ 277
+ 611
+ 633
+ 611
+ 611
+ 611
+ 611
+ 611
+ 837
+ 611
+ 633
+ 633
+ 633
+ 633
+ 591
+ 634
+ 591
+ ]
+>>
+endobj
+
+60 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 61 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+61 0 obj
+220
+endobj
+
+62 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 63 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+63 0 obj
+12
+endobj
+
+64 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 65 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+65 0 obj
+220
+endobj
+
+66 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 67 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+67 0 obj
+12
+endobj
+
+68 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 69 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+69 0 obj
+220
+endobj
+
+70 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 71 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+71 0 obj
+12
+endobj
+
+72 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 73 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+73 0 obj
+220
+endobj
+
+74 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 75 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+75 0 obj
+12
+endobj
+
+76 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 77 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+77 0 obj
+220
+endobj
+
+78 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 79 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+79 0 obj
+12
+endobj
+
+80 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 81 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+81 0 obj
+220
+endobj
+
+82 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 83 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+83 0 obj
+12
+endobj
+
+84 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 18
+ 18
+ ]
+ /Resources <<
+ /ExtGState <<
+ /GS0 <<
+ /AIS false
+ /BM /Normal
+ /CA .6
+ /Type /ExtGState
+ /ca .6
+ >>
+ >>
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 85 0 R
+>>
+stream
+q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b
+endstream
+endobj
+
+85 0 obj
+929
+endobj
+
+86 0 obj
+<<
+ /A 153 0 R
+ /K [
+ 0
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+87 0 obj
+<<
+ /A 154 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+88 0 obj
+<<
+ /A 155 0 R
+ /K [
+ 1
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+89 0 obj
+<<
+ /A 156 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+90 0 obj
+<<
+ /A 157 0 R
+ /K [
+ 2
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+91 0 obj
+<<
+ /A 158 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+92 0 obj
+<<
+ /A 159 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+93 0 obj
+<<
+ /A 160 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+94 0 obj
+<<
+ /A 161 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+95 0 obj
+<<
+ /A 162 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+96 0 obj
+<<
+ /A 163 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+97 0 obj
+<<
+ /A 164 0 R
+ /K [
+ 3
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+98 0 obj
+<<
+ /A 165 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+99 0 obj
+<<
+ /A 166 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+100 0 obj
+<<
+ /A 167 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+101 0 obj
+<<
+ /A 168 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+102 0 obj
+<<
+ /A 169 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+103 0 obj
+<<
+ /A 170 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+104 0 obj
+<<
+ /A 171 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+105 0 obj
+<<
+ /A 172 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+106 0 obj
+<<
+ /A 173 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+107 0 obj
+<<
+ /A 174 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+108 0 obj
+<<
+ /A 175 0 R
+ /K [
+ 4
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+109 0 obj
+<<
+ /A 176 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+110 0 obj
+<<
+ /A 177 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+111 0 obj
+<<
+ /A 178 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+112 0 obj
+<<
+ /A 179 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+113 0 obj
+<<
+ /A 180 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+114 0 obj
+<<
+ /A 181 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+115 0 obj
+<<
+ /A 182 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+116 0 obj
+<<
+ /A 183 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+117 0 obj
+<<
+ /A 184 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+118 0 obj
+<<
+ /A 185 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+119 0 obj
+<<
+ /A 186 0 R
+ /K [
+ 5
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+120 0 obj
+<<
+ /A 187 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+121 0 obj
+<<
+ /A 188 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+122 0 obj
+<<
+ /A 189 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+123 0 obj
+<<
+ /A 190 0 R
+ /K [
+ 6
+ 7
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+124 0 obj
+<<
+ /A 191 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+125 0 obj
+<<
+ /A 192 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+126 0 obj
+<<
+ /A 193 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+127 0 obj
+<<
+ /A 194 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+128 0 obj
+<<
+ /A 195 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+129 0 obj
+<<
+ /A 196 0 R
+ /K [
+ 8
+ 9
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+130 0 obj
+<<
+ /K [
+ 10
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+131 0 obj
+<<
+ /K [
+ 11
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+132 0 obj
+<<
+ /K [
+ 12
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+133 0 obj
+<<
+ /K [
+ 13
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+134 0 obj
+<<
+ /K [
+ 14
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+135 0 obj
+<<
+ /K [
+ 15
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+136 0 obj
+<<
+ /K [
+ 16
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+137 0 obj
+<<
+ /K [
+ 17
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+138 0 obj
+<<
+ /K [
+ 18
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+139 0 obj
+<<
+ /K [
+ 19
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+140 0 obj
+<<
+ /K [
+ 20
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+141 0 obj
+<<
+ /K [
+ 21
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+142 0 obj
+<<
+ /K [
+ 22
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+143 0 obj
+<<
+ /K [
+ 23
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+144 0 obj
+<<
+ /K [
+ 24
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+145 0 obj
+<<
+ /Ascent 891
+ /CapHeight 981
+ /Descent -216
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1277
+ 981
+ ]
+ /FontFile2 197 0 R
+ /FontName /BAAAAA+LiberationSerif
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+146 0 obj
+<<
+ /Length 147 0 R
+>>
+stream
+/CIDInit/ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo<<
+/Registry (Adobe)
+/Ordering (UCS)
+/Supplement 0
+>> def
+/CMapName/Adobe-Identity-UCS def
+/CMapType 2 def
+1 begincodespacerange
+<00> <FF>
+endcodespacerange
+32 beginbfchar
+<01> <0057>
+<02> <0068>
+<03> <0065>
+<04> <0072>
+<05> <2019>
+<06> <0073>
+<07> <0020>
+<08> <006D>
+<09> <0079>
+<0A> <0066>
+<0B> <006F>
+<0C> <003F>
+<0D> <0054>
+<0E> <0078>
+<0F> <0074>
+<10> <0046>
+<11> <0069>
+<12> <006C>
+<13> <0064>
+<14> <0061>
+<15> <0031>
+<16> <0063>
+<17> <006B>
+<18> <0032>
+<19> <0050>
+<1A> <004C>
+<1B> <0043>
+<1C> <0062>
+<1D> <0044>
+<1E> <0070>
+<1F> <0077>
+<20> <006E>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+endstream
+endobj
+
+147 0 obj
+702
+endobj
+
+148 0 obj
+<<
+ /Ascent 905
+ /CapHeight 979
+ /Descent -211
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1300
+ 979
+ ]
+ /FontName /LiberationSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+149 0 obj
+<<
+ /Ascent 905
+ /CapHeight 979
+ /Descent -211
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1300
+ 979
+ ]
+ /FontFile2 199 0 R
+ /FontName /DAAAAA+LiberationSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+150 0 obj
+<<
+ /Length 151 0 R
+>>
+stream
+/CIDInit/ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo<<
+/Registry (Adobe)
+/Ordering (UCS)
+/Supplement 0
+>> def
+/CMapName/Adobe-Identity-UCS def
+/CMapType 2 def
+1 begincodespacerange
+<00> <FF>
+endcodespacerange
+22 beginbfchar
+<01> <0072>
+<02> <0031>
+<03> <002D>
+<04> <0061>
+<05> <0062>
+<06> <0063>
+<07> <0043>
+<08> <0068>
+<09> <0065>
+<0A> <006B>
+<0B> <0020>
+<0C> <0042>
+<0D> <006F>
+<0E> <0078>
+<0F> <0032>
+<10> <0033>
+<11> <004F>
+<12> <0070>
+<13> <0074>
+<14> <0069>
+<15> <006E>
+<16> <0075>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+endstream
+endobj
+
+151 0 obj
+582
+endobj
+
+152 0 obj
+<<
+ /Ascent 928
+ /CapHeight 1232
+ /Descent -235
+ /Flags 4
+ /FontBBox [
+ -1020
+ -462
+ 1792
+ 1232
+ ]
+ /FontName /DejaVuSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+153 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+154 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+155 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+156 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+157 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+158 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+159 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+160 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+161 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+162 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+163 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+164 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+165 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+166 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+167 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+168 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+169 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+170 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+171 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+172 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+173 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+174 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+175 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+176 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+177 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+178 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+179 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+180 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+181 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+182 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+183 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+184 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+185 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+186 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+187 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+188 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+189 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+190 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+191 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+192 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+193 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+194 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+195 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+196 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+197 0 obj
+<<
+ /Length1 16184
+ /Length 198 0 R
+>>
+stream
+true
+{
+ 
+
+
+
+ 
+C#Ce
+-,
+ C#C -,
+-, i@a
+@@ @  CTX@
+#eB #B#?
+
+ H 
+_Y @
+ H 
+ PY
+_@qrr
+ 6A--XSY-- -
+PY
+
+@adH$4Dd $D
+9$d$!H@*H@
+ PY  
++,@@,-@@:-- -
+ PY
+"QYPY 
+PY
+
+
+sYvY@
+
+ `Y `Y_Y
+ _Y o/oO?/o_8/?^]]]]]]qqqqrr^]]]]]]qqqqqqqrrrrr
+ 
+
+
+
+"#PY PY QY
+
+ H 
+PY @
+ H 
+
+\
+ 4 : * p42
+nQ
+
+Copyright (c) 2012 Red Hat, Inc.Liberation SerifRegularAscender - Liberation SerifLiberation SerifVersion 2.00.2LiberationSerifLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman. Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL
+
+
+endstream
+endobj
+
+%QDF: ignore_newline
+198 0 obj
+16184
+endobj
+
+199 0 obj
+<<
+ /Length1 11088
+ /Length 200 0 R
+>>
+stream
+true
+ 
+ 
+C#Ce
+-,
+ C#C -,
+-, i@a
+@@ @  CTX@
+#eB #B#?
+
+
+
+
+!PY%?%%p%%%%%]]]qqqrr
+6YAXhZ
+
+PY
+]
+
+
+
+
+
+  v D T d 6 $         v d   & F V g F V  d V D 6 $      & 6 F 7f  @6=BH9 " 
+
+
+
+
+r
+iN
+
+Copyright (c) 2012 Red Hat, Inc.Liberation SansRegularAscender - Liberation SansLiberation SansVersion 2.00.2LiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL
+
+O P(F(F*F+_O_ F@FF@36FFUHU2
+endstream
+endobj
+
+%QDF: ignore_newline
+200 0 obj
+11088
+endobj
+
+xref
+0 201
+0000000000 65535 f
+0000000025 00000 n
+0000000413 00000 n
+0000000598 00000 n
+0000000671 00000 n
+0000000971 00000 n
+0000001102 00000 n
+0000001491 00000 n
+0000001880 00000 n
+0000002269 00000 n
+0000002400 00000 n
+0000002754 00000 n
+0000003309 00000 n
+0000003785 00000 n
+0000004206 00000 n
+0000004677 00000 n
+0000005102 00000 n
+0000005241 00000 n
+0000005391 00000 n
+0000005481 00000 n
+0000005718 00000 n
+0000005738 00000 n
+0000006104 00000 n
+0000006468 00000 n
+0000006834 00000 n
+0000007002 00000 n
+0000007022 00000 n
+0000007260 00000 n
+0000007280 00000 n
+0000007361 00000 n
+0000007529 00000 n
+0000007549 00000 n
+0000007787 00000 n
+0000007807 00000 n
+0000007975 00000 n
+0000007995 00000 n
+0000008233 00000 n
+0000008253 00000 n
+0000008619 00000 n
+0000008983 00000 n
+0000009349 00000 n
+0000009593 00000 n
+0000009613 00000 n
+0000010084 00000 n
+0000010105 00000 n
+0000010381 00000 n
+0000010402 00000 n
+0000010675 00000 n
+0000010696 00000 n
+0000010968 00000 n
+0000010989 00000 n
+0000011321 00000 n
+0000011485 00000 n
+0000016311 00000 n
+0000016333 00000 n
+0000017121 00000 n
+0000017522 00000 n
+0000017973 00000 n
+0000019890 00000 n
+0000020260 00000 n
+0000022174 00000 n
+0000022550 00000 n
+0000022571 00000 n
+0000022739 00000 n
+0000022759 00000 n
+0000023135 00000 n
+0000023156 00000 n
+0000023324 00000 n
+0000023344 00000 n
+0000023720 00000 n
+0000023741 00000 n
+0000023909 00000 n
+0000023929 00000 n
+0000024305 00000 n
+0000024326 00000 n
+0000024494 00000 n
+0000024514 00000 n
+0000024890 00000 n
+0000024911 00000 n
+0000025079 00000 n
+0000025099 00000 n
+0000025475 00000 n
+0000025496 00000 n
+0000025664 00000 n
+0000025684 00000 n
+0000026907 00000 n
+0000026928 00000 n
+0000027041 00000 n
+0000027137 00000 n
+0000027250 00000 n
+0000027346 00000 n
+0000027459 00000 n
+0000027555 00000 n
+0000027651 00000 n
+0000027747 00000 n
+0000027843 00000 n
+0000027939 00000 n
+0000028035 00000 n
+0000028148 00000 n
+0000028244 00000 n
+0000028340 00000 n
+0000028437 00000 n
+0000028534 00000 n
+0000028631 00000 n
+0000028728 00000 n
+0000028825 00000 n
+0000028922 00000 n
+0000029019 00000 n
+0000029116 00000 n
+0000029230 00000 n
+0000029327 00000 n
+0000029424 00000 n
+0000029521 00000 n
+0000029618 00000 n
+0000029715 00000 n
+0000029812 00000 n
+0000029909 00000 n
+0000030006 00000 n
+0000030103 00000 n
+0000030200 00000 n
+0000030314 00000 n
+0000030411 00000 n
+0000030508 00000 n
+0000030605 00000 n
+0000030725 00000 n
+0000030822 00000 n
+0000030919 00000 n
+0000031016 00000 n
+0000031113 00000 n
+0000031210 00000 n
+0000031330 00000 n
+0000031428 00000 n
+0000031526 00000 n
+0000031624 00000 n
+0000031722 00000 n
+0000031820 00000 n
+0000031918 00000 n
+0000032016 00000 n
+0000032114 00000 n
+0000032212 00000 n
+0000032310 00000 n
+0000032408 00000 n
+0000032506 00000 n
+0000032604 00000 n
+0000032702 00000 n
+0000032800 00000 n
+0000033045 00000 n
+0000033806 00000 n
+0000033828 00000 n
+0000034044 00000 n
+0000034288 00000 n
+0000034929 00000 n
+0000034951 00000 n
+0000035166 00000 n
+0000035223 00000 n
+0000035280 00000 n
+0000035337 00000 n
+0000035394 00000 n
+0000035451 00000 n
+0000035508 00000 n
+0000035565 00000 n
+0000035622 00000 n
+0000035679 00000 n
+0000035736 00000 n
+0000035793 00000 n
+0000035850 00000 n
+0000035907 00000 n
+0000035964 00000 n
+0000036021 00000 n
+0000036078 00000 n
+0000036135 00000 n
+0000036192 00000 n
+0000036249 00000 n
+0000036306 00000 n
+0000036363 00000 n
+0000036420 00000 n
+0000036477 00000 n
+0000036534 00000 n
+0000036591 00000 n
+0000036648 00000 n
+0000036705 00000 n
+0000036762 00000 n
+0000036819 00000 n
+0000036876 00000 n
+0000036933 00000 n
+0000036990 00000 n
+0000037047 00000 n
+0000037104 00000 n
+0000037161 00000 n
+0000037218 00000 n
+0000037275 00000 n
+0000037332 00000 n
+0000037389 00000 n
+0000037446 00000 n
+0000037503 00000 n
+0000037560 00000 n
+0000037617 00000 n
+0000037674 00000 n
+0000053956 00000 n
+0000053980 00000 n
+0000065166 00000 n
+trailer <<
+ /DocChecksum /CC322E136FE95DECF8BC297B1A9B2C2E
+ /Info 2 0 R
+ /Root 1 0 R
+ /Size 201
+ /ID [<f8abc47bb1df544a0df9c15a75ef0046><31415926535897932384626433832795>]
+>>
+startxref
+65190
+%%EOF
diff --git a/qpdf/qtest/qpdf/appearances-2.pdf b/qpdf/qtest/qpdf/appearances-2.pdf
new file mode 100644
index 00000000..95251b9a
--- /dev/null
+++ b/qpdf/qtest/qpdf/appearances-2.pdf
@@ -0,0 +1,3853 @@
+%PDF-1.5
+%
+%QDF-1.0
+
+1 0 obj
+<<
+ /AcroForm <<
+ /DR 3 0 R
+ /Fields [
+ 4 0 R
+ 5 0 R
+ 6 0 R
+ 7 0 R
+ 8 0 R
+ 9 0 R
+ 10 0 R
+ 11 0 R
+ 12 0 R
+ 13 0 R
+ 14 0 R
+ ]
+ >>
+ /Lang (en-US)
+ /MarkInfo <<
+ /Marked true
+ >>
+ /OpenAction [
+ 15 0 R
+ /XYZ
+ null
+ null
+ 0
+ ]
+ /Pages 16 0 R
+ /StructTreeRoot 17 0 R
+ /Type /Catalog
+>>
+endobj
+
+2 0 obj
+<<
+ /CreationDate (D:20190103125434-05'00')
+ /Creator <feff005700720069007400650072>
+ /Producer <feff004c0069006200720065004f0066006600690063006500200036002e0031>
+>>
+endobj
+
+3 0 obj
+<<
+ /Font 18 0 R
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+>>
+endobj
+
+4 0 obj
+<<
+ /AP <<
+ /N 19 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Tx
+ /P 15 0 R
+ /Rect [
+ 123.499
+ 689.901
+ 260.801
+ 704.699
+ ]
+ /Subtype /Widget
+ /T (text)
+ /Type /Annot
+ /V <feff006100620063>
+>>
+endobj
+
+5 0 obj
+<<
+ /DV /1
+ /FT /Btn
+ /Ff 49152
+ /Kids [
+ 21 0 R
+ 22 0 R
+ 23 0 R
+ ]
+ /P 15 0 R
+ /T (r1)
+ /V /2
+>>
+endobj
+
+6 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 24 0 R
+ /Yes 26 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Off
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 554.301
+ 130.701
+ 566.349
+ ]
+ /Subtype /Widget
+ /T (checkbox1)
+ /Type /Annot
+ /V /Off
+>>
+endobj
+
+7 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 29 0 R
+ /Yes 31 0 R
+ >>
+ >>
+ /AS /Yes
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Yes
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 527.751
+ 130.701
+ 539.799
+ ]
+ /Subtype /Widget
+ /T (checkbox2)
+ /Type /Annot
+ /V /Yes
+>>
+endobj
+
+8 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 33 0 R
+ /Yes 35 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Off
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 500.501
+ 130.701
+ 512.549
+ ]
+ /Subtype /Widget
+ /T (checkbox3)
+ /Type /Annot
+ /V /Off
+>>
+endobj
+
+9 0 obj
+<<
+ /DV /2
+ /FT /Btn
+ /Ff 49152
+ /Kids [
+ 37 0 R
+ 38 0 R
+ 39 0 R
+ ]
+ /P 15 0 R
+ /T (r2)
+ /V /2
+>>
+endobj
+
+10 0 obj
+<<
+ /AP <<
+ /N 40 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff00730061006c00610064002003c002ac>
+ /F 4
+ /FT /Tx
+ /P 15 0 R
+ /Rect [
+ 113.649
+ 260.151
+ 351.101
+ 278.099
+ ]
+ /Subtype /Widget
+ /T (text2)
+ /Type /Annot
+ /V <feff00730061006c00610064002003c002ac>
+>>
+endobj
+
+11 0 obj
+<<
+ /AP <<
+ /N 42 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Opt [
+ <feff0031>
+ <feff0032>
+ <feff0033>
+ <feff0034>
+ <feff0066006900760065>
+ <feff007300690078>
+ <feff0073006500760065006e>
+ <feff00650069006700680074>
+ <feff0039>
+ <feff00310030>
+ <feff00310031>
+ <feff00310032>
+ ]
+ /P 15 0 R
+ /Rect [
+ 158.449
+ 156.651
+ 221.001
+ 232.849
+ ]
+ /Subtype /Widget
+ /T (list1)
+ /Type /Annot
+ /V <feff0032>
+>>
+endobj
+
+12 0 obj
+<<
+ /AP <<
+ /N 44 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 131072
+ /Opt [
+ <feff006e0069006e0065>
+ <feff00740065006e>
+ <feff0065006c0065007000680061006e0074>
+ <feff007400770065006c00760065>
+ ]
+ /P 15 0 R
+ /Rect [
+ 159.149
+ 107.251
+ 244.201
+ 130.949
+ ]
+ /Subtype /Widget
+ /T (drop1)
+ /Type /Annot
+ /V <feff0065006c0065007000680061006e0074>
+>>
+endobj
+
+13 0 obj
+<<
+ /AP <<
+ /N 46 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 393216
+ /Opt [
+ <feff006f006e0065>
+ <feff00740077006f>
+ <feff00700069>
+ <feff0066006f00750072>
+ ]
+ /P 15 0 R
+ /Rect [
+ 403.949
+ 159.401
+ 459.001
+ 232.849
+ ]
+ /Subtype /Widget
+ /T (combolist1)
+ /Type /Annot
+ /V <feff00700069>
+>>
+endobj
+
+14 0 obj
+<<
+ /AP <<
+ /N 48 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 393216
+ /Opt [
+ <feff0061006c007000680061>
+ <feff0062006500740061>
+ <feff00670061006d006d0061>
+ <feff00640065006c00740061>
+ ]
+ /P 15 0 R
+ /Rect [
+ 404.599
+ 101.451
+ 476.701
+ 135.349
+ ]
+ /Subtype /Widget
+ /T (combodrop1)
+ /Type /Annot
+ /V <feff00640065006c00740061>
+>>
+endobj
+
+%% Page 1
+15 0 obj
+<<
+ /Annots [
+ 4 0 R
+ 21 0 R
+ 22 0 R
+ 23 0 R
+ 6 0 R
+ 7 0 R
+ 8 0 R
+ 37 0 R
+ 38 0 R
+ 39 0 R
+ 10 0 R
+ 13 0 R
+ 11 0 R
+ 12 0 R
+ 14 0 R
+ 50 0 R
+ 51 0 R
+ ]
+ /Contents 52 0 R
+ /Group <<
+ /CS /DeviceRGB
+ /I true
+ /S /Transparency
+ >>
+ /MediaBox [
+ 0
+ 0
+ 612
+ 792
+ ]
+ /Parent 16 0 R
+ /Resources 3 0 R
+ /StructParents 0
+ /Type /Page
+>>
+endobj
+
+16 0 obj
+<<
+ /Count 1
+ /Kids [
+ 15 0 R
+ ]
+ /MediaBox [
+ 0
+ 0
+ 612
+ 792
+ ]
+ /Resources 3 0 R
+ /Type /Pages
+>>
+endobj
+
+17 0 obj
+<<
+ /K [
+ 54 0 R
+ ]
+ /ParentTree 55 0 R
+ /RoleMap <<
+ /Document /Document
+ /Standard /P
+ >>
+ /Type /StructTreeRoot
+>>
+endobj
+
+18 0 obj
+<<
+ /F1 56 0 R
+ /F2 57 0 R
+ /F3 58 0 R
+ /F4 59 0 R
+ /ZaDi 28 0 R
+>>
+endobj
+
+19 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 137.3
+ 14.8
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 20 0 R
+>>
+stream
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F2 12 Tf
+q
+BT
+1 2.600000 Td
+(abc) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+20 0 obj
+82
+endobj
+
+21 0 obj
+<<
+ /AP <<
+ /N <<
+ /1 60 0 R
+ /Off 62 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 152.749
+ 648.501
+ 164.801
+ 660.549
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+22 0 obj
+<<
+ /AP <<
+ /N <<
+ /2 64 0 R
+ /Off 66 0 R
+ >>
+ >>
+ /AS /2
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 152.749
+ 627.301
+ 164.801
+ 639.349
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+23 0 obj
+<<
+ /AP <<
+ /N <<
+ /3 68 0 R
+ /Off 70 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 151.399
+ 606.501
+ 163.451
+ 618.549
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+24 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 25 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+25 0 obj
+12
+endobj
+
+26 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 27 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+27 0 obj
+82
+endobj
+
+28 0 obj
+<<
+ /BaseFont /ZapfDingbats
+ /Subtype /Type1
+ /Type /Font
+>>
+endobj
+
+29 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 30 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+30 0 obj
+12
+endobj
+
+31 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 32 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+32 0 obj
+82
+endobj
+
+33 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 34 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+34 0 obj
+12
+endobj
+
+35 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 36 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+36 0 obj
+82
+endobj
+
+37 0 obj
+<<
+ /AP <<
+ /N <<
+ /1 72 0 R
+ /Off 74 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 118.649
+ 388.101
+ 130.701
+ 400.149
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+38 0 obj
+<<
+ /AP <<
+ /N <<
+ /2 76 0 R
+ /Off 78 0 R
+ >>
+ >>
+ /AS /2
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 119.349
+ 362.201
+ 131.401
+ 374.249
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+39 0 obj
+<<
+ /AP <<
+ /N <<
+ /3 80 0 R
+ /Off 82 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 119.349
+ 333.551
+ 131.401
+ 345.599
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+40 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 237.45
+ 17.95
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 41 0 R
+>>
+stream
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F2 12 Tf
+q
+BT
+1 4.175000 Td
+(salad ??) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+41 0 obj
+87
+endobj
+
+42 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 62.55
+ 76.2
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 43 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 62.55 76.2 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+q
+0.85 0.85 0.85 rg
+0 50.100000 62 12.000000 re f
+Q
+BT
+1 64.100000 Td
+(1) Tj
+ET
+BT
+1 52.100000 Td
+(2) Tj
+ET
+BT
+1 40.100000 Td
+(3) Tj
+ET
+BT
+1 28.100000 Td
+(4) Tj
+ET
+BT
+1 16.100000 Td
+(five) Tj
+ET
+BT
+1 4.100000 Td
+(six) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+43 0 obj
+311
+endobj
+
+44 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 85.05
+ 23.7
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 45 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 85.05 23.7 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+BT
+1 7.850000 Td
+(elephant) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+45 0 obj
+121
+endobj
+
+46 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 55.05
+ 73.45
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 47 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 55.05 73.45 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+BT
+1 32.725000 Td
+(pi) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+47 0 obj
+117
+endobj
+
+48 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 72.1
+ 33.9
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 49 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 72.1 33.9 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+BT
+1 12.950000 Td
+(delta) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+49 0 obj
+118
+endobj
+
+50 0 obj
+<<
+ /AP <<
+ /N 84 0 R
+ >>
+ /C [
+ 1
+ 1
+ 0
+ ]
+ /CA 1
+ /Contents (Salad)
+ /CreationDate (D:20181231235455Z00'00)
+ /F 28
+ /M (D:20181231235455Z00'00)
+ /Name /Comment
+ /P 15 0 R
+ /Popup 51 0 R
+ /Rect [
+ 435
+ 703
+ 453
+ 721
+ ]
+ /Subtype /Text
+ /T (Jay Berkenbilt)
+ /Type /Annot
+>>
+endobj
+
+51 0 obj
+<<
+ /F 28
+ /Open false
+ /Parent 50 0 R
+ /Rect [
+ 612
+ 601
+ 792
+ 721
+ ]
+ /Subtype /Popup
+ /Type /Annot
+>>
+endobj
+
+%% Contents for page 1
+52 0 obj
+<<
+ /Length 53 0 R
+>>
+stream
+0.1 w
+/Artifact BMC
+q 0 0.028 611.971 791.971 re
+W* n
+EMC
+/Standard<</MCID 0>>BDC
+q 0 0 0 rg
+BT
+56.8 724.1 Td /F1 12 Tf[<01>1<0203>1<0403>1<05>58<06>-10<0708>2<09070a0b0408>2(\f)]TJ
+ET
+Q
+EMC
+/Standard<</MCID 1>>BDC
+q 0 0 0 rg
+BT
+56.8 693 Td /F1 12 Tf[(\r)68<03>1<0e0f>2<0710>-1<11>2<03>1<12>2<13>-7<0707070707>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 2>>BDC
+q 0 0 0 rg
+BT
+56.8 661.9 Td /F1 12 Tf[<0414>1<1311>2<0b0715>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 3>>BDC
+q 0 0 0 rg
+BT
+56.8 565.3 Td /F1 12 Tf[<16>1<0203>1<16>1<17>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 4>>BDC
+q 0 0 0 rg
+BT
+56.8 413.5 Td /F1 12 Tf[<0414>1<1311>2<0b0718>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 5>>BDC
+q 0 0 0 rg
+BT
+56.8 261.7 Td /F1 12 Tf[<19>-1<0b0f>2<14>1<0f>2<0b>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 6>>BDC
+q 0 0 0 rg
+BT
+56.8 206.5 Td /F1 12 Tf[<1a>2<11>2<06>-2<0f>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 7>>BDC
+q 0 0 0 rg
+BT
+269.5 206.5 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0712>2<11>2<06>-2<0f>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 8>>BDC
+q 0 0 0 rg
+BT
+56.8 123.7 Td /F1 12 Tf[<1d>5<040b1e130b1f>-2( )]TJ
+ET
+Q
+EMC
+/Standard<</MCID 9>>BDC
+q 0 0 0 rg
+BT
+269.5 123.7 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0713040b1e130b1f>-2( )]TJ
+ET
+Q
+EMC
+/Form<</MCID 10>>BDC
+0 0 0 RG
+1 1 1 rg
+120.5 686.9 143.3 20.8 re B*
+EMC
+/Form<</MCID 11>>BDC
+151.55 642.6 183.45 23.9 re f*
+q 1.2 w 0 0 0 RG
+158.75 660.55 m 162.1 660.55 164.8 657.9 164.8 654.55 c
+164.8 651.2 162.1 648.5 158.75 648.5 c
+155.4 648.5 152.75 651.2 152.75 654.55 c
+152.75 657.9 155.4 660.55 158.75 660.55 c s
+ Q
+q 169.6 642.6 164.25 23.9 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+169.6 650.3 Td /F3 12 Tf[<0102>-1<0304>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 12>>BDC
+1 1 1 rg
+151.55 624.8 125.5 17.1 re f*
+q 1.2 w 0 0 0 RG
+158.75 639.35 m 162.1 639.35 164.8 636.7 164.8 633.35 c
+164.8 630 162.1 627.3 158.75 627.3 c
+155.4 627.3 152.75 630 152.75 633.35 c
+152.75 636.7 155.4 639.35 158.75 639.35 c s
+ Q
+q 169.6 624.8 106.3 17.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+169.6 629.1 Td /F3 12 Tf[<0102>-1<0305>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 13>>BDC
+1 1 1 rg
+150.2 605.7 118.7 13.7 re f*
+q 1.2 w 0 0 0 RG
+157.4 618.55 m 160.75 618.55 163.45 615.9 163.45 612.55 c
+163.45 609.2 160.75 606.5 157.4 606.5 c
+154.05 606.5 151.4 609.2 151.4 612.55 c
+151.4 615.9 154.05 618.55 157.4 618.55 c s
+ Q
+q 168.25 605.7 99.5 13.7 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+168.3 608.3 Td /F3 12 Tf[<0102>-1<0306>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 14>>BDC
+1 1 1 rg
+117.45 544.3 86.65 32.1 re f*
+q 1.2 w 0 0 0 RG
+118.65 554.3 12.05 12.05 re S
+ Q
+q 135.5 544.3 67.45 32.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 556.1 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 15>>BDC
+1 1 1 rg
+117.45 523.2 85.3 21.15 re f*
+q 1.2 w 0 0 0 RG
+118.65 527.75 12.05 12.05 re S
+ Q
+q 135.5 523.2 66.1 21.15 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 529.6 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<0f>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 16>>BDC
+1 1 1 rg
+117.45 498 72.35 17.1 re f*
+q 1.2 w 0 0 0 RG
+118.65 500.5 12.05 12.05 re S
+ Q
+q 135.5 498 53.15 17.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 502.3 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<10>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 17>>BDC
+1 1 1 rg
+117.45 378.75 169.15 30.75 re f*
+q 1.2 w 0 0 0 RG
+124.65 400.15 m 128 400.15 130.7 397.5 130.7 394.15 c
+130.7 390.8 128 388.1 124.65 388.1 c
+121.3 388.1 118.65 390.8 118.65 394.15 c
+118.65 397.5 121.3 400.15 124.65 400.15 c s
+ Q
+q 135.5 378.75 149.95 30.75 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 389.9 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 18>>BDC
+1 1 1 rg
+118.15 352.85 180.7 30.75 re f*
+q 1.2 w 0 0 0 RG
+125.35 374.25 m 128.7 374.25 131.4 371.6 131.4 368.25 c
+131.4 364.9 128.7 362.2 125.35 362.2 c
+122 362.2 119.35 364.9 119.35 368.25 c
+119.35 371.6 122 374.25 125.35 374.25 c s
+ Q
+q 136.2 352.85 161.5 30.75 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+136.2 364 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<0f>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 19>>BDC
+1 1 1 rg
+118.15 322.85 139.15 33.5 re f*
+q 1.2 w 0 0 0 RG
+125.35 345.6 m 128.7 345.6 131.4 342.95 131.4 339.6 c
+131.4 336.25 128.7 333.55 125.35 333.55 c
+122 333.55 119.35 336.25 119.35 339.6 c
+119.35 342.95 122 345.6 125.35 345.6 c s
+ Q
+q 136.2 322.85 119.95 33.5 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+136.2 335.4 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<10>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 20>>BDC
+0 0 0 RG
+1 1 1 rg
+110.65 257.15 243.45 23.95 re B*
+EMC
+/Form<</MCID 21>>BDC
+155.95 154.15 67.55 81.2 re B*
+EMC
+/Form<</MCID 22>>BDC
+156.65 104.75 90.05 28.7 re B*
+EMC
+/Form<</MCID 23>>BDC
+401.45 156.9 60.05 78.45 re B*
+EMC
+/Form<</MCID 24>>BDC
+402.1 98.95 77.1 38.9 re B*
+EMC
+Q
+endstream
+endobj
+
+%QDF: ignore_newline
+53 0 obj
+4747
+endobj
+
+54 0 obj
+<<
+ /K [
+ 86 0 R
+ 87 0 R
+ 88 0 R
+ 89 0 R
+ 90 0 R
+ 91 0 R
+ 92 0 R
+ 93 0 R
+ 94 0 R
+ 95 0 R
+ 96 0 R
+ 97 0 R
+ 98 0 R
+ 99 0 R
+ 100 0 R
+ 101 0 R
+ 102 0 R
+ 103 0 R
+ 104 0 R
+ 105 0 R
+ 106 0 R
+ 107 0 R
+ 108 0 R
+ 109 0 R
+ 110 0 R
+ 111 0 R
+ 112 0 R
+ 113 0 R
+ 114 0 R
+ 115 0 R
+ 116 0 R
+ 117 0 R
+ 118 0 R
+ 119 0 R
+ 120 0 R
+ 121 0 R
+ 122 0 R
+ 123 0 R
+ 124 0 R
+ 125 0 R
+ 126 0 R
+ 127 0 R
+ 128 0 R
+ 129 0 R
+ 130 0 R
+ 131 0 R
+ 132 0 R
+ 133 0 R
+ 134 0 R
+ 135 0 R
+ 136 0 R
+ 137 0 R
+ 138 0 R
+ 139 0 R
+ 140 0 R
+ 141 0 R
+ 142 0 R
+ 143 0 R
+ 144 0 R
+ ]
+ /P 17 0 R
+ /Pg 15 0 R
+ /S /Document
+ /Type /StructElem
+>>
+endobj
+
+55 0 obj
+<<
+ /Nums [
+ 0
+ [
+ 86 0 R
+ 88 0 R
+ 90 0 R
+ 97 0 R
+ 108 0 R
+ 119 0 R
+ 123 0 R
+ 123 0 R
+ 129 0 R
+ 129 0 R
+ 130 0 R
+ 131 0 R
+ 132 0 R
+ 133 0 R
+ 134 0 R
+ 135 0 R
+ 136 0 R
+ 137 0 R
+ 138 0 R
+ 139 0 R
+ 140 0 R
+ 141 0 R
+ 142 0 R
+ 143 0 R
+ 144 0 R
+ ]
+ ]
+>>
+endobj
+
+56 0 obj
+<<
+ /BaseFont /BAAAAA+LiberationSerif
+ /FirstChar 0
+ /FontDescriptor 145 0 R
+ /LastChar 32
+ /Subtype /TrueType
+ /ToUnicode 146 0 R
+ /Type /Font
+ /Widths [
+ 777
+ 943
+ 500
+ 443
+ 333
+ 333
+ 389
+ 250
+ 777
+ 500
+ 333
+ 500
+ 443
+ 610
+ 500
+ 277
+ 556
+ 277
+ 277
+ 500
+ 443
+ 500
+ 443
+ 500
+ 500
+ 556
+ 610
+ 666
+ 500
+ 722
+ 500
+ 722
+ 500
+ ]
+>>
+endobj
+
+57 0 obj
+<<
+ /BaseFont /LiberationSans
+ /Encoding /WinAnsiEncoding
+ /FirstChar 32
+ /FontDescriptor 148 0 R
+ /LastChar 255
+ /Subtype /TrueType
+ /Type /Font
+ /Widths [
+ 277
+ 277
+ 354
+ 556
+ 556
+ 889
+ 666
+ 190
+ 333
+ 333
+ 389
+ 583
+ 277
+ 333
+ 277
+ 277
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 277
+ 277
+ 583
+ 583
+ 583
+ 556
+ 1015
+ 666
+ 666
+ 722
+ 722
+ 666
+ 610
+ 777
+ 722
+ 277
+ 500
+ 666
+ 556
+ 833
+ 722
+ 777
+ 666
+ 777
+ 722
+ 666
+ 610
+ 722
+ 666
+ 943
+ 666
+ 666
+ 610
+ 277
+ 277
+ 277
+ 469
+ 556
+ 333
+ 556
+ 556
+ 500
+ 556
+ 556
+ 277
+ 556
+ 556
+ 222
+ 222
+ 500
+ 222
+ 833
+ 556
+ 556
+ 556
+ 556
+ 333
+ 500
+ 277
+ 556
+ 500
+ 722
+ 500
+ 500
+ 500
+ 333
+ 259
+ 333
+ 583
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 277
+ 333
+ 556
+ 556
+ 556
+ 556
+ 259
+ 556
+ 333
+ 736
+ 370
+ 556
+ 583
+ 333
+ 736
+ 552
+ 399
+ 548
+ 333
+ 333
+ 333
+ 576
+ 537
+ 333
+ 333
+ 333
+ 365
+ 556
+ 833
+ 833
+ 833
+ 610
+ 666
+ 666
+ 666
+ 666
+ 666
+ 666
+ 1000
+ 722
+ 666
+ 666
+ 666
+ 666
+ 277
+ 277
+ 277
+ 277
+ 722
+ 722
+ 777
+ 777
+ 777
+ 777
+ 777
+ 583
+ 777
+ 722
+ 722
+ 722
+ 722
+ 666
+ 666
+ 610
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 889
+ 500
+ 556
+ 556
+ 556
+ 556
+ 277
+ 277
+ 277
+ 277
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 548
+ 610
+ 556
+ 556
+ 556
+ 556
+ 500
+ 556
+ 500
+ ]
+>>
+endobj
+
+58 0 obj
+<<
+ /BaseFont /DAAAAA+LiberationSans
+ /FirstChar 0
+ /FontDescriptor 149 0 R
+ /LastChar 22
+ /Subtype /TrueType
+ /ToUnicode 150 0 R
+ /Type /Font
+ /Widths [
+ 750
+ 333
+ 556
+ 333
+ 556
+ 556
+ 500
+ 722
+ 556
+ 556
+ 500
+ 277
+ 666
+ 556
+ 500
+ 556
+ 556
+ 777
+ 556
+ 277
+ 222
+ 556
+ 556
+ ]
+>>
+endobj
+
+59 0 obj
+<<
+ /BaseFont /DejaVuSans
+ /Encoding /WinAnsiEncoding
+ /FirstChar 32
+ /FontDescriptor 152 0 R
+ /LastChar 255
+ /Subtype /TrueType
+ /Type /Font
+ /Widths [
+ 317
+ 400
+ 459
+ 837
+ 636
+ 950
+ 779
+ 274
+ 390
+ 390
+ 500
+ 837
+ 317
+ 360
+ 317
+ 336
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 336
+ 336
+ 837
+ 837
+ 837
+ 530
+ 1000
+ 684
+ 686
+ 698
+ 770
+ 631
+ 575
+ 774
+ 751
+ 294
+ 294
+ 655
+ 557
+ 862
+ 748
+ 787
+ 603
+ 787
+ 694
+ 634
+ 610
+ 731
+ 684
+ 988
+ 685
+ 610
+ 685
+ 390
+ 336
+ 390
+ 837
+ 500
+ 500
+ 612
+ 634
+ 549
+ 634
+ 615
+ 352
+ 634
+ 633
+ 277
+ 277
+ 579
+ 277
+ 974
+ 633
+ 611
+ 634
+ 634
+ 411
+ 520
+ 392
+ 633
+ 591
+ 817
+ 591
+ 591
+ 524
+ 636
+ 336
+ 636
+ 837
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 317
+ 400
+ 636
+ 636
+ 636
+ 636
+ 336
+ 500
+ 500
+ 1000
+ 471
+ 611
+ 837
+ 360
+ 1000
+ 500
+ 500
+ 837
+ 400
+ 400
+ 500
+ 636
+ 636
+ 317
+ 500
+ 400
+ 471
+ 611
+ 969
+ 969
+ 969
+ 530
+ 684
+ 684
+ 684
+ 684
+ 684
+ 684
+ 974
+ 698
+ 631
+ 631
+ 631
+ 631
+ 294
+ 294
+ 294
+ 294
+ 774
+ 748
+ 787
+ 787
+ 787
+ 787
+ 787
+ 837
+ 787
+ 731
+ 731
+ 731
+ 731
+ 610
+ 604
+ 629
+ 612
+ 612
+ 612
+ 612
+ 612
+ 612
+ 981
+ 549
+ 615
+ 615
+ 615
+ 615
+ 277
+ 277
+ 277
+ 277
+ 611
+ 633
+ 611
+ 611
+ 611
+ 611
+ 611
+ 837
+ 611
+ 633
+ 633
+ 633
+ 633
+ 591
+ 634
+ 591
+ ]
+>>
+endobj
+
+60 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 61 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+61 0 obj
+220
+endobj
+
+62 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 63 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+63 0 obj
+12
+endobj
+
+64 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 65 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+65 0 obj
+220
+endobj
+
+66 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 67 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+67 0 obj
+12
+endobj
+
+68 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 69 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+69 0 obj
+220
+endobj
+
+70 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 71 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+71 0 obj
+12
+endobj
+
+72 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 73 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+73 0 obj
+220
+endobj
+
+74 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 75 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+75 0 obj
+12
+endobj
+
+76 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 77 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+77 0 obj
+220
+endobj
+
+78 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 79 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+79 0 obj
+12
+endobj
+
+80 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 81 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+81 0 obj
+220
+endobj
+
+82 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 83 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+83 0 obj
+12
+endobj
+
+84 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 18
+ 18
+ ]
+ /Resources <<
+ /ExtGState <<
+ /GS0 <<
+ /AIS false
+ /BM /Normal
+ /CA .6
+ /Type /ExtGState
+ /ca .6
+ >>
+ >>
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 85 0 R
+>>
+stream
+q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b
+endstream
+endobj
+
+85 0 obj
+929
+endobj
+
+86 0 obj
+<<
+ /A 153 0 R
+ /K [
+ 0
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+87 0 obj
+<<
+ /A 154 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+88 0 obj
+<<
+ /A 155 0 R
+ /K [
+ 1
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+89 0 obj
+<<
+ /A 156 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+90 0 obj
+<<
+ /A 157 0 R
+ /K [
+ 2
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+91 0 obj
+<<
+ /A 158 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+92 0 obj
+<<
+ /A 159 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+93 0 obj
+<<
+ /A 160 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+94 0 obj
+<<
+ /A 161 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+95 0 obj
+<<
+ /A 162 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+96 0 obj
+<<
+ /A 163 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+97 0 obj
+<<
+ /A 164 0 R
+ /K [
+ 3
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+98 0 obj
+<<
+ /A 165 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+99 0 obj
+<<
+ /A 166 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+100 0 obj
+<<
+ /A 167 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+101 0 obj
+<<
+ /A 168 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+102 0 obj
+<<
+ /A 169 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+103 0 obj
+<<
+ /A 170 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+104 0 obj
+<<
+ /A 171 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+105 0 obj
+<<
+ /A 172 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+106 0 obj
+<<
+ /A 173 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+107 0 obj
+<<
+ /A 174 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+108 0 obj
+<<
+ /A 175 0 R
+ /K [
+ 4
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+109 0 obj
+<<
+ /A 176 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+110 0 obj
+<<
+ /A 177 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+111 0 obj
+<<
+ /A 178 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+112 0 obj
+<<
+ /A 179 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+113 0 obj
+<<
+ /A 180 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+114 0 obj
+<<
+ /A 181 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+115 0 obj
+<<
+ /A 182 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+116 0 obj
+<<
+ /A 183 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+117 0 obj
+<<
+ /A 184 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+118 0 obj
+<<
+ /A 185 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+119 0 obj
+<<
+ /A 186 0 R
+ /K [
+ 5
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+120 0 obj
+<<
+ /A 187 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+121 0 obj
+<<
+ /A 188 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+122 0 obj
+<<
+ /A 189 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+123 0 obj
+<<
+ /A 190 0 R
+ /K [
+ 6
+ 7
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+124 0 obj
+<<
+ /A 191 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+125 0 obj
+<<
+ /A 192 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+126 0 obj
+<<
+ /A 193 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+127 0 obj
+<<
+ /A 194 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+128 0 obj
+<<
+ /A 195 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+129 0 obj
+<<
+ /A 196 0 R
+ /K [
+ 8
+ 9
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+130 0 obj
+<<
+ /K [
+ 10
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+131 0 obj
+<<
+ /K [
+ 11
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+132 0 obj
+<<
+ /K [
+ 12
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+133 0 obj
+<<
+ /K [
+ 13
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+134 0 obj
+<<
+ /K [
+ 14
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+135 0 obj
+<<
+ /K [
+ 15
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+136 0 obj
+<<
+ /K [
+ 16
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+137 0 obj
+<<
+ /K [
+ 17
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+138 0 obj
+<<
+ /K [
+ 18
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+139 0 obj
+<<
+ /K [
+ 19
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+140 0 obj
+<<
+ /K [
+ 20
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+141 0 obj
+<<
+ /K [
+ 21
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+142 0 obj
+<<
+ /K [
+ 22
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+143 0 obj
+<<
+ /K [
+ 23
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+144 0 obj
+<<
+ /K [
+ 24
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+145 0 obj
+<<
+ /Ascent 891
+ /CapHeight 981
+ /Descent -216
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1277
+ 981
+ ]
+ /FontFile2 197 0 R
+ /FontName /BAAAAA+LiberationSerif
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+146 0 obj
+<<
+ /Length 147 0 R
+>>
+stream
+/CIDInit/ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo<<
+/Registry (Adobe)
+/Ordering (UCS)
+/Supplement 0
+>> def
+/CMapName/Adobe-Identity-UCS def
+/CMapType 2 def
+1 begincodespacerange
+<00> <FF>
+endcodespacerange
+32 beginbfchar
+<01> <0057>
+<02> <0068>
+<03> <0065>
+<04> <0072>
+<05> <2019>
+<06> <0073>
+<07> <0020>
+<08> <006D>
+<09> <0079>
+<0A> <0066>
+<0B> <006F>
+<0C> <003F>
+<0D> <0054>
+<0E> <0078>
+<0F> <0074>
+<10> <0046>
+<11> <0069>
+<12> <006C>
+<13> <0064>
+<14> <0061>
+<15> <0031>
+<16> <0063>
+<17> <006B>
+<18> <0032>
+<19> <0050>
+<1A> <004C>
+<1B> <0043>
+<1C> <0062>
+<1D> <0044>
+<1E> <0070>
+<1F> <0077>
+<20> <006E>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+endstream
+endobj
+
+147 0 obj
+702
+endobj
+
+148 0 obj
+<<
+ /Ascent 905
+ /CapHeight 979
+ /Descent -211
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1300
+ 979
+ ]
+ /FontName /LiberationSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+149 0 obj
+<<
+ /Ascent 905
+ /CapHeight 979
+ /Descent -211
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1300
+ 979
+ ]
+ /FontFile2 199 0 R
+ /FontName /DAAAAA+LiberationSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+150 0 obj
+<<
+ /Length 151 0 R
+>>
+stream
+/CIDInit/ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo<<
+/Registry (Adobe)
+/Ordering (UCS)
+/Supplement 0
+>> def
+/CMapName/Adobe-Identity-UCS def
+/CMapType 2 def
+1 begincodespacerange
+<00> <FF>
+endcodespacerange
+22 beginbfchar
+<01> <0072>
+<02> <0031>
+<03> <002D>
+<04> <0061>
+<05> <0062>
+<06> <0063>
+<07> <0043>
+<08> <0068>
+<09> <0065>
+<0A> <006B>
+<0B> <0020>
+<0C> <0042>
+<0D> <006F>
+<0E> <0078>
+<0F> <0032>
+<10> <0033>
+<11> <004F>
+<12> <0070>
+<13> <0074>
+<14> <0069>
+<15> <006E>
+<16> <0075>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+endstream
+endobj
+
+151 0 obj
+582
+endobj
+
+152 0 obj
+<<
+ /Ascent 928
+ /CapHeight 1232
+ /Descent -235
+ /Flags 4
+ /FontBBox [
+ -1020
+ -462
+ 1792
+ 1232
+ ]
+ /FontName /DejaVuSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+153 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+154 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+155 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+156 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+157 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+158 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+159 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+160 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+161 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+162 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+163 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+164 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+165 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+166 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+167 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+168 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+169 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+170 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+171 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+172 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+173 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+174 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+175 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+176 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+177 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+178 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+179 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+180 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+181 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+182 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+183 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+184 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+185 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+186 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+187 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+188 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+189 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+190 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+191 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+192 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+193 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+194 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+195 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+196 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+197 0 obj
+<<
+ /Length1 16184
+ /Length 198 0 R
+>>
+stream
+true
+{
+ 
+
+
+
+ 
+C#Ce
+-,
+ C#C -,
+-, i@a
+@@ @  CTX@
+#eB #B#?
+
+ H 
+_Y @
+ H 
+ PY
+_@qrr
+ 6A--XSY-- -
+PY
+
+@adH$4Dd $D
+9$d$!H@*H@
+ PY  
++,@@,-@@:-- -
+ PY
+"QYPY 
+PY
+
+
+sYvY@
+
+ `Y `Y_Y
+ _Y o/oO?/o_8/?^]]]]]]qqqqrr^]]]]]]qqqqqqqrrrrr
+ 
+
+
+
+"#PY PY QY
+
+ H 
+PY @
+ H 
+
+\
+ 4 : * p42
+nQ
+
+Copyright (c) 2012 Red Hat, Inc.Liberation SerifRegularAscender - Liberation SerifLiberation SerifVersion 2.00.2LiberationSerifLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman. Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL
+
+
+endstream
+endobj
+
+%QDF: ignore_newline
+198 0 obj
+16184
+endobj
+
+199 0 obj
+<<
+ /Length1 11088
+ /Length 200 0 R
+>>
+stream
+true
+ 
+ 
+C#Ce
+-,
+ C#C -,
+-, i@a
+@@ @  CTX@
+#eB #B#?
+
+
+
+
+!PY%?%%p%%%%%]]]qqqrr
+6YAXhZ
+
+PY
+]
+
+
+
+
+
+  v D T d 6 $         v d   & F V g F V  d V D 6 $      & 6 F 7f  @6=BH9 " 
+
+
+
+
+r
+iN
+
+Copyright (c) 2012 Red Hat, Inc.Liberation SansRegularAscender - Liberation SansLiberation SansVersion 2.00.2LiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL
+
+O P(F(F*F+_O_ F@FF@36FFUHU2
+endstream
+endobj
+
+%QDF: ignore_newline
+200 0 obj
+11088
+endobj
+
+xref
+0 201
+0000000000 65535 f
+0000000025 00000 n
+0000000413 00000 n
+0000000598 00000 n
+0000000671 00000 n
+0000000971 00000 n
+0000001102 00000 n
+0000001491 00000 n
+0000001880 00000 n
+0000002269 00000 n
+0000002400 00000 n
+0000002754 00000 n
+0000003305 00000 n
+0000003781 00000 n
+0000004202 00000 n
+0000004673 00000 n
+0000005098 00000 n
+0000005237 00000 n
+0000005387 00000 n
+0000005477 00000 n
+0000005714 00000 n
+0000005734 00000 n
+0000006100 00000 n
+0000006464 00000 n
+0000006830 00000 n
+0000006998 00000 n
+0000007018 00000 n
+0000007256 00000 n
+0000007276 00000 n
+0000007357 00000 n
+0000007525 00000 n
+0000007545 00000 n
+0000007783 00000 n
+0000007803 00000 n
+0000007971 00000 n
+0000007991 00000 n
+0000008229 00000 n
+0000008249 00000 n
+0000008615 00000 n
+0000008979 00000 n
+0000009345 00000 n
+0000009589 00000 n
+0000009609 00000 n
+0000010075 00000 n
+0000010096 00000 n
+0000010372 00000 n
+0000010393 00000 n
+0000010666 00000 n
+0000010687 00000 n
+0000010959 00000 n
+0000010980 00000 n
+0000011312 00000 n
+0000011476 00000 n
+0000016302 00000 n
+0000016324 00000 n
+0000017112 00000 n
+0000017513 00000 n
+0000017964 00000 n
+0000019881 00000 n
+0000020251 00000 n
+0000022165 00000 n
+0000022541 00000 n
+0000022562 00000 n
+0000022730 00000 n
+0000022750 00000 n
+0000023126 00000 n
+0000023147 00000 n
+0000023315 00000 n
+0000023335 00000 n
+0000023711 00000 n
+0000023732 00000 n
+0000023900 00000 n
+0000023920 00000 n
+0000024296 00000 n
+0000024317 00000 n
+0000024485 00000 n
+0000024505 00000 n
+0000024881 00000 n
+0000024902 00000 n
+0000025070 00000 n
+0000025090 00000 n
+0000025466 00000 n
+0000025487 00000 n
+0000025655 00000 n
+0000025675 00000 n
+0000026898 00000 n
+0000026919 00000 n
+0000027032 00000 n
+0000027128 00000 n
+0000027241 00000 n
+0000027337 00000 n
+0000027450 00000 n
+0000027546 00000 n
+0000027642 00000 n
+0000027738 00000 n
+0000027834 00000 n
+0000027930 00000 n
+0000028026 00000 n
+0000028139 00000 n
+0000028235 00000 n
+0000028331 00000 n
+0000028428 00000 n
+0000028525 00000 n
+0000028622 00000 n
+0000028719 00000 n
+0000028816 00000 n
+0000028913 00000 n
+0000029010 00000 n
+0000029107 00000 n
+0000029221 00000 n
+0000029318 00000 n
+0000029415 00000 n
+0000029512 00000 n
+0000029609 00000 n
+0000029706 00000 n
+0000029803 00000 n
+0000029900 00000 n
+0000029997 00000 n
+0000030094 00000 n
+0000030191 00000 n
+0000030305 00000 n
+0000030402 00000 n
+0000030499 00000 n
+0000030596 00000 n
+0000030716 00000 n
+0000030813 00000 n
+0000030910 00000 n
+0000031007 00000 n
+0000031104 00000 n
+0000031201 00000 n
+0000031321 00000 n
+0000031419 00000 n
+0000031517 00000 n
+0000031615 00000 n
+0000031713 00000 n
+0000031811 00000 n
+0000031909 00000 n
+0000032007 00000 n
+0000032105 00000 n
+0000032203 00000 n
+0000032301 00000 n
+0000032399 00000 n
+0000032497 00000 n
+0000032595 00000 n
+0000032693 00000 n
+0000032791 00000 n
+0000033036 00000 n
+0000033797 00000 n
+0000033819 00000 n
+0000034035 00000 n
+0000034279 00000 n
+0000034920 00000 n
+0000034942 00000 n
+0000035157 00000 n
+0000035214 00000 n
+0000035271 00000 n
+0000035328 00000 n
+0000035385 00000 n
+0000035442 00000 n
+0000035499 00000 n
+0000035556 00000 n
+0000035613 00000 n
+0000035670 00000 n
+0000035727 00000 n
+0000035784 00000 n
+0000035841 00000 n
+0000035898 00000 n
+0000035955 00000 n
+0000036012 00000 n
+0000036069 00000 n
+0000036126 00000 n
+0000036183 00000 n
+0000036240 00000 n
+0000036297 00000 n
+0000036354 00000 n
+0000036411 00000 n
+0000036468 00000 n
+0000036525 00000 n
+0000036582 00000 n
+0000036639 00000 n
+0000036696 00000 n
+0000036753 00000 n
+0000036810 00000 n
+0000036867 00000 n
+0000036924 00000 n
+0000036981 00000 n
+0000037038 00000 n
+0000037095 00000 n
+0000037152 00000 n
+0000037209 00000 n
+0000037266 00000 n
+0000037323 00000 n
+0000037380 00000 n
+0000037437 00000 n
+0000037494 00000 n
+0000037551 00000 n
+0000037608 00000 n
+0000037665 00000 n
+0000053947 00000 n
+0000053971 00000 n
+0000065157 00000 n
+trailer <<
+ /DocChecksum /CC322E136FE95DECF8BC297B1A9B2C2E
+ /Info 2 0 R
+ /Root 1 0 R
+ /Size 201
+ /ID [<f8abc47bb1df544a0df9c15a75ef0046><31415926535897932384626433832795>]
+>>
+startxref
+65181
+%%EOF
diff --git a/qpdf/qtest/qpdf/appearances-a.pdf b/qpdf/qtest/qpdf/appearances-a.pdf
new file mode 100644
index 00000000..8fe477af
--- /dev/null
+++ b/qpdf/qtest/qpdf/appearances-a.pdf
@@ -0,0 +1,3278 @@
+%PDF-1.5
+%
+%QDF-1.0
+
+1 0 obj
+<<
+ /Lang (en-US)
+ /MarkInfo <<
+ /Marked true
+ >>
+ /OpenAction [
+ 3 0 R
+ /XYZ
+ null
+ null
+ 0
+ ]
+ /Pages 4 0 R
+ /StructTreeRoot 5 0 R
+ /Type /Catalog
+>>
+endobj
+
+2 0 obj
+<<
+ /CreationDate (D:20190103125434-05'00')
+ /Creator <feff005700720069007400650072>
+ /Producer <feff004c0069006200720065004f0066006600690063006500200036002e0031>
+>>
+endobj
+
+%% Page 1
+3 0 obj
+<<
+ /Annots [
+ 6 0 R
+ ]
+ /Contents [
+ 7 0 R
+ 9 0 R
+ 11 0 R
+ ]
+ /Group <<
+ /CS /DeviceRGB
+ /I true
+ /S /Transparency
+ >>
+ /MediaBox [
+ 0
+ 0
+ 612
+ 792
+ ]
+ /Parent 4 0 R
+ /Resources <<
+ /Font 13 0 R
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+ /XObject <<
+ /Fxo1 14 0 R
+ /Fxo10 16 0 R
+ /Fxo11 18 0 R
+ /Fxo12 20 0 R
+ /Fxo13 22 0 R
+ /Fxo14 24 0 R
+ /Fxo15 26 0 R
+ /Fxo16 28 0 R
+ /Fxo2 30 0 R
+ /Fxo3 32 0 R
+ /Fxo4 34 0 R
+ /Fxo5 36 0 R
+ /Fxo6 38 0 R
+ /Fxo7 40 0 R
+ /Fxo8 42 0 R
+ /Fxo9 44 0 R
+ >>
+ >>
+ /StructParents 0
+ /Type /Page
+>>
+endobj
+
+4 0 obj
+<<
+ /Count 1
+ /Kids [
+ 3 0 R
+ ]
+ /Type /Pages
+>>
+endobj
+
+5 0 obj
+<<
+ /K [
+ 46 0 R
+ ]
+ /ParentTree 47 0 R
+ /RoleMap <<
+ /Document /Document
+ /Standard /P
+ >>
+ /Type /StructTreeRoot
+>>
+endobj
+
+6 0 obj
+<<
+ /F 28
+ /Open false
+ /Parent 48 0 R
+ /Rect [
+ 612
+ 601
+ 792
+ 721
+ ]
+ /Subtype /Popup
+ /Type /Annot
+>>
+endobj
+
+%% Contents for page 1
+7 0 obj
+<<
+ /Length 8 0 R
+>>
+stream
+q
+endstream
+endobj
+
+8 0 obj
+2
+endobj
+
+%% Contents for page 1
+9 0 obj
+<<
+ /Length 10 0 R
+>>
+stream
+0.1 w
+/Artifact BMC
+q 0 0.028 611.971 791.971 re
+W* n
+EMC
+/Standard<</MCID 0>>BDC
+q 0 0 0 rg
+BT
+56.8 724.1 Td /F1 12 Tf[<01>1<0203>1<0403>1<05>58<06>-10<0708>2<09070a0b0408>2(\f)]TJ
+ET
+Q
+EMC
+/Standard<</MCID 1>>BDC
+q 0 0 0 rg
+BT
+56.8 693 Td /F1 12 Tf[(\r)68<03>1<0e0f>2<0710>-1<11>2<03>1<12>2<13>-7<0707070707>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 2>>BDC
+q 0 0 0 rg
+BT
+56.8 661.9 Td /F1 12 Tf[<0414>1<1311>2<0b0715>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 3>>BDC
+q 0 0 0 rg
+BT
+56.8 565.3 Td /F1 12 Tf[<16>1<0203>1<16>1<17>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 4>>BDC
+q 0 0 0 rg
+BT
+56.8 413.5 Td /F1 12 Tf[<0414>1<1311>2<0b0718>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 5>>BDC
+q 0 0 0 rg
+BT
+56.8 261.7 Td /F1 12 Tf[<19>-1<0b0f>2<14>1<0f>2<0b>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 6>>BDC
+q 0 0 0 rg
+BT
+56.8 206.5 Td /F1 12 Tf[<1a>2<11>2<06>-2<0f>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 7>>BDC
+q 0 0 0 rg
+BT
+269.5 206.5 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0712>2<11>2<06>-2<0f>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 8>>BDC
+q 0 0 0 rg
+BT
+56.8 123.7 Td /F1 12 Tf[<1d>5<040b1e130b1f>-2( )]TJ
+ET
+Q
+EMC
+/Standard<</MCID 9>>BDC
+q 0 0 0 rg
+BT
+269.5 123.7 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0713040b1e130b1f>-2( )]TJ
+ET
+Q
+EMC
+/Form<</MCID 10>>BDC
+0 0 0 RG
+1 1 1 rg
+120.5 686.9 143.3 20.8 re B*
+EMC
+/Form<</MCID 11>>BDC
+151.55 642.6 183.45 23.9 re f*
+q 1.2 w 0 0 0 RG
+158.75 660.55 m 162.1 660.55 164.8 657.9 164.8 654.55 c
+164.8 651.2 162.1 648.5 158.75 648.5 c
+155.4 648.5 152.75 651.2 152.75 654.55 c
+152.75 657.9 155.4 660.55 158.75 660.55 c s
+ Q
+q 169.6 642.6 164.25 23.9 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+169.6 650.3 Td /F3 12 Tf[<0102>-1<0304>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 12>>BDC
+1 1 1 rg
+151.55 624.8 125.5 17.1 re f*
+q 1.2 w 0 0 0 RG
+158.75 639.35 m 162.1 639.35 164.8 636.7 164.8 633.35 c
+164.8 630 162.1 627.3 158.75 627.3 c
+155.4 627.3 152.75 630 152.75 633.35 c
+152.75 636.7 155.4 639.35 158.75 639.35 c s
+ Q
+q 169.6 624.8 106.3 17.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+169.6 629.1 Td /F3 12 Tf[<0102>-1<0305>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 13>>BDC
+1 1 1 rg
+150.2 605.7 118.7 13.7 re f*
+q 1.2 w 0 0 0 RG
+157.4 618.55 m 160.75 618.55 163.45 615.9 163.45 612.55 c
+163.45 609.2 160.75 606.5 157.4 606.5 c
+154.05 606.5 151.4 609.2 151.4 612.55 c
+151.4 615.9 154.05 618.55 157.4 618.55 c s
+ Q
+q 168.25 605.7 99.5 13.7 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+168.3 608.3 Td /F3 12 Tf[<0102>-1<0306>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 14>>BDC
+1 1 1 rg
+117.45 544.3 86.65 32.1 re f*
+q 1.2 w 0 0 0 RG
+118.65 554.3 12.05 12.05 re S
+ Q
+q 135.5 544.3 67.45 32.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 556.1 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 15>>BDC
+1 1 1 rg
+117.45 523.2 85.3 21.15 re f*
+q 1.2 w 0 0 0 RG
+118.65 527.75 12.05 12.05 re S
+ Q
+q 135.5 523.2 66.1 21.15 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 529.6 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<0f>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 16>>BDC
+1 1 1 rg
+117.45 498 72.35 17.1 re f*
+q 1.2 w 0 0 0 RG
+118.65 500.5 12.05 12.05 re S
+ Q
+q 135.5 498 53.15 17.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 502.3 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<10>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 17>>BDC
+1 1 1 rg
+117.45 378.75 169.15 30.75 re f*
+q 1.2 w 0 0 0 RG
+124.65 400.15 m 128 400.15 130.7 397.5 130.7 394.15 c
+130.7 390.8 128 388.1 124.65 388.1 c
+121.3 388.1 118.65 390.8 118.65 394.15 c
+118.65 397.5 121.3 400.15 124.65 400.15 c s
+ Q
+q 135.5 378.75 149.95 30.75 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 389.9 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 18>>BDC
+1 1 1 rg
+118.15 352.85 180.7 30.75 re f*
+q 1.2 w 0 0 0 RG
+125.35 374.25 m 128.7 374.25 131.4 371.6 131.4 368.25 c
+131.4 364.9 128.7 362.2 125.35 362.2 c
+122 362.2 119.35 364.9 119.35 368.25 c
+119.35 371.6 122 374.25 125.35 374.25 c s
+ Q
+q 136.2 352.85 161.5 30.75 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+136.2 364 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<0f>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 19>>BDC
+1 1 1 rg
+118.15 322.85 139.15 33.5 re f*
+q 1.2 w 0 0 0 RG
+125.35 345.6 m 128.7 345.6 131.4 342.95 131.4 339.6 c
+131.4 336.25 128.7 333.55 125.35 333.55 c
+122 333.55 119.35 336.25 119.35 339.6 c
+119.35 342.95 122 345.6 125.35 345.6 c s
+ Q
+q 136.2 322.85 119.95 33.5 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+136.2 335.4 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<10>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 20>>BDC
+0 0 0 RG
+1 1 1 rg
+110.65 257.15 243.45 23.95 re B*
+EMC
+/Form<</MCID 21>>BDC
+155.95 154.15 67.55 81.2 re B*
+EMC
+/Form<</MCID 22>>BDC
+156.65 104.75 90.05 28.7 re B*
+EMC
+/Form<</MCID 23>>BDC
+401.45 156.9 60.05 78.45 re B*
+EMC
+/Form<</MCID 24>>BDC
+402.1 98.95 77.1 38.9 re B*
+EMC
+Q
+endstream
+endobj
+
+%QDF: ignore_newline
+10 0 obj
+4747
+endobj
+
+%% Contents for page 1
+11 0 obj
+<<
+ /Length 12 0 R
+>>
+stream
+
+Q
+q
+1.00001 0.00000 0.00000 0.99986 123.49900 689.90100 cm
+/Fxo1 Do
+Q
+q
+1.00017 0.00000 0.00000 0.99983 152.74900 648.50100 cm
+/Fxo2 Do
+Q
+q
+1.00017 0.00000 0.00000 0.99983 152.74900 627.30100 cm
+/Fxo3 Do
+Q
+q
+1.00017 0.00000 0.00000 0.99983 151.39900 606.50100 cm
+/Fxo4 Do
+Q
+q
+1.00017 0.00000 0.00000 0.99983 118.64900 554.30100 cm
+/Fxo5 Do
+Q
+q
+1.00017 0.00000 0.00000 0.99983 118.64900 527.75100 cm
+/Fxo6 Do
+Q
+q
+1.00017 0.00000 0.00000 0.99983 118.64900 500.50100 cm
+/Fxo7 Do
+Q
+q
+1.00017 0.00000 0.00000 0.99983 118.64900 388.10100 cm
+/Fxo8 Do
+Q
+q
+1.00017 0.00000 0.00000 0.99983 119.34900 362.20100 cm
+/Fxo9 Do
+Q
+q
+1.00017 0.00000 0.00000 0.99983 119.34900 333.55100 cm
+/Fxo10 Do
+Q
+q
+1.00001 0.00000 0.00000 0.99989 113.64900 260.15100 cm
+/Fxo11 Do
+Q
+q
+1.00004 0.00000 0.00000 0.99997 403.94900 159.40100 cm
+/Fxo12 Do
+Q
+q
+1.00003 0.00000 0.00000 0.99997 158.44900 156.65100 cm
+/Fxo13 Do
+Q
+q
+1.00002 0.00000 0.00000 0.99992 159.14900 107.25100 cm
+/Fxo14 Do
+Q
+q
+1.00003 0.00000 0.00000 0.99994 404.59900 101.45100 cm
+/Fxo15 Do
+Q
+q
+1.00000 0.00000 0.00000 1.00000 435.00000 703.00000 cm
+/Fxo16 Do
+Q
+endstream
+endobj
+
+12 0 obj
+1098
+endobj
+
+13 0 obj
+<<
+ /F1 49 0 R
+ /F2 50 0 R
+ /F3 51 0 R
+ /F4 52 0 R
+ /ZaDi 53 0 R
+>>
+endobj
+
+14 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 137.3
+ 14.8
+ ]
+ /Resources <<
+ /Font <<
+ /F1 49 0 R
+ /F2 50 0 R
+ /F3 51 0 R
+ /F4 52 0 R
+ /ZaDi 53 0 R
+ >>
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 15 0 R
+>>
+stream
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F2 12 Tf
+q
+BT
+1 2.600000 Td
+(abc) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+15 0 obj
+82
+endobj
+
+16 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources <<
+ /Font <<
+ /F1 49 0 R
+ /F2 50 0 R
+ /F3 51 0 R
+ /F4 52 0 R
+ /ZaDi 53 0 R
+ >>
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 17 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+17 0 obj
+12
+endobj
+
+18 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 237.45
+ 17.95
+ ]
+ /Resources <<
+ /Font <<
+ /F1 49 0 R
+ /F2 50 0 R
+ /F3 51 0 R
+ /F4 52 0 R
+ /ZaDi 53 0 R
+ >>
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 19 0 R
+>>
+stream
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F2 12 Tf
+q
+BT
+1 4.175000 Td
+(salad ??) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+19 0 obj
+87
+endobj
+
+20 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 55.05
+ 73.45
+ ]
+ /Resources <<
+ /Font <<
+ /F1 49 0 R
+ /F2 50 0 R
+ /F3 51 0 R
+ /F4 52 0 R
+ /ZaDi 53 0 R
+ >>
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 21 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 55.05 73.45 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+BT
+1 32.725000 Td
+(pi) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+21 0 obj
+117
+endobj
+
+22 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 62.55
+ 76.2
+ ]
+ /Resources <<
+ /Font <<
+ /F1 49 0 R
+ /F2 50 0 R
+ /F3 51 0 R
+ /F4 52 0 R
+ /ZaDi 53 0 R
+ >>
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 23 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 62.55 76.2 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+q
+0.85 0.85 0.85 rg
+0 38.100000 62 12.000000 re f
+Q
+BT
+1 52.100000 Td
+(five) Tj
+ET
+BT
+1 40.100000 Td
+(six) Tj
+ET
+BT
+1 28.100000 Td
+(seven) Tj
+ET
+BT
+1 16.100000 Td
+(eight) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+23 0 obj
+264
+endobj
+
+24 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 85.05
+ 23.7
+ ]
+ /Resources <<
+ /Font <<
+ /F1 49 0 R
+ /F2 50 0 R
+ /F3 51 0 R
+ /F4 52 0 R
+ /ZaDi 53 0 R
+ >>
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 25 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 85.05 23.7 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+BT
+1 7.850000 Td
+(elephant) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+25 0 obj
+121
+endobj
+
+26 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 72.1
+ 33.9
+ ]
+ /Resources <<
+ /Font <<
+ /F1 49 0 R
+ /F2 50 0 R
+ /F3 51 0 R
+ /F4 52 0 R
+ /ZaDi 53 0 R
+ >>
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 27 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 72.1 33.9 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+BT
+1 12.950000 Td
+(delta) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+27 0 obj
+118
+endobj
+
+28 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 18
+ 18
+ ]
+ /Resources <<
+ /ExtGState <<
+ /GS0 <<
+ /AIS false
+ /BM /Normal
+ /CA .6
+ /Type /ExtGState
+ /ca .6
+ >>
+ >>
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 29 0 R
+>>
+stream
+q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b
+endstream
+endobj
+
+29 0 obj
+929
+endobj
+
+30 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources <<
+ /Font <<
+ /F1 49 0 R
+ /F2 50 0 R
+ /F3 51 0 R
+ /F4 52 0 R
+ /ZaDi 53 0 R
+ >>
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 31 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+31 0 obj
+12
+endobj
+
+32 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources <<
+ /Font <<
+ /F1 49 0 R
+ /F2 50 0 R
+ /F3 51 0 R
+ /F4 52 0 R
+ /ZaDi 53 0 R
+ >>
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 33 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+33 0 obj
+220
+endobj
+
+34 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources <<
+ /Font <<
+ /F1 49 0 R
+ /F2 50 0 R
+ /F3 51 0 R
+ /F4 52 0 R
+ /ZaDi 53 0 R
+ >>
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 35 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+35 0 obj
+12
+endobj
+
+36 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources <<
+ /Font <<
+ /F1 49 0 R
+ /F2 50 0 R
+ /F3 51 0 R
+ /F4 52 0 R
+ /ZaDi 53 0 R
+ >>
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 37 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+37 0 obj
+12
+endobj
+
+38 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources <<
+ /Font <<
+ /F1 49 0 R
+ /F2 50 0 R
+ /F3 51 0 R
+ /F4 52 0 R
+ /ZaDi 53 0 R
+ >>
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 39 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+39 0 obj
+82
+endobj
+
+40 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources <<
+ /Font <<
+ /F1 49 0 R
+ /F2 50 0 R
+ /F3 51 0 R
+ /F4 52 0 R
+ /ZaDi 53 0 R
+ >>
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 41 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+41 0 obj
+12
+endobj
+
+42 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources <<
+ /Font <<
+ /F1 49 0 R
+ /F2 50 0 R
+ /F3 51 0 R
+ /F4 52 0 R
+ /ZaDi 53 0 R
+ >>
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 43 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+43 0 obj
+12
+endobj
+
+44 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources <<
+ /Font <<
+ /F1 49 0 R
+ /F2 50 0 R
+ /F3 51 0 R
+ /F4 52 0 R
+ /ZaDi 53 0 R
+ >>
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 45 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+45 0 obj
+220
+endobj
+
+46 0 obj
+<<
+ /K [
+ 54 0 R
+ 55 0 R
+ 56 0 R
+ 57 0 R
+ 58 0 R
+ 59 0 R
+ 60 0 R
+ 61 0 R
+ 62 0 R
+ 63 0 R
+ 64 0 R
+ 65 0 R
+ 66 0 R
+ 67 0 R
+ 68 0 R
+ 69 0 R
+ 70 0 R
+ 71 0 R
+ 72 0 R
+ 73 0 R
+ 74 0 R
+ 75 0 R
+ 76 0 R
+ 77 0 R
+ 78 0 R
+ 79 0 R
+ 80 0 R
+ 81 0 R
+ 82 0 R
+ 83 0 R
+ 84 0 R
+ 85 0 R
+ 86 0 R
+ 87 0 R
+ 88 0 R
+ 89 0 R
+ 90 0 R
+ 91 0 R
+ 92 0 R
+ 93 0 R
+ 94 0 R
+ 95 0 R
+ 96 0 R
+ 97 0 R
+ 98 0 R
+ 99 0 R
+ 100 0 R
+ 101 0 R
+ 102 0 R
+ 103 0 R
+ 104 0 R
+ 105 0 R
+ 106 0 R
+ 107 0 R
+ 108 0 R
+ 109 0 R
+ 110 0 R
+ 111 0 R
+ 112 0 R
+ ]
+ /P 5 0 R
+ /Pg 3 0 R
+ /S /Document
+ /Type /StructElem
+>>
+endobj
+
+47 0 obj
+<<
+ /Nums [
+ 0
+ [
+ 54 0 R
+ 56 0 R
+ 58 0 R
+ 65 0 R
+ 76 0 R
+ 87 0 R
+ 91 0 R
+ 91 0 R
+ 97 0 R
+ 97 0 R
+ 98 0 R
+ 99 0 R
+ 100 0 R
+ 101 0 R
+ 102 0 R
+ 103 0 R
+ 104 0 R
+ 105 0 R
+ 106 0 R
+ 107 0 R
+ 108 0 R
+ 109 0 R
+ 110 0 R
+ 111 0 R
+ 112 0 R
+ ]
+ ]
+>>
+endobj
+
+48 0 obj
+<<
+ /AP <<
+ /N 28 0 R
+ >>
+ /C [
+ 1
+ 1
+ 0
+ ]
+ /CA 1
+ /Contents (Salad)
+ /CreationDate (D:20181231235455Z00'00)
+ /F 28
+ /M (D:20181231235455Z00'00)
+ /Name /Comment
+ /P 3 0 R
+ /Popup 6 0 R
+ /Rect [
+ 435
+ 703
+ 453
+ 721
+ ]
+ /Subtype /Text
+ /T (Jay Berkenbilt)
+ /Type /Annot
+>>
+endobj
+
+49 0 obj
+<<
+ /BaseFont /BAAAAA+LiberationSerif
+ /FirstChar 0
+ /FontDescriptor 113 0 R
+ /LastChar 32
+ /Subtype /TrueType
+ /ToUnicode 114 0 R
+ /Type /Font
+ /Widths [
+ 777
+ 943
+ 500
+ 443
+ 333
+ 333
+ 389
+ 250
+ 777
+ 500
+ 333
+ 500
+ 443
+ 610
+ 500
+ 277
+ 556
+ 277
+ 277
+ 500
+ 443
+ 500
+ 443
+ 500
+ 500
+ 556
+ 610
+ 666
+ 500
+ 722
+ 500
+ 722
+ 500
+ ]
+>>
+endobj
+
+50 0 obj
+<<
+ /BaseFont /LiberationSans
+ /Encoding /WinAnsiEncoding
+ /FirstChar 32
+ /FontDescriptor 116 0 R
+ /LastChar 255
+ /Subtype /TrueType
+ /Type /Font
+ /Widths [
+ 277
+ 277
+ 354
+ 556
+ 556
+ 889
+ 666
+ 190
+ 333
+ 333
+ 389
+ 583
+ 277
+ 333
+ 277
+ 277
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 277
+ 277
+ 583
+ 583
+ 583
+ 556
+ 1015
+ 666
+ 666
+ 722
+ 722
+ 666
+ 610
+ 777
+ 722
+ 277
+ 500
+ 666
+ 556
+ 833
+ 722
+ 777
+ 666
+ 777
+ 722
+ 666
+ 610
+ 722
+ 666
+ 943
+ 666
+ 666
+ 610
+ 277
+ 277
+ 277
+ 469
+ 556
+ 333
+ 556
+ 556
+ 500
+ 556
+ 556
+ 277
+ 556
+ 556
+ 222
+ 222
+ 500
+ 222
+ 833
+ 556
+ 556
+ 556
+ 556
+ 333
+ 500
+ 277
+ 556
+ 500
+ 722
+ 500
+ 500
+ 500
+ 333
+ 259
+ 333
+ 583
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 277
+ 333
+ 556
+ 556
+ 556
+ 556
+ 259
+ 556
+ 333
+ 736
+ 370
+ 556
+ 583
+ 333
+ 736
+ 552
+ 399
+ 548
+ 333
+ 333
+ 333
+ 576
+ 537
+ 333
+ 333
+ 333
+ 365
+ 556
+ 833
+ 833
+ 833
+ 610
+ 666
+ 666
+ 666
+ 666
+ 666
+ 666
+ 1000
+ 722
+ 666
+ 666
+ 666
+ 666
+ 277
+ 277
+ 277
+ 277
+ 722
+ 722
+ 777
+ 777
+ 777
+ 777
+ 777
+ 583
+ 777
+ 722
+ 722
+ 722
+ 722
+ 666
+ 666
+ 610
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 889
+ 500
+ 556
+ 556
+ 556
+ 556
+ 277
+ 277
+ 277
+ 277
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 548
+ 610
+ 556
+ 556
+ 556
+ 556
+ 500
+ 556
+ 500
+ ]
+>>
+endobj
+
+51 0 obj
+<<
+ /BaseFont /DAAAAA+LiberationSans
+ /FirstChar 0
+ /FontDescriptor 117 0 R
+ /LastChar 22
+ /Subtype /TrueType
+ /ToUnicode 118 0 R
+ /Type /Font
+ /Widths [
+ 750
+ 333
+ 556
+ 333
+ 556
+ 556
+ 500
+ 722
+ 556
+ 556
+ 500
+ 277
+ 666
+ 556
+ 500
+ 556
+ 556
+ 777
+ 556
+ 277
+ 222
+ 556
+ 556
+ ]
+>>
+endobj
+
+52 0 obj
+<<
+ /BaseFont /DejaVuSans
+ /Encoding /WinAnsiEncoding
+ /FirstChar 32
+ /FontDescriptor 120 0 R
+ /LastChar 255
+ /Subtype /TrueType
+ /Type /Font
+ /Widths [
+ 317
+ 400
+ 459
+ 837
+ 636
+ 950
+ 779
+ 274
+ 390
+ 390
+ 500
+ 837
+ 317
+ 360
+ 317
+ 336
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 336
+ 336
+ 837
+ 837
+ 837
+ 530
+ 1000
+ 684
+ 686
+ 698
+ 770
+ 631
+ 575
+ 774
+ 751
+ 294
+ 294
+ 655
+ 557
+ 862
+ 748
+ 787
+ 603
+ 787
+ 694
+ 634
+ 610
+ 731
+ 684
+ 988
+ 685
+ 610
+ 685
+ 390
+ 336
+ 390
+ 837
+ 500
+ 500
+ 612
+ 634
+ 549
+ 634
+ 615
+ 352
+ 634
+ 633
+ 277
+ 277
+ 579
+ 277
+ 974
+ 633
+ 611
+ 634
+ 634
+ 411
+ 520
+ 392
+ 633
+ 591
+ 817
+ 591
+ 591
+ 524
+ 636
+ 336
+ 636
+ 837
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 317
+ 400
+ 636
+ 636
+ 636
+ 636
+ 336
+ 500
+ 500
+ 1000
+ 471
+ 611
+ 837
+ 360
+ 1000
+ 500
+ 500
+ 837
+ 400
+ 400
+ 500
+ 636
+ 636
+ 317
+ 500
+ 400
+ 471
+ 611
+ 969
+ 969
+ 969
+ 530
+ 684
+ 684
+ 684
+ 684
+ 684
+ 684
+ 974
+ 698
+ 631
+ 631
+ 631
+ 631
+ 294
+ 294
+ 294
+ 294
+ 774
+ 748
+ 787
+ 787
+ 787
+ 787
+ 787
+ 837
+ 787
+ 731
+ 731
+ 731
+ 731
+ 610
+ 604
+ 629
+ 612
+ 612
+ 612
+ 612
+ 612
+ 612
+ 981
+ 549
+ 615
+ 615
+ 615
+ 615
+ 277
+ 277
+ 277
+ 277
+ 611
+ 633
+ 611
+ 611
+ 611
+ 611
+ 611
+ 837
+ 611
+ 633
+ 633
+ 633
+ 633
+ 591
+ 634
+ 591
+ ]
+>>
+endobj
+
+53 0 obj
+<<
+ /BaseFont /ZapfDingbats
+ /Subtype /Type1
+ /Type /Font
+>>
+endobj
+
+54 0 obj
+<<
+ /A 121 0 R
+ /K [
+ 0
+ ]
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+55 0 obj
+<<
+ /A 122 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+56 0 obj
+<<
+ /A 123 0 R
+ /K [
+ 1
+ ]
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+57 0 obj
+<<
+ /A 124 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+58 0 obj
+<<
+ /A 125 0 R
+ /K [
+ 2
+ ]
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+59 0 obj
+<<
+ /A 126 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+60 0 obj
+<<
+ /A 127 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+61 0 obj
+<<
+ /A 128 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+62 0 obj
+<<
+ /A 129 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+63 0 obj
+<<
+ /A 130 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+64 0 obj
+<<
+ /A 131 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+65 0 obj
+<<
+ /A 132 0 R
+ /K [
+ 3
+ ]
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+66 0 obj
+<<
+ /A 133 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+67 0 obj
+<<
+ /A 134 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+68 0 obj
+<<
+ /A 135 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+69 0 obj
+<<
+ /A 136 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+70 0 obj
+<<
+ /A 137 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+71 0 obj
+<<
+ /A 138 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+72 0 obj
+<<
+ /A 139 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+73 0 obj
+<<
+ /A 140 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+74 0 obj
+<<
+ /A 141 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+75 0 obj
+<<
+ /A 142 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+76 0 obj
+<<
+ /A 143 0 R
+ /K [
+ 4
+ ]
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+77 0 obj
+<<
+ /A 144 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+78 0 obj
+<<
+ /A 145 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+79 0 obj
+<<
+ /A 146 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+80 0 obj
+<<
+ /A 147 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+81 0 obj
+<<
+ /A 148 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+82 0 obj
+<<
+ /A 149 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+83 0 obj
+<<
+ /A 150 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+84 0 obj
+<<
+ /A 151 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+85 0 obj
+<<
+ /A 152 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+86 0 obj
+<<
+ /A 153 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+87 0 obj
+<<
+ /A 154 0 R
+ /K [
+ 5
+ ]
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+88 0 obj
+<<
+ /A 155 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+89 0 obj
+<<
+ /A 156 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+90 0 obj
+<<
+ /A 157 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+91 0 obj
+<<
+ /A 158 0 R
+ /K [
+ 6
+ 7
+ ]
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+92 0 obj
+<<
+ /A 159 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+93 0 obj
+<<
+ /A 160 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+94 0 obj
+<<
+ /A 161 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+95 0 obj
+<<
+ /A 162 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+96 0 obj
+<<
+ /A 163 0 R
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+97 0 obj
+<<
+ /A 164 0 R
+ /K [
+ 8
+ 9
+ ]
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+98 0 obj
+<<
+ /K [
+ 10
+ ]
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+99 0 obj
+<<
+ /K [
+ 11
+ ]
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+100 0 obj
+<<
+ /K [
+ 12
+ ]
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+101 0 obj
+<<
+ /K [
+ 13
+ ]
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+102 0 obj
+<<
+ /K [
+ 14
+ ]
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+103 0 obj
+<<
+ /K [
+ 15
+ ]
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+104 0 obj
+<<
+ /K [
+ 16
+ ]
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+105 0 obj
+<<
+ /K [
+ 17
+ ]
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+106 0 obj
+<<
+ /K [
+ 18
+ ]
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+107 0 obj
+<<
+ /K [
+ 19
+ ]
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+108 0 obj
+<<
+ /K [
+ 20
+ ]
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+109 0 obj
+<<
+ /K [
+ 21
+ ]
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+110 0 obj
+<<
+ /K [
+ 22
+ ]
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+111 0 obj
+<<
+ /K [
+ 23
+ ]
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+112 0 obj
+<<
+ /K [
+ 24
+ ]
+ /P 46 0 R
+ /Pg 3 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+113 0 obj
+<<
+ /Ascent 891
+ /CapHeight 981
+ /Descent -216
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1277
+ 981
+ ]
+ /FontFile2 165 0 R
+ /FontName /BAAAAA+LiberationSerif
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+114 0 obj
+<<
+ /Length 115 0 R
+>>
+stream
+/CIDInit/ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo<<
+/Registry (Adobe)
+/Ordering (UCS)
+/Supplement 0
+>> def
+/CMapName/Adobe-Identity-UCS def
+/CMapType 2 def
+1 begincodespacerange
+<00> <FF>
+endcodespacerange
+32 beginbfchar
+<01> <0057>
+<02> <0068>
+<03> <0065>
+<04> <0072>
+<05> <2019>
+<06> <0073>
+<07> <0020>
+<08> <006D>
+<09> <0079>
+<0A> <0066>
+<0B> <006F>
+<0C> <003F>
+<0D> <0054>
+<0E> <0078>
+<0F> <0074>
+<10> <0046>
+<11> <0069>
+<12> <006C>
+<13> <0064>
+<14> <0061>
+<15> <0031>
+<16> <0063>
+<17> <006B>
+<18> <0032>
+<19> <0050>
+<1A> <004C>
+<1B> <0043>
+<1C> <0062>
+<1D> <0044>
+<1E> <0070>
+<1F> <0077>
+<20> <006E>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+endstream
+endobj
+
+115 0 obj
+702
+endobj
+
+116 0 obj
+<<
+ /Ascent 905
+ /CapHeight 979
+ /Descent -211
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1300
+ 979
+ ]
+ /FontName /LiberationSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+117 0 obj
+<<
+ /Ascent 905
+ /CapHeight 979
+ /Descent -211
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1300
+ 979
+ ]
+ /FontFile2 167 0 R
+ /FontName /DAAAAA+LiberationSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+118 0 obj
+<<
+ /Length 119 0 R
+>>
+stream
+/CIDInit/ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo<<
+/Registry (Adobe)
+/Ordering (UCS)
+/Supplement 0
+>> def
+/CMapName/Adobe-Identity-UCS def
+/CMapType 2 def
+1 begincodespacerange
+<00> <FF>
+endcodespacerange
+22 beginbfchar
+<01> <0072>
+<02> <0031>
+<03> <002D>
+<04> <0061>
+<05> <0062>
+<06> <0063>
+<07> <0043>
+<08> <0068>
+<09> <0065>
+<0A> <006B>
+<0B> <0020>
+<0C> <0042>
+<0D> <006F>
+<0E> <0078>
+<0F> <0032>
+<10> <0033>
+<11> <004F>
+<12> <0070>
+<13> <0074>
+<14> <0069>
+<15> <006E>
+<16> <0075>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+endstream
+endobj
+
+119 0 obj
+582
+endobj
+
+120 0 obj
+<<
+ /Ascent 928
+ /CapHeight 1232
+ /Descent -235
+ /Flags 4
+ /FontBBox [
+ -1020
+ -462
+ 1792
+ 1232
+ ]
+ /FontName /DejaVuSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+121 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+122 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+123 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+124 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+125 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+126 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+127 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+128 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+129 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+130 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+131 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+132 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+133 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+134 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+135 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+136 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+137 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+138 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+139 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+140 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+141 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+142 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+143 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+144 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+145 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+146 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+147 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+148 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+149 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+150 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+151 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+152 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+153 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+154 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+155 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+156 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+157 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+158 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+159 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+160 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+161 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+162 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+163 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+164 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+165 0 obj
+<<
+ /Length1 16184
+ /Length 166 0 R
+>>
+stream
+true
+{
+ 
+
+
+
+ 
+C#Ce
+-,
+ C#C -,
+-, i@a
+@@ @  CTX@
+#eB #B#?
+
+ H 
+_Y @
+ H 
+ PY
+_@qrr
+ 6A--XSY-- -
+PY
+
+@adH$4Dd $D
+9$d$!H@*H@
+ PY  
++,@@,-@@:-- -
+ PY
+"QYPY 
+PY
+
+
+sYvY@
+
+ `Y `Y_Y
+ _Y o/oO?/o_8/?^]]]]]]qqqqrr^]]]]]]qqqqqqqrrrrr
+ 
+
+
+
+"#PY PY QY
+
+ H 
+PY @
+ H 
+
+\
+ 4 : * p42
+nQ
+
+Copyright (c) 2012 Red Hat, Inc.Liberation SerifRegularAscender - Liberation SerifLiberation SerifVersion 2.00.2LiberationSerifLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman. Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL
+
+
+endstream
+endobj
+
+%QDF: ignore_newline
+166 0 obj
+16184
+endobj
+
+167 0 obj
+<<
+ /Length1 11088
+ /Length 168 0 R
+>>
+stream
+true
+ 
+ 
+C#Ce
+-,
+ C#C -,
+-, i@a
+@@ @  CTX@
+#eB #B#?
+
+
+
+
+!PY%?%%p%%%%%]]]qqqrr
+6YAXhZ
+
+PY
+]
+
+
+
+
+
+  v D T d 6 $         v d   & F V g F V  d V D 6 $      & 6 F 7f  @6=BH9 " 
+
+
+
+
+r
+iN
+
+Copyright (c) 2012 Red Hat, Inc.Liberation SansRegularAscender - Liberation SansLiberation SansVersion 2.00.2LiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL
+
+O P(F(F*F+_O_ F@FF@36FFUHU2
+endstream
+endobj
+
+%QDF: ignore_newline
+168 0 obj
+11088
+endobj
+
+xref
+0 169
+0000000000 65535 f
+0000000025 00000 n
+0000000219 00000 n
+0000000414 00000 n
+0000001091 00000 n
+0000001163 00000 n
+0000001312 00000 n
+0000001475 00000 n
+0000001532 00000 n
+0000001573 00000 n
+0000006398 00000 n
+0000006443 00000 n
+0000007598 00000 n
+0000007620 00000 n
+0000007710 00000 n
+0000008100 00000 n
+0000008120 00000 n
+0000008441 00000 n
+0000008461 00000 n
+0000008858 00000 n
+0000008878 00000 n
+0000009304 00000 n
+0000009325 00000 n
+0000009897 00000 n
+0000009918 00000 n
+0000010347 00000 n
+0000010368 00000 n
+0000010793 00000 n
+0000010814 00000 n
+0000012037 00000 n
+0000012058 00000 n
+0000012379 00000 n
+0000012399 00000 n
+0000012928 00000 n
+0000012949 00000 n
+0000013270 00000 n
+0000013290 00000 n
+0000013611 00000 n
+0000013631 00000 n
+0000014022 00000 n
+0000014042 00000 n
+0000014363 00000 n
+0000014383 00000 n
+0000014704 00000 n
+0000014724 00000 n
+0000015253 00000 n
+0000015274 00000 n
+0000016028 00000 n
+0000016421 00000 n
+0000016751 00000 n
+0000017202 00000 n
+0000019119 00000 n
+0000019489 00000 n
+0000021403 00000 n
+0000021484 00000 n
+0000021596 00000 n
+0000021691 00000 n
+0000021803 00000 n
+0000021898 00000 n
+0000022010 00000 n
+0000022105 00000 n
+0000022200 00000 n
+0000022295 00000 n
+0000022390 00000 n
+0000022485 00000 n
+0000022580 00000 n
+0000022692 00000 n
+0000022787 00000 n
+0000022882 00000 n
+0000022977 00000 n
+0000023072 00000 n
+0000023167 00000 n
+0000023262 00000 n
+0000023357 00000 n
+0000023452 00000 n
+0000023547 00000 n
+0000023642 00000 n
+0000023754 00000 n
+0000023849 00000 n
+0000023944 00000 n
+0000024039 00000 n
+0000024134 00000 n
+0000024229 00000 n
+0000024324 00000 n
+0000024419 00000 n
+0000024514 00000 n
+0000024609 00000 n
+0000024704 00000 n
+0000024816 00000 n
+0000024911 00000 n
+0000025006 00000 n
+0000025101 00000 n
+0000025219 00000 n
+0000025314 00000 n
+0000025409 00000 n
+0000025504 00000 n
+0000025599 00000 n
+0000025694 00000 n
+0000025812 00000 n
+0000025908 00000 n
+0000026004 00000 n
+0000026101 00000 n
+0000026198 00000 n
+0000026295 00000 n
+0000026392 00000 n
+0000026489 00000 n
+0000026586 00000 n
+0000026683 00000 n
+0000026780 00000 n
+0000026877 00000 n
+0000026974 00000 n
+0000027071 00000 n
+0000027168 00000 n
+0000027265 00000 n
+0000027510 00000 n
+0000028271 00000 n
+0000028293 00000 n
+0000028509 00000 n
+0000028753 00000 n
+0000029394 00000 n
+0000029416 00000 n
+0000029631 00000 n
+0000029688 00000 n
+0000029745 00000 n
+0000029802 00000 n
+0000029859 00000 n
+0000029916 00000 n
+0000029973 00000 n
+0000030030 00000 n
+0000030087 00000 n
+0000030144 00000 n
+0000030201 00000 n
+0000030258 00000 n
+0000030315 00000 n
+0000030372 00000 n
+0000030429 00000 n
+0000030486 00000 n
+0000030543 00000 n
+0000030600 00000 n
+0000030657 00000 n
+0000030714 00000 n
+0000030771 00000 n
+0000030828 00000 n
+0000030885 00000 n
+0000030942 00000 n
+0000030999 00000 n
+0000031056 00000 n
+0000031113 00000 n
+0000031170 00000 n
+0000031227 00000 n
+0000031284 00000 n
+0000031341 00000 n
+0000031398 00000 n
+0000031455 00000 n
+0000031512 00000 n
+0000031569 00000 n
+0000031626 00000 n
+0000031683 00000 n
+0000031740 00000 n
+0000031797 00000 n
+0000031854 00000 n
+0000031911 00000 n
+0000031968 00000 n
+0000032025 00000 n
+0000032082 00000 n
+0000032139 00000 n
+0000048421 00000 n
+0000048445 00000 n
+0000059631 00000 n
+trailer <<
+ /DocChecksum /CC322E136FE95DECF8BC297B1A9B2C2E
+ /Info 2 0 R
+ /Root 1 0 R
+ /Size 169
+ /ID [<f8abc47bb1df544a0df9c15a75ef0046><31415926535897932384626433832795>]
+>>
+startxref
+59655
+%%EOF
diff --git a/qpdf/qtest/qpdf/appearances-b.pdf b/qpdf/qtest/qpdf/appearances-b.pdf
new file mode 100644
index 00000000..5aee4f4e
--- /dev/null
+++ b/qpdf/qtest/qpdf/appearances-b.pdf
@@ -0,0 +1,3853 @@
+%PDF-1.5
+%
+%QDF-1.0
+
+1 0 obj
+<<
+ /AcroForm <<
+ /DR 3 0 R
+ /Fields [
+ 4 0 R
+ 5 0 R
+ 6 0 R
+ 7 0 R
+ 8 0 R
+ 9 0 R
+ 10 0 R
+ 11 0 R
+ 12 0 R
+ 13 0 R
+ 14 0 R
+ ]
+ >>
+ /Lang (en-US)
+ /MarkInfo <<
+ /Marked true
+ >>
+ /OpenAction [
+ 15 0 R
+ /XYZ
+ null
+ null
+ 0
+ ]
+ /Pages 16 0 R
+ /StructTreeRoot 17 0 R
+ /Type /Catalog
+>>
+endobj
+
+2 0 obj
+<<
+ /CreationDate (D:20190103125434-05'00')
+ /Creator <feff005700720069007400650072>
+ /Producer <feff004c0069006200720065004f0066006600690063006500200036002e0031>
+>>
+endobj
+
+3 0 obj
+<<
+ /Font 18 0 R
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+>>
+endobj
+
+4 0 obj
+<<
+ /AP <<
+ /N 19 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Tx
+ /P 15 0 R
+ /Rect [
+ 123.499
+ 689.901
+ 260.801
+ 704.699
+ ]
+ /Subtype /Widget
+ /T (text)
+ /Type /Annot
+ /V <feff006100620063>
+>>
+endobj
+
+5 0 obj
+<<
+ /DV /1
+ /FT /Btn
+ /Ff 49152
+ /Kids [
+ 21 0 R
+ 22 0 R
+ 23 0 R
+ ]
+ /P 15 0 R
+ /T (r1)
+ /V /2
+>>
+endobj
+
+6 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 24 0 R
+ /Yes 26 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Off
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 554.301
+ 130.701
+ 566.349
+ ]
+ /Subtype /Widget
+ /T (checkbox1)
+ /Type /Annot
+ /V /Off
+>>
+endobj
+
+7 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 29 0 R
+ /Yes 31 0 R
+ >>
+ >>
+ /AS /Yes
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Yes
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 527.751
+ 130.701
+ 539.799
+ ]
+ /Subtype /Widget
+ /T (checkbox2)
+ /Type /Annot
+ /V /Yes
+>>
+endobj
+
+8 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 33 0 R
+ /Yes 35 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Off
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 500.501
+ 130.701
+ 512.549
+ ]
+ /Subtype /Widget
+ /T (checkbox3)
+ /Type /Annot
+ /V /Off
+>>
+endobj
+
+9 0 obj
+<<
+ /DV /2
+ /FT /Btn
+ /Ff 49152
+ /Kids [
+ 37 0 R
+ 38 0 R
+ 39 0 R
+ ]
+ /P 15 0 R
+ /T (r2)
+ /V /2
+>>
+endobj
+
+10 0 obj
+<<
+ /AP <<
+ /N 40 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff00730061006c00610064002003c002ac>
+ /F 4
+ /FT /Tx
+ /P 15 0 R
+ /Rect [
+ 113.649
+ 260.151
+ 351.101
+ 278.099
+ ]
+ /Subtype /Widget
+ /T (text2)
+ /Type /Annot
+ /V <feff00730061006c00610064002003c002ac>
+>>
+endobj
+
+11 0 obj
+<<
+ /AP <<
+ /N 42 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Opt [
+ <feff0031>
+ <feff0032>
+ <feff0033>
+ <feff0034>
+ <feff0066006900760065>
+ <feff007300690078>
+ <feff0073006500760065006e>
+ <feff00650069006700680074>
+ <feff0039>
+ <feff00310030>
+ <feff00310031>
+ <feff00310032>
+ ]
+ /P 15 0 R
+ /Rect [
+ 158.449
+ 156.651
+ 221.001
+ 232.849
+ ]
+ /Subtype /Widget
+ /T (list1)
+ /Type /Annot
+ /V <feff007300690078>
+>>
+endobj
+
+12 0 obj
+<<
+ /AP <<
+ /N 44 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 131072
+ /Opt [
+ <feff006e0069006e0065>
+ <feff00740065006e>
+ <feff0065006c0065007000680061006e0074>
+ <feff007400770065006c00760065>
+ ]
+ /P 15 0 R
+ /Rect [
+ 159.149
+ 107.251
+ 244.201
+ 130.949
+ ]
+ /Subtype /Widget
+ /T (drop1)
+ /Type /Annot
+ /V <feff0065006c0065007000680061006e0074>
+>>
+endobj
+
+13 0 obj
+<<
+ /AP <<
+ /N 46 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 393216
+ /Opt [
+ <feff006f006e0065>
+ <feff00740077006f>
+ <feff00700069>
+ <feff0066006f00750072>
+ ]
+ /P 15 0 R
+ /Rect [
+ 403.949
+ 159.401
+ 459.001
+ 232.849
+ ]
+ /Subtype /Widget
+ /T (combolist1)
+ /Type /Annot
+ /V <feff00700069>
+>>
+endobj
+
+14 0 obj
+<<
+ /AP <<
+ /N 48 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 393216
+ /Opt [
+ <feff0061006c007000680061>
+ <feff0062006500740061>
+ <feff00670061006d006d0061>
+ <feff00640065006c00740061>
+ ]
+ /P 15 0 R
+ /Rect [
+ 404.599
+ 101.451
+ 476.701
+ 135.349
+ ]
+ /Subtype /Widget
+ /T (combodrop1)
+ /Type /Annot
+ /V <feff00640065006c00740061>
+>>
+endobj
+
+%% Page 1
+15 0 obj
+<<
+ /Annots [
+ 4 0 R
+ 21 0 R
+ 22 0 R
+ 23 0 R
+ 6 0 R
+ 7 0 R
+ 8 0 R
+ 37 0 R
+ 38 0 R
+ 39 0 R
+ 10 0 R
+ 13 0 R
+ 11 0 R
+ 12 0 R
+ 14 0 R
+ 50 0 R
+ 51 0 R
+ ]
+ /Contents 52 0 R
+ /Group <<
+ /CS /DeviceRGB
+ /I true
+ /S /Transparency
+ >>
+ /MediaBox [
+ 0
+ 0
+ 612
+ 792
+ ]
+ /Parent 16 0 R
+ /Resources 3 0 R
+ /StructParents 0
+ /Type /Page
+>>
+endobj
+
+16 0 obj
+<<
+ /Count 1
+ /Kids [
+ 15 0 R
+ ]
+ /MediaBox [
+ 0
+ 0
+ 612
+ 792
+ ]
+ /Resources 3 0 R
+ /Type /Pages
+>>
+endobj
+
+17 0 obj
+<<
+ /K [
+ 54 0 R
+ ]
+ /ParentTree 55 0 R
+ /RoleMap <<
+ /Document /Document
+ /Standard /P
+ >>
+ /Type /StructTreeRoot
+>>
+endobj
+
+18 0 obj
+<<
+ /F1 56 0 R
+ /F2 57 0 R
+ /F3 58 0 R
+ /F4 59 0 R
+ /ZaDi 28 0 R
+>>
+endobj
+
+19 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 137.3
+ 14.8
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 20 0 R
+>>
+stream
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F2 12 Tf
+q
+BT
+1 2.600000 Td
+(abc) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+20 0 obj
+82
+endobj
+
+21 0 obj
+<<
+ /AP <<
+ /N <<
+ /1 60 0 R
+ /Off 62 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 152.749
+ 648.501
+ 164.801
+ 660.549
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+22 0 obj
+<<
+ /AP <<
+ /N <<
+ /2 64 0 R
+ /Off 66 0 R
+ >>
+ >>
+ /AS /2
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 152.749
+ 627.301
+ 164.801
+ 639.349
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+23 0 obj
+<<
+ /AP <<
+ /N <<
+ /3 68 0 R
+ /Off 70 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 151.399
+ 606.501
+ 163.451
+ 618.549
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+24 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 25 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+25 0 obj
+12
+endobj
+
+26 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 27 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+27 0 obj
+82
+endobj
+
+28 0 obj
+<<
+ /BaseFont /ZapfDingbats
+ /Subtype /Type1
+ /Type /Font
+>>
+endobj
+
+29 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 30 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+30 0 obj
+12
+endobj
+
+31 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 32 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+32 0 obj
+82
+endobj
+
+33 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 34 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+34 0 obj
+12
+endobj
+
+35 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 36 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+36 0 obj
+82
+endobj
+
+37 0 obj
+<<
+ /AP <<
+ /N <<
+ /1 72 0 R
+ /Off 74 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 118.649
+ 388.101
+ 130.701
+ 400.149
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+38 0 obj
+<<
+ /AP <<
+ /N <<
+ /2 76 0 R
+ /Off 78 0 R
+ >>
+ >>
+ /AS /2
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 119.349
+ 362.201
+ 131.401
+ 374.249
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+39 0 obj
+<<
+ /AP <<
+ /N <<
+ /3 80 0 R
+ /Off 82 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 119.349
+ 333.551
+ 131.401
+ 345.599
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+40 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 237.45
+ 17.95
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 41 0 R
+>>
+stream
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F2 12 Tf
+q
+BT
+1 4.175000 Td
+(salad ??) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+41 0 obj
+87
+endobj
+
+42 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 62.55
+ 76.2
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 43 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 62.55 76.2 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+q
+0.85 0.85 0.85 rg
+0 50.100000 62 12.000000 re f
+Q
+BT
+1 64.100000 Td
+(five) Tj
+ET
+BT
+1 52.100000 Td
+(six) Tj
+ET
+BT
+1 40.100000 Td
+(seven) Tj
+ET
+BT
+1 28.100000 Td
+(eight) Tj
+ET
+BT
+1 16.100000 Td
+(9) Tj
+ET
+BT
+1 4.100000 Td
+(10) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+43 0 obj
+320
+endobj
+
+44 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 85.05
+ 23.7
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 45 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 85.05 23.7 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+BT
+1 7.850000 Td
+(elephant) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+45 0 obj
+121
+endobj
+
+46 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 55.05
+ 73.45
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 47 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 55.05 73.45 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+BT
+1 32.725000 Td
+(pi) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+47 0 obj
+117
+endobj
+
+48 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 72.1
+ 33.9
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 49 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 72.1 33.9 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+BT
+1 12.950000 Td
+(delta) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+49 0 obj
+118
+endobj
+
+50 0 obj
+<<
+ /AP <<
+ /N 84 0 R
+ >>
+ /C [
+ 1
+ 1
+ 0
+ ]
+ /CA 1
+ /Contents (Salad)
+ /CreationDate (D:20181231235455Z00'00)
+ /F 28
+ /M (D:20181231235455Z00'00)
+ /Name /Comment
+ /P 15 0 R
+ /Popup 51 0 R
+ /Rect [
+ 435
+ 703
+ 453
+ 721
+ ]
+ /Subtype /Text
+ /T (Jay Berkenbilt)
+ /Type /Annot
+>>
+endobj
+
+51 0 obj
+<<
+ /F 28
+ /Open false
+ /Parent 50 0 R
+ /Rect [
+ 612
+ 601
+ 792
+ 721
+ ]
+ /Subtype /Popup
+ /Type /Annot
+>>
+endobj
+
+%% Contents for page 1
+52 0 obj
+<<
+ /Length 53 0 R
+>>
+stream
+0.1 w
+/Artifact BMC
+q 0 0.028 611.971 791.971 re
+W* n
+EMC
+/Standard<</MCID 0>>BDC
+q 0 0 0 rg
+BT
+56.8 724.1 Td /F1 12 Tf[<01>1<0203>1<0403>1<05>58<06>-10<0708>2<09070a0b0408>2(\f)]TJ
+ET
+Q
+EMC
+/Standard<</MCID 1>>BDC
+q 0 0 0 rg
+BT
+56.8 693 Td /F1 12 Tf[(\r)68<03>1<0e0f>2<0710>-1<11>2<03>1<12>2<13>-7<0707070707>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 2>>BDC
+q 0 0 0 rg
+BT
+56.8 661.9 Td /F1 12 Tf[<0414>1<1311>2<0b0715>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 3>>BDC
+q 0 0 0 rg
+BT
+56.8 565.3 Td /F1 12 Tf[<16>1<0203>1<16>1<17>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 4>>BDC
+q 0 0 0 rg
+BT
+56.8 413.5 Td /F1 12 Tf[<0414>1<1311>2<0b0718>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 5>>BDC
+q 0 0 0 rg
+BT
+56.8 261.7 Td /F1 12 Tf[<19>-1<0b0f>2<14>1<0f>2<0b>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 6>>BDC
+q 0 0 0 rg
+BT
+56.8 206.5 Td /F1 12 Tf[<1a>2<11>2<06>-2<0f>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 7>>BDC
+q 0 0 0 rg
+BT
+269.5 206.5 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0712>2<11>2<06>-2<0f>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 8>>BDC
+q 0 0 0 rg
+BT
+56.8 123.7 Td /F1 12 Tf[<1d>5<040b1e130b1f>-2( )]TJ
+ET
+Q
+EMC
+/Standard<</MCID 9>>BDC
+q 0 0 0 rg
+BT
+269.5 123.7 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0713040b1e130b1f>-2( )]TJ
+ET
+Q
+EMC
+/Form<</MCID 10>>BDC
+0 0 0 RG
+1 1 1 rg
+120.5 686.9 143.3 20.8 re B*
+EMC
+/Form<</MCID 11>>BDC
+151.55 642.6 183.45 23.9 re f*
+q 1.2 w 0 0 0 RG
+158.75 660.55 m 162.1 660.55 164.8 657.9 164.8 654.55 c
+164.8 651.2 162.1 648.5 158.75 648.5 c
+155.4 648.5 152.75 651.2 152.75 654.55 c
+152.75 657.9 155.4 660.55 158.75 660.55 c s
+ Q
+q 169.6 642.6 164.25 23.9 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+169.6 650.3 Td /F3 12 Tf[<0102>-1<0304>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 12>>BDC
+1 1 1 rg
+151.55 624.8 125.5 17.1 re f*
+q 1.2 w 0 0 0 RG
+158.75 639.35 m 162.1 639.35 164.8 636.7 164.8 633.35 c
+164.8 630 162.1 627.3 158.75 627.3 c
+155.4 627.3 152.75 630 152.75 633.35 c
+152.75 636.7 155.4 639.35 158.75 639.35 c s
+ Q
+q 169.6 624.8 106.3 17.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+169.6 629.1 Td /F3 12 Tf[<0102>-1<0305>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 13>>BDC
+1 1 1 rg
+150.2 605.7 118.7 13.7 re f*
+q 1.2 w 0 0 0 RG
+157.4 618.55 m 160.75 618.55 163.45 615.9 163.45 612.55 c
+163.45 609.2 160.75 606.5 157.4 606.5 c
+154.05 606.5 151.4 609.2 151.4 612.55 c
+151.4 615.9 154.05 618.55 157.4 618.55 c s
+ Q
+q 168.25 605.7 99.5 13.7 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+168.3 608.3 Td /F3 12 Tf[<0102>-1<0306>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 14>>BDC
+1 1 1 rg
+117.45 544.3 86.65 32.1 re f*
+q 1.2 w 0 0 0 RG
+118.65 554.3 12.05 12.05 re S
+ Q
+q 135.5 544.3 67.45 32.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 556.1 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 15>>BDC
+1 1 1 rg
+117.45 523.2 85.3 21.15 re f*
+q 1.2 w 0 0 0 RG
+118.65 527.75 12.05 12.05 re S
+ Q
+q 135.5 523.2 66.1 21.15 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 529.6 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<0f>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 16>>BDC
+1 1 1 rg
+117.45 498 72.35 17.1 re f*
+q 1.2 w 0 0 0 RG
+118.65 500.5 12.05 12.05 re S
+ Q
+q 135.5 498 53.15 17.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 502.3 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<10>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 17>>BDC
+1 1 1 rg
+117.45 378.75 169.15 30.75 re f*
+q 1.2 w 0 0 0 RG
+124.65 400.15 m 128 400.15 130.7 397.5 130.7 394.15 c
+130.7 390.8 128 388.1 124.65 388.1 c
+121.3 388.1 118.65 390.8 118.65 394.15 c
+118.65 397.5 121.3 400.15 124.65 400.15 c s
+ Q
+q 135.5 378.75 149.95 30.75 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 389.9 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 18>>BDC
+1 1 1 rg
+118.15 352.85 180.7 30.75 re f*
+q 1.2 w 0 0 0 RG
+125.35 374.25 m 128.7 374.25 131.4 371.6 131.4 368.25 c
+131.4 364.9 128.7 362.2 125.35 362.2 c
+122 362.2 119.35 364.9 119.35 368.25 c
+119.35 371.6 122 374.25 125.35 374.25 c s
+ Q
+q 136.2 352.85 161.5 30.75 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+136.2 364 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<0f>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 19>>BDC
+1 1 1 rg
+118.15 322.85 139.15 33.5 re f*
+q 1.2 w 0 0 0 RG
+125.35 345.6 m 128.7 345.6 131.4 342.95 131.4 339.6 c
+131.4 336.25 128.7 333.55 125.35 333.55 c
+122 333.55 119.35 336.25 119.35 339.6 c
+119.35 342.95 122 345.6 125.35 345.6 c s
+ Q
+q 136.2 322.85 119.95 33.5 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+136.2 335.4 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<10>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 20>>BDC
+0 0 0 RG
+1 1 1 rg
+110.65 257.15 243.45 23.95 re B*
+EMC
+/Form<</MCID 21>>BDC
+155.95 154.15 67.55 81.2 re B*
+EMC
+/Form<</MCID 22>>BDC
+156.65 104.75 90.05 28.7 re B*
+EMC
+/Form<</MCID 23>>BDC
+401.45 156.9 60.05 78.45 re B*
+EMC
+/Form<</MCID 24>>BDC
+402.1 98.95 77.1 38.9 re B*
+EMC
+Q
+endstream
+endobj
+
+%QDF: ignore_newline
+53 0 obj
+4747
+endobj
+
+54 0 obj
+<<
+ /K [
+ 86 0 R
+ 87 0 R
+ 88 0 R
+ 89 0 R
+ 90 0 R
+ 91 0 R
+ 92 0 R
+ 93 0 R
+ 94 0 R
+ 95 0 R
+ 96 0 R
+ 97 0 R
+ 98 0 R
+ 99 0 R
+ 100 0 R
+ 101 0 R
+ 102 0 R
+ 103 0 R
+ 104 0 R
+ 105 0 R
+ 106 0 R
+ 107 0 R
+ 108 0 R
+ 109 0 R
+ 110 0 R
+ 111 0 R
+ 112 0 R
+ 113 0 R
+ 114 0 R
+ 115 0 R
+ 116 0 R
+ 117 0 R
+ 118 0 R
+ 119 0 R
+ 120 0 R
+ 121 0 R
+ 122 0 R
+ 123 0 R
+ 124 0 R
+ 125 0 R
+ 126 0 R
+ 127 0 R
+ 128 0 R
+ 129 0 R
+ 130 0 R
+ 131 0 R
+ 132 0 R
+ 133 0 R
+ 134 0 R
+ 135 0 R
+ 136 0 R
+ 137 0 R
+ 138 0 R
+ 139 0 R
+ 140 0 R
+ 141 0 R
+ 142 0 R
+ 143 0 R
+ 144 0 R
+ ]
+ /P 17 0 R
+ /Pg 15 0 R
+ /S /Document
+ /Type /StructElem
+>>
+endobj
+
+55 0 obj
+<<
+ /Nums [
+ 0
+ [
+ 86 0 R
+ 88 0 R
+ 90 0 R
+ 97 0 R
+ 108 0 R
+ 119 0 R
+ 123 0 R
+ 123 0 R
+ 129 0 R
+ 129 0 R
+ 130 0 R
+ 131 0 R
+ 132 0 R
+ 133 0 R
+ 134 0 R
+ 135 0 R
+ 136 0 R
+ 137 0 R
+ 138 0 R
+ 139 0 R
+ 140 0 R
+ 141 0 R
+ 142 0 R
+ 143 0 R
+ 144 0 R
+ ]
+ ]
+>>
+endobj
+
+56 0 obj
+<<
+ /BaseFont /BAAAAA+LiberationSerif
+ /FirstChar 0
+ /FontDescriptor 145 0 R
+ /LastChar 32
+ /Subtype /TrueType
+ /ToUnicode 146 0 R
+ /Type /Font
+ /Widths [
+ 777
+ 943
+ 500
+ 443
+ 333
+ 333
+ 389
+ 250
+ 777
+ 500
+ 333
+ 500
+ 443
+ 610
+ 500
+ 277
+ 556
+ 277
+ 277
+ 500
+ 443
+ 500
+ 443
+ 500
+ 500
+ 556
+ 610
+ 666
+ 500
+ 722
+ 500
+ 722
+ 500
+ ]
+>>
+endobj
+
+57 0 obj
+<<
+ /BaseFont /LiberationSans
+ /Encoding /WinAnsiEncoding
+ /FirstChar 32
+ /FontDescriptor 148 0 R
+ /LastChar 255
+ /Subtype /TrueType
+ /Type /Font
+ /Widths [
+ 277
+ 277
+ 354
+ 556
+ 556
+ 889
+ 666
+ 190
+ 333
+ 333
+ 389
+ 583
+ 277
+ 333
+ 277
+ 277
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 277
+ 277
+ 583
+ 583
+ 583
+ 556
+ 1015
+ 666
+ 666
+ 722
+ 722
+ 666
+ 610
+ 777
+ 722
+ 277
+ 500
+ 666
+ 556
+ 833
+ 722
+ 777
+ 666
+ 777
+ 722
+ 666
+ 610
+ 722
+ 666
+ 943
+ 666
+ 666
+ 610
+ 277
+ 277
+ 277
+ 469
+ 556
+ 333
+ 556
+ 556
+ 500
+ 556
+ 556
+ 277
+ 556
+ 556
+ 222
+ 222
+ 500
+ 222
+ 833
+ 556
+ 556
+ 556
+ 556
+ 333
+ 500
+ 277
+ 556
+ 500
+ 722
+ 500
+ 500
+ 500
+ 333
+ 259
+ 333
+ 583
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 277
+ 333
+ 556
+ 556
+ 556
+ 556
+ 259
+ 556
+ 333
+ 736
+ 370
+ 556
+ 583
+ 333
+ 736
+ 552
+ 399
+ 548
+ 333
+ 333
+ 333
+ 576
+ 537
+ 333
+ 333
+ 333
+ 365
+ 556
+ 833
+ 833
+ 833
+ 610
+ 666
+ 666
+ 666
+ 666
+ 666
+ 666
+ 1000
+ 722
+ 666
+ 666
+ 666
+ 666
+ 277
+ 277
+ 277
+ 277
+ 722
+ 722
+ 777
+ 777
+ 777
+ 777
+ 777
+ 583
+ 777
+ 722
+ 722
+ 722
+ 722
+ 666
+ 666
+ 610
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 889
+ 500
+ 556
+ 556
+ 556
+ 556
+ 277
+ 277
+ 277
+ 277
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 548
+ 610
+ 556
+ 556
+ 556
+ 556
+ 500
+ 556
+ 500
+ ]
+>>
+endobj
+
+58 0 obj
+<<
+ /BaseFont /DAAAAA+LiberationSans
+ /FirstChar 0
+ /FontDescriptor 149 0 R
+ /LastChar 22
+ /Subtype /TrueType
+ /ToUnicode 150 0 R
+ /Type /Font
+ /Widths [
+ 750
+ 333
+ 556
+ 333
+ 556
+ 556
+ 500
+ 722
+ 556
+ 556
+ 500
+ 277
+ 666
+ 556
+ 500
+ 556
+ 556
+ 777
+ 556
+ 277
+ 222
+ 556
+ 556
+ ]
+>>
+endobj
+
+59 0 obj
+<<
+ /BaseFont /DejaVuSans
+ /Encoding /WinAnsiEncoding
+ /FirstChar 32
+ /FontDescriptor 152 0 R
+ /LastChar 255
+ /Subtype /TrueType
+ /Type /Font
+ /Widths [
+ 317
+ 400
+ 459
+ 837
+ 636
+ 950
+ 779
+ 274
+ 390
+ 390
+ 500
+ 837
+ 317
+ 360
+ 317
+ 336
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 336
+ 336
+ 837
+ 837
+ 837
+ 530
+ 1000
+ 684
+ 686
+ 698
+ 770
+ 631
+ 575
+ 774
+ 751
+ 294
+ 294
+ 655
+ 557
+ 862
+ 748
+ 787
+ 603
+ 787
+ 694
+ 634
+ 610
+ 731
+ 684
+ 988
+ 685
+ 610
+ 685
+ 390
+ 336
+ 390
+ 837
+ 500
+ 500
+ 612
+ 634
+ 549
+ 634
+ 615
+ 352
+ 634
+ 633
+ 277
+ 277
+ 579
+ 277
+ 974
+ 633
+ 611
+ 634
+ 634
+ 411
+ 520
+ 392
+ 633
+ 591
+ 817
+ 591
+ 591
+ 524
+ 636
+ 336
+ 636
+ 837
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 317
+ 400
+ 636
+ 636
+ 636
+ 636
+ 336
+ 500
+ 500
+ 1000
+ 471
+ 611
+ 837
+ 360
+ 1000
+ 500
+ 500
+ 837
+ 400
+ 400
+ 500
+ 636
+ 636
+ 317
+ 500
+ 400
+ 471
+ 611
+ 969
+ 969
+ 969
+ 530
+ 684
+ 684
+ 684
+ 684
+ 684
+ 684
+ 974
+ 698
+ 631
+ 631
+ 631
+ 631
+ 294
+ 294
+ 294
+ 294
+ 774
+ 748
+ 787
+ 787
+ 787
+ 787
+ 787
+ 837
+ 787
+ 731
+ 731
+ 731
+ 731
+ 610
+ 604
+ 629
+ 612
+ 612
+ 612
+ 612
+ 612
+ 612
+ 981
+ 549
+ 615
+ 615
+ 615
+ 615
+ 277
+ 277
+ 277
+ 277
+ 611
+ 633
+ 611
+ 611
+ 611
+ 611
+ 611
+ 837
+ 611
+ 633
+ 633
+ 633
+ 633
+ 591
+ 634
+ 591
+ ]
+>>
+endobj
+
+60 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 61 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+61 0 obj
+220
+endobj
+
+62 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 63 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+63 0 obj
+12
+endobj
+
+64 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 65 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+65 0 obj
+220
+endobj
+
+66 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 67 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+67 0 obj
+12
+endobj
+
+68 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 69 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+69 0 obj
+220
+endobj
+
+70 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 71 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+71 0 obj
+12
+endobj
+
+72 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 73 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+73 0 obj
+220
+endobj
+
+74 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 75 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+75 0 obj
+12
+endobj
+
+76 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 77 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+77 0 obj
+220
+endobj
+
+78 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 79 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+79 0 obj
+12
+endobj
+
+80 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 81 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+81 0 obj
+220
+endobj
+
+82 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 83 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+83 0 obj
+12
+endobj
+
+84 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 18
+ 18
+ ]
+ /Resources <<
+ /ExtGState <<
+ /GS0 <<
+ /AIS false
+ /BM /Normal
+ /CA .6
+ /Type /ExtGState
+ /ca .6
+ >>
+ >>
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 85 0 R
+>>
+stream
+q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b
+endstream
+endobj
+
+85 0 obj
+929
+endobj
+
+86 0 obj
+<<
+ /A 153 0 R
+ /K [
+ 0
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+87 0 obj
+<<
+ /A 154 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+88 0 obj
+<<
+ /A 155 0 R
+ /K [
+ 1
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+89 0 obj
+<<
+ /A 156 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+90 0 obj
+<<
+ /A 157 0 R
+ /K [
+ 2
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+91 0 obj
+<<
+ /A 158 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+92 0 obj
+<<
+ /A 159 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+93 0 obj
+<<
+ /A 160 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+94 0 obj
+<<
+ /A 161 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+95 0 obj
+<<
+ /A 162 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+96 0 obj
+<<
+ /A 163 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+97 0 obj
+<<
+ /A 164 0 R
+ /K [
+ 3
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+98 0 obj
+<<
+ /A 165 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+99 0 obj
+<<
+ /A 166 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+100 0 obj
+<<
+ /A 167 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+101 0 obj
+<<
+ /A 168 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+102 0 obj
+<<
+ /A 169 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+103 0 obj
+<<
+ /A 170 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+104 0 obj
+<<
+ /A 171 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+105 0 obj
+<<
+ /A 172 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+106 0 obj
+<<
+ /A 173 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+107 0 obj
+<<
+ /A 174 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+108 0 obj
+<<
+ /A 175 0 R
+ /K [
+ 4
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+109 0 obj
+<<
+ /A 176 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+110 0 obj
+<<
+ /A 177 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+111 0 obj
+<<
+ /A 178 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+112 0 obj
+<<
+ /A 179 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+113 0 obj
+<<
+ /A 180 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+114 0 obj
+<<
+ /A 181 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+115 0 obj
+<<
+ /A 182 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+116 0 obj
+<<
+ /A 183 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+117 0 obj
+<<
+ /A 184 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+118 0 obj
+<<
+ /A 185 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+119 0 obj
+<<
+ /A 186 0 R
+ /K [
+ 5
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+120 0 obj
+<<
+ /A 187 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+121 0 obj
+<<
+ /A 188 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+122 0 obj
+<<
+ /A 189 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+123 0 obj
+<<
+ /A 190 0 R
+ /K [
+ 6
+ 7
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+124 0 obj
+<<
+ /A 191 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+125 0 obj
+<<
+ /A 192 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+126 0 obj
+<<
+ /A 193 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+127 0 obj
+<<
+ /A 194 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+128 0 obj
+<<
+ /A 195 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+129 0 obj
+<<
+ /A 196 0 R
+ /K [
+ 8
+ 9
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+130 0 obj
+<<
+ /K [
+ 10
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+131 0 obj
+<<
+ /K [
+ 11
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+132 0 obj
+<<
+ /K [
+ 12
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+133 0 obj
+<<
+ /K [
+ 13
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+134 0 obj
+<<
+ /K [
+ 14
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+135 0 obj
+<<
+ /K [
+ 15
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+136 0 obj
+<<
+ /K [
+ 16
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+137 0 obj
+<<
+ /K [
+ 17
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+138 0 obj
+<<
+ /K [
+ 18
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+139 0 obj
+<<
+ /K [
+ 19
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+140 0 obj
+<<
+ /K [
+ 20
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+141 0 obj
+<<
+ /K [
+ 21
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+142 0 obj
+<<
+ /K [
+ 22
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+143 0 obj
+<<
+ /K [
+ 23
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+144 0 obj
+<<
+ /K [
+ 24
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+145 0 obj
+<<
+ /Ascent 891
+ /CapHeight 981
+ /Descent -216
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1277
+ 981
+ ]
+ /FontFile2 197 0 R
+ /FontName /BAAAAA+LiberationSerif
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+146 0 obj
+<<
+ /Length 147 0 R
+>>
+stream
+/CIDInit/ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo<<
+/Registry (Adobe)
+/Ordering (UCS)
+/Supplement 0
+>> def
+/CMapName/Adobe-Identity-UCS def
+/CMapType 2 def
+1 begincodespacerange
+<00> <FF>
+endcodespacerange
+32 beginbfchar
+<01> <0057>
+<02> <0068>
+<03> <0065>
+<04> <0072>
+<05> <2019>
+<06> <0073>
+<07> <0020>
+<08> <006D>
+<09> <0079>
+<0A> <0066>
+<0B> <006F>
+<0C> <003F>
+<0D> <0054>
+<0E> <0078>
+<0F> <0074>
+<10> <0046>
+<11> <0069>
+<12> <006C>
+<13> <0064>
+<14> <0061>
+<15> <0031>
+<16> <0063>
+<17> <006B>
+<18> <0032>
+<19> <0050>
+<1A> <004C>
+<1B> <0043>
+<1C> <0062>
+<1D> <0044>
+<1E> <0070>
+<1F> <0077>
+<20> <006E>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+endstream
+endobj
+
+147 0 obj
+702
+endobj
+
+148 0 obj
+<<
+ /Ascent 905
+ /CapHeight 979
+ /Descent -211
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1300
+ 979
+ ]
+ /FontName /LiberationSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+149 0 obj
+<<
+ /Ascent 905
+ /CapHeight 979
+ /Descent -211
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1300
+ 979
+ ]
+ /FontFile2 199 0 R
+ /FontName /DAAAAA+LiberationSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+150 0 obj
+<<
+ /Length 151 0 R
+>>
+stream
+/CIDInit/ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo<<
+/Registry (Adobe)
+/Ordering (UCS)
+/Supplement 0
+>> def
+/CMapName/Adobe-Identity-UCS def
+/CMapType 2 def
+1 begincodespacerange
+<00> <FF>
+endcodespacerange
+22 beginbfchar
+<01> <0072>
+<02> <0031>
+<03> <002D>
+<04> <0061>
+<05> <0062>
+<06> <0063>
+<07> <0043>
+<08> <0068>
+<09> <0065>
+<0A> <006B>
+<0B> <0020>
+<0C> <0042>
+<0D> <006F>
+<0E> <0078>
+<0F> <0032>
+<10> <0033>
+<11> <004F>
+<12> <0070>
+<13> <0074>
+<14> <0069>
+<15> <006E>
+<16> <0075>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+endstream
+endobj
+
+151 0 obj
+582
+endobj
+
+152 0 obj
+<<
+ /Ascent 928
+ /CapHeight 1232
+ /Descent -235
+ /Flags 4
+ /FontBBox [
+ -1020
+ -462
+ 1792
+ 1232
+ ]
+ /FontName /DejaVuSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+153 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+154 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+155 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+156 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+157 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+158 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+159 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+160 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+161 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+162 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+163 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+164 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+165 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+166 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+167 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+168 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+169 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+170 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+171 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+172 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+173 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+174 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+175 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+176 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+177 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+178 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+179 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+180 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+181 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+182 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+183 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+184 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+185 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+186 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+187 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+188 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+189 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+190 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+191 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+192 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+193 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+194 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+195 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+196 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+197 0 obj
+<<
+ /Length1 16184
+ /Length 198 0 R
+>>
+stream
+true
+{
+ 
+
+
+
+ 
+C#Ce
+-,
+ C#C -,
+-, i@a
+@@ @  CTX@
+#eB #B#?
+
+ H 
+_Y @
+ H 
+ PY
+_@qrr
+ 6A--XSY-- -
+PY
+
+@adH$4Dd $D
+9$d$!H@*H@
+ PY  
++,@@,-@@:-- -
+ PY
+"QYPY 
+PY
+
+
+sYvY@
+
+ `Y `Y_Y
+ _Y o/oO?/o_8/?^]]]]]]qqqqrr^]]]]]]qqqqqqqrrrrr
+ 
+
+
+
+"#PY PY QY
+
+ H 
+PY @
+ H 
+
+\
+ 4 : * p42
+nQ
+
+Copyright (c) 2012 Red Hat, Inc.Liberation SerifRegularAscender - Liberation SerifLiberation SerifVersion 2.00.2LiberationSerifLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman. Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL
+
+
+endstream
+endobj
+
+%QDF: ignore_newline
+198 0 obj
+16184
+endobj
+
+199 0 obj
+<<
+ /Length1 11088
+ /Length 200 0 R
+>>
+stream
+true
+ 
+ 
+C#Ce
+-,
+ C#C -,
+-, i@a
+@@ @  CTX@
+#eB #B#?
+
+
+
+
+!PY%?%%p%%%%%]]]qqqrr
+6YAXhZ
+
+PY
+]
+
+
+
+
+
+  v D T d 6 $         v d   & F V g F V  d V D 6 $      & 6 F 7f  @6=BH9 " 
+
+
+
+
+r
+iN
+
+Copyright (c) 2012 Red Hat, Inc.Liberation SansRegularAscender - Liberation SansLiberation SansVersion 2.00.2LiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL
+
+O P(F(F*F+_O_ F@FF@36FFUHU2
+endstream
+endobj
+
+%QDF: ignore_newline
+200 0 obj
+11088
+endobj
+
+xref
+0 201
+0000000000 65535 f
+0000000025 00000 n
+0000000413 00000 n
+0000000598 00000 n
+0000000671 00000 n
+0000000971 00000 n
+0000001102 00000 n
+0000001491 00000 n
+0000001880 00000 n
+0000002269 00000 n
+0000002400 00000 n
+0000002754 00000 n
+0000003313 00000 n
+0000003789 00000 n
+0000004210 00000 n
+0000004681 00000 n
+0000005106 00000 n
+0000005245 00000 n
+0000005395 00000 n
+0000005485 00000 n
+0000005722 00000 n
+0000005742 00000 n
+0000006108 00000 n
+0000006472 00000 n
+0000006838 00000 n
+0000007006 00000 n
+0000007026 00000 n
+0000007264 00000 n
+0000007284 00000 n
+0000007365 00000 n
+0000007533 00000 n
+0000007553 00000 n
+0000007791 00000 n
+0000007811 00000 n
+0000007979 00000 n
+0000007999 00000 n
+0000008237 00000 n
+0000008257 00000 n
+0000008623 00000 n
+0000008987 00000 n
+0000009353 00000 n
+0000009597 00000 n
+0000009617 00000 n
+0000010092 00000 n
+0000010113 00000 n
+0000010389 00000 n
+0000010410 00000 n
+0000010683 00000 n
+0000010704 00000 n
+0000010976 00000 n
+0000010997 00000 n
+0000011329 00000 n
+0000011493 00000 n
+0000016319 00000 n
+0000016341 00000 n
+0000017129 00000 n
+0000017530 00000 n
+0000017981 00000 n
+0000019898 00000 n
+0000020268 00000 n
+0000022182 00000 n
+0000022558 00000 n
+0000022579 00000 n
+0000022747 00000 n
+0000022767 00000 n
+0000023143 00000 n
+0000023164 00000 n
+0000023332 00000 n
+0000023352 00000 n
+0000023728 00000 n
+0000023749 00000 n
+0000023917 00000 n
+0000023937 00000 n
+0000024313 00000 n
+0000024334 00000 n
+0000024502 00000 n
+0000024522 00000 n
+0000024898 00000 n
+0000024919 00000 n
+0000025087 00000 n
+0000025107 00000 n
+0000025483 00000 n
+0000025504 00000 n
+0000025672 00000 n
+0000025692 00000 n
+0000026915 00000 n
+0000026936 00000 n
+0000027049 00000 n
+0000027145 00000 n
+0000027258 00000 n
+0000027354 00000 n
+0000027467 00000 n
+0000027563 00000 n
+0000027659 00000 n
+0000027755 00000 n
+0000027851 00000 n
+0000027947 00000 n
+0000028043 00000 n
+0000028156 00000 n
+0000028252 00000 n
+0000028348 00000 n
+0000028445 00000 n
+0000028542 00000 n
+0000028639 00000 n
+0000028736 00000 n
+0000028833 00000 n
+0000028930 00000 n
+0000029027 00000 n
+0000029124 00000 n
+0000029238 00000 n
+0000029335 00000 n
+0000029432 00000 n
+0000029529 00000 n
+0000029626 00000 n
+0000029723 00000 n
+0000029820 00000 n
+0000029917 00000 n
+0000030014 00000 n
+0000030111 00000 n
+0000030208 00000 n
+0000030322 00000 n
+0000030419 00000 n
+0000030516 00000 n
+0000030613 00000 n
+0000030733 00000 n
+0000030830 00000 n
+0000030927 00000 n
+0000031024 00000 n
+0000031121 00000 n
+0000031218 00000 n
+0000031338 00000 n
+0000031436 00000 n
+0000031534 00000 n
+0000031632 00000 n
+0000031730 00000 n
+0000031828 00000 n
+0000031926 00000 n
+0000032024 00000 n
+0000032122 00000 n
+0000032220 00000 n
+0000032318 00000 n
+0000032416 00000 n
+0000032514 00000 n
+0000032612 00000 n
+0000032710 00000 n
+0000032808 00000 n
+0000033053 00000 n
+0000033814 00000 n
+0000033836 00000 n
+0000034052 00000 n
+0000034296 00000 n
+0000034937 00000 n
+0000034959 00000 n
+0000035174 00000 n
+0000035231 00000 n
+0000035288 00000 n
+0000035345 00000 n
+0000035402 00000 n
+0000035459 00000 n
+0000035516 00000 n
+0000035573 00000 n
+0000035630 00000 n
+0000035687 00000 n
+0000035744 00000 n
+0000035801 00000 n
+0000035858 00000 n
+0000035915 00000 n
+0000035972 00000 n
+0000036029 00000 n
+0000036086 00000 n
+0000036143 00000 n
+0000036200 00000 n
+0000036257 00000 n
+0000036314 00000 n
+0000036371 00000 n
+0000036428 00000 n
+0000036485 00000 n
+0000036542 00000 n
+0000036599 00000 n
+0000036656 00000 n
+0000036713 00000 n
+0000036770 00000 n
+0000036827 00000 n
+0000036884 00000 n
+0000036941 00000 n
+0000036998 00000 n
+0000037055 00000 n
+0000037112 00000 n
+0000037169 00000 n
+0000037226 00000 n
+0000037283 00000 n
+0000037340 00000 n
+0000037397 00000 n
+0000037454 00000 n
+0000037511 00000 n
+0000037568 00000 n
+0000037625 00000 n
+0000037682 00000 n
+0000053964 00000 n
+0000053988 00000 n
+0000065174 00000 n
+trailer <<
+ /DocChecksum /CC322E136FE95DECF8BC297B1A9B2C2E
+ /Info 2 0 R
+ /Root 1 0 R
+ /Size 201
+ /ID [<f8abc47bb1df544a0df9c15a75ef0046><31415926535897932384626433832795>]
+>>
+startxref
+65198
+%%EOF
diff --git a/qpdf/qtest/qpdf/appearances-quack.pdf b/qpdf/qtest/qpdf/appearances-quack.pdf
new file mode 100644
index 00000000..6aa06b50
--- /dev/null
+++ b/qpdf/qtest/qpdf/appearances-quack.pdf
@@ -0,0 +1,3853 @@
+%PDF-1.5
+%
+%QDF-1.0
+
+1 0 obj
+<<
+ /AcroForm <<
+ /DR 3 0 R
+ /Fields [
+ 4 0 R
+ 5 0 R
+ 6 0 R
+ 7 0 R
+ 8 0 R
+ 9 0 R
+ 10 0 R
+ 11 0 R
+ 12 0 R
+ 13 0 R
+ 14 0 R
+ ]
+ >>
+ /Lang (en-US)
+ /MarkInfo <<
+ /Marked true
+ >>
+ /OpenAction [
+ 15 0 R
+ /XYZ
+ null
+ null
+ 0
+ ]
+ /Pages 16 0 R
+ /StructTreeRoot 17 0 R
+ /Type /Catalog
+>>
+endobj
+
+2 0 obj
+<<
+ /CreationDate (D:20190103125434-05'00')
+ /Creator <feff005700720069007400650072>
+ /Producer <feff004c0069006200720065004f0066006600690063006500200036002e0031>
+>>
+endobj
+
+3 0 obj
+<<
+ /Font 18 0 R
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+>>
+endobj
+
+4 0 obj
+<<
+ /AP <<
+ /N 19 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Tx
+ /P 15 0 R
+ /Rect [
+ 123.499
+ 689.901
+ 260.801
+ 704.699
+ ]
+ /Subtype /Widget
+ /T (text)
+ /Type /Annot
+ /V <feff006100620063>
+>>
+endobj
+
+5 0 obj
+<<
+ /DV /1
+ /FT /Btn
+ /Ff 49152
+ /Kids [
+ 21 0 R
+ 22 0 R
+ 23 0 R
+ ]
+ /P 15 0 R
+ /T (r1)
+ /V /2
+>>
+endobj
+
+6 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 24 0 R
+ /Yes 26 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Off
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 554.301
+ 130.701
+ 566.349
+ ]
+ /Subtype /Widget
+ /T (checkbox1)
+ /Type /Annot
+ /V /Off
+>>
+endobj
+
+7 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 29 0 R
+ /Yes 31 0 R
+ >>
+ >>
+ /AS /Yes
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Yes
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 527.751
+ 130.701
+ 539.799
+ ]
+ /Subtype /Widget
+ /T (checkbox2)
+ /Type /Annot
+ /V /Yes
+>>
+endobj
+
+8 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 33 0 R
+ /Yes 35 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Off
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 500.501
+ 130.701
+ 512.549
+ ]
+ /Subtype /Widget
+ /T (checkbox3)
+ /Type /Annot
+ /V /Off
+>>
+endobj
+
+9 0 obj
+<<
+ /DV /2
+ /FT /Btn
+ /Ff 49152
+ /Kids [
+ 37 0 R
+ 38 0 R
+ 39 0 R
+ ]
+ /P 15 0 R
+ /T (r2)
+ /V /2
+>>
+endobj
+
+10 0 obj
+<<
+ /AP <<
+ /N 40 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff00730061006c00610064002003c002ac>
+ /F 4
+ /FT /Tx
+ /P 15 0 R
+ /Rect [
+ 113.649
+ 260.151
+ 351.101
+ 278.099
+ ]
+ /Subtype /Widget
+ /T (text2)
+ /Type /Annot
+ /V <feff00730061006c00610064002003c002ac>
+>>
+endobj
+
+11 0 obj
+<<
+ /AP <<
+ /N 42 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Opt [
+ <feff0031>
+ <feff0032>
+ <feff0033>
+ <feff0034>
+ <feff0066006900760065>
+ <feff007300690078>
+ <feff0073006500760065006e>
+ <feff00650069006700680074>
+ <feff0039>
+ <feff00310030>
+ <feff00310031>
+ <feff00310032>
+ ]
+ /P 15 0 R
+ /Rect [
+ 158.449
+ 156.651
+ 221.001
+ 232.849
+ ]
+ /Subtype /Widget
+ /T (list1)
+ /Type /Annot
+ /V <feff0071007500610063006b>
+>>
+endobj
+
+12 0 obj
+<<
+ /AP <<
+ /N 44 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 131072
+ /Opt [
+ <feff006e0069006e0065>
+ <feff00740065006e>
+ <feff0065006c0065007000680061006e0074>
+ <feff007400770065006c00760065>
+ ]
+ /P 15 0 R
+ /Rect [
+ 159.149
+ 107.251
+ 244.201
+ 130.949
+ ]
+ /Subtype /Widget
+ /T (drop1)
+ /Type /Annot
+ /V <feff0065006c0065007000680061006e0074>
+>>
+endobj
+
+13 0 obj
+<<
+ /AP <<
+ /N 46 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 393216
+ /Opt [
+ <feff006f006e0065>
+ <feff00740077006f>
+ <feff00700069>
+ <feff0066006f00750072>
+ ]
+ /P 15 0 R
+ /Rect [
+ 403.949
+ 159.401
+ 459.001
+ 232.849
+ ]
+ /Subtype /Widget
+ /T (combolist1)
+ /Type /Annot
+ /V <feff00700069>
+>>
+endobj
+
+14 0 obj
+<<
+ /AP <<
+ /N 48 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 393216
+ /Opt [
+ <feff0061006c007000680061>
+ <feff0062006500740061>
+ <feff00670061006d006d0061>
+ <feff00640065006c00740061>
+ ]
+ /P 15 0 R
+ /Rect [
+ 404.599
+ 101.451
+ 476.701
+ 135.349
+ ]
+ /Subtype /Widget
+ /T (combodrop1)
+ /Type /Annot
+ /V <feff00640065006c00740061>
+>>
+endobj
+
+%% Page 1
+15 0 obj
+<<
+ /Annots [
+ 4 0 R
+ 21 0 R
+ 22 0 R
+ 23 0 R
+ 6 0 R
+ 7 0 R
+ 8 0 R
+ 37 0 R
+ 38 0 R
+ 39 0 R
+ 10 0 R
+ 13 0 R
+ 11 0 R
+ 12 0 R
+ 14 0 R
+ 50 0 R
+ 51 0 R
+ ]
+ /Contents 52 0 R
+ /Group <<
+ /CS /DeviceRGB
+ /I true
+ /S /Transparency
+ >>
+ /MediaBox [
+ 0
+ 0
+ 612
+ 792
+ ]
+ /Parent 16 0 R
+ /Resources 3 0 R
+ /StructParents 0
+ /Type /Page
+>>
+endobj
+
+16 0 obj
+<<
+ /Count 1
+ /Kids [
+ 15 0 R
+ ]
+ /MediaBox [
+ 0
+ 0
+ 612
+ 792
+ ]
+ /Resources 3 0 R
+ /Type /Pages
+>>
+endobj
+
+17 0 obj
+<<
+ /K [
+ 54 0 R
+ ]
+ /ParentTree 55 0 R
+ /RoleMap <<
+ /Document /Document
+ /Standard /P
+ >>
+ /Type /StructTreeRoot
+>>
+endobj
+
+18 0 obj
+<<
+ /F1 56 0 R
+ /F2 57 0 R
+ /F3 58 0 R
+ /F4 59 0 R
+ /ZaDi 28 0 R
+>>
+endobj
+
+19 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 137.3
+ 14.8
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 20 0 R
+>>
+stream
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F2 12 Tf
+q
+BT
+1 2.600000 Td
+(abc) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+20 0 obj
+82
+endobj
+
+21 0 obj
+<<
+ /AP <<
+ /N <<
+ /1 60 0 R
+ /Off 62 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 152.749
+ 648.501
+ 164.801
+ 660.549
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+22 0 obj
+<<
+ /AP <<
+ /N <<
+ /2 64 0 R
+ /Off 66 0 R
+ >>
+ >>
+ /AS /2
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 152.749
+ 627.301
+ 164.801
+ 639.349
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+23 0 obj
+<<
+ /AP <<
+ /N <<
+ /3 68 0 R
+ /Off 70 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 151.399
+ 606.501
+ 163.451
+ 618.549
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+24 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 25 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+25 0 obj
+12
+endobj
+
+26 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 27 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+27 0 obj
+82
+endobj
+
+28 0 obj
+<<
+ /BaseFont /ZapfDingbats
+ /Subtype /Type1
+ /Type /Font
+>>
+endobj
+
+29 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 30 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+30 0 obj
+12
+endobj
+
+31 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 32 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+32 0 obj
+82
+endobj
+
+33 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 34 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+34 0 obj
+12
+endobj
+
+35 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 36 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+36 0 obj
+82
+endobj
+
+37 0 obj
+<<
+ /AP <<
+ /N <<
+ /1 72 0 R
+ /Off 74 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 118.649
+ 388.101
+ 130.701
+ 400.149
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+38 0 obj
+<<
+ /AP <<
+ /N <<
+ /2 76 0 R
+ /Off 78 0 R
+ >>
+ >>
+ /AS /2
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 119.349
+ 362.201
+ 131.401
+ 374.249
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+39 0 obj
+<<
+ /AP <<
+ /N <<
+ /3 80 0 R
+ /Off 82 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 119.349
+ 333.551
+ 131.401
+ 345.599
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+40 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 237.45
+ 17.95
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 41 0 R
+>>
+stream
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F2 12 Tf
+q
+BT
+1 4.175000 Td
+(salad ??) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+41 0 obj
+87
+endobj
+
+42 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 62.55
+ 76.2
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 43 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 62.55 76.2 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+q
+0.85 0.85 0.85 rg
+0 62.100000 62 12.000000 re f
+Q
+BT
+1 64.100000 Td
+(quack) Tj
+ET
+BT
+1 52.100000 Td
+(1) Tj
+ET
+BT
+1 40.100000 Td
+(2) Tj
+ET
+BT
+1 28.100000 Td
+(3) Tj
+ET
+BT
+1 16.100000 Td
+(4) Tj
+ET
+BT
+1 4.100000 Td
+(five) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+43 0 obj
+313
+endobj
+
+44 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 85.05
+ 23.7
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 45 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 85.05 23.7 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+BT
+1 7.850000 Td
+(elephant) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+45 0 obj
+121
+endobj
+
+46 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 55.05
+ 73.45
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 47 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 55.05 73.45 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+BT
+1 32.725000 Td
+(pi) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+47 0 obj
+117
+endobj
+
+48 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 72.1
+ 33.9
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 49 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 72.1 33.9 re f*
+/Tx BMC
+0.18039 0.20392 0.21176 rg /F4 10 Tf
+q
+BT
+1 12.950000 Td
+(delta) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+49 0 obj
+118
+endobj
+
+50 0 obj
+<<
+ /AP <<
+ /N 84 0 R
+ >>
+ /C [
+ 1
+ 1
+ 0
+ ]
+ /CA 1
+ /Contents (Salad)
+ /CreationDate (D:20181231235455Z00'00)
+ /F 28
+ /M (D:20181231235455Z00'00)
+ /Name /Comment
+ /P 15 0 R
+ /Popup 51 0 R
+ /Rect [
+ 435
+ 703
+ 453
+ 721
+ ]
+ /Subtype /Text
+ /T (Jay Berkenbilt)
+ /Type /Annot
+>>
+endobj
+
+51 0 obj
+<<
+ /F 28
+ /Open false
+ /Parent 50 0 R
+ /Rect [
+ 612
+ 601
+ 792
+ 721
+ ]
+ /Subtype /Popup
+ /Type /Annot
+>>
+endobj
+
+%% Contents for page 1
+52 0 obj
+<<
+ /Length 53 0 R
+>>
+stream
+0.1 w
+/Artifact BMC
+q 0 0.028 611.971 791.971 re
+W* n
+EMC
+/Standard<</MCID 0>>BDC
+q 0 0 0 rg
+BT
+56.8 724.1 Td /F1 12 Tf[<01>1<0203>1<0403>1<05>58<06>-10<0708>2<09070a0b0408>2(\f)]TJ
+ET
+Q
+EMC
+/Standard<</MCID 1>>BDC
+q 0 0 0 rg
+BT
+56.8 693 Td /F1 12 Tf[(\r)68<03>1<0e0f>2<0710>-1<11>2<03>1<12>2<13>-7<0707070707>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 2>>BDC
+q 0 0 0 rg
+BT
+56.8 661.9 Td /F1 12 Tf[<0414>1<1311>2<0b0715>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 3>>BDC
+q 0 0 0 rg
+BT
+56.8 565.3 Td /F1 12 Tf[<16>1<0203>1<16>1<17>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 4>>BDC
+q 0 0 0 rg
+BT
+56.8 413.5 Td /F1 12 Tf[<0414>1<1311>2<0b0718>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 5>>BDC
+q 0 0 0 rg
+BT
+56.8 261.7 Td /F1 12 Tf[<19>-1<0b0f>2<14>1<0f>2<0b>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 6>>BDC
+q 0 0 0 rg
+BT
+56.8 206.5 Td /F1 12 Tf[<1a>2<11>2<06>-2<0f>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 7>>BDC
+q 0 0 0 rg
+BT
+269.5 206.5 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0712>2<11>2<06>-2<0f>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 8>>BDC
+q 0 0 0 rg
+BT
+56.8 123.7 Td /F1 12 Tf[<1d>5<040b1e130b1f>-2( )]TJ
+ET
+Q
+EMC
+/Standard<</MCID 9>>BDC
+q 0 0 0 rg
+BT
+269.5 123.7 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0713040b1e130b1f>-2( )]TJ
+ET
+Q
+EMC
+/Form<</MCID 10>>BDC
+0 0 0 RG
+1 1 1 rg
+120.5 686.9 143.3 20.8 re B*
+EMC
+/Form<</MCID 11>>BDC
+151.55 642.6 183.45 23.9 re f*
+q 1.2 w 0 0 0 RG
+158.75 660.55 m 162.1 660.55 164.8 657.9 164.8 654.55 c
+164.8 651.2 162.1 648.5 158.75 648.5 c
+155.4 648.5 152.75 651.2 152.75 654.55 c
+152.75 657.9 155.4 660.55 158.75 660.55 c s
+ Q
+q 169.6 642.6 164.25 23.9 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+169.6 650.3 Td /F3 12 Tf[<0102>-1<0304>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 12>>BDC
+1 1 1 rg
+151.55 624.8 125.5 17.1 re f*
+q 1.2 w 0 0 0 RG
+158.75 639.35 m 162.1 639.35 164.8 636.7 164.8 633.35 c
+164.8 630 162.1 627.3 158.75 627.3 c
+155.4 627.3 152.75 630 152.75 633.35 c
+152.75 636.7 155.4 639.35 158.75 639.35 c s
+ Q
+q 169.6 624.8 106.3 17.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+169.6 629.1 Td /F3 12 Tf[<0102>-1<0305>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 13>>BDC
+1 1 1 rg
+150.2 605.7 118.7 13.7 re f*
+q 1.2 w 0 0 0 RG
+157.4 618.55 m 160.75 618.55 163.45 615.9 163.45 612.55 c
+163.45 609.2 160.75 606.5 157.4 606.5 c
+154.05 606.5 151.4 609.2 151.4 612.55 c
+151.4 615.9 154.05 618.55 157.4 618.55 c s
+ Q
+q 168.25 605.7 99.5 13.7 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+168.3 608.3 Td /F3 12 Tf[<0102>-1<0306>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 14>>BDC
+1 1 1 rg
+117.45 544.3 86.65 32.1 re f*
+q 1.2 w 0 0 0 RG
+118.65 554.3 12.05 12.05 re S
+ Q
+q 135.5 544.3 67.45 32.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 556.1 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 15>>BDC
+1 1 1 rg
+117.45 523.2 85.3 21.15 re f*
+q 1.2 w 0 0 0 RG
+118.65 527.75 12.05 12.05 re S
+ Q
+q 135.5 523.2 66.1 21.15 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 529.6 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<0f>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 16>>BDC
+1 1 1 rg
+117.45 498 72.35 17.1 re f*
+q 1.2 w 0 0 0 RG
+118.65 500.5 12.05 12.05 re S
+ Q
+q 135.5 498 53.15 17.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 502.3 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<10>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 17>>BDC
+1 1 1 rg
+117.45 378.75 169.15 30.75 re f*
+q 1.2 w 0 0 0 RG
+124.65 400.15 m 128 400.15 130.7 397.5 130.7 394.15 c
+130.7 390.8 128 388.1 124.65 388.1 c
+121.3 388.1 118.65 390.8 118.65 394.15 c
+118.65 397.5 121.3 400.15 124.65 400.15 c s
+ Q
+q 135.5 378.75 149.95 30.75 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 389.9 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 18>>BDC
+1 1 1 rg
+118.15 352.85 180.7 30.75 re f*
+q 1.2 w 0 0 0 RG
+125.35 374.25 m 128.7 374.25 131.4 371.6 131.4 368.25 c
+131.4 364.9 128.7 362.2 125.35 362.2 c
+122 362.2 119.35 364.9 119.35 368.25 c
+119.35 371.6 122 374.25 125.35 374.25 c s
+ Q
+q 136.2 352.85 161.5 30.75 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+136.2 364 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<0f>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 19>>BDC
+1 1 1 rg
+118.15 322.85 139.15 33.5 re f*
+q 1.2 w 0 0 0 RG
+125.35 345.6 m 128.7 345.6 131.4 342.95 131.4 339.6 c
+131.4 336.25 128.7 333.55 125.35 333.55 c
+122 333.55 119.35 336.25 119.35 339.6 c
+119.35 342.95 122 345.6 125.35 345.6 c s
+ Q
+q 136.2 322.85 119.95 33.5 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+136.2 335.4 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<10>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 20>>BDC
+0 0 0 RG
+1 1 1 rg
+110.65 257.15 243.45 23.95 re B*
+EMC
+/Form<</MCID 21>>BDC
+155.95 154.15 67.55 81.2 re B*
+EMC
+/Form<</MCID 22>>BDC
+156.65 104.75 90.05 28.7 re B*
+EMC
+/Form<</MCID 23>>BDC
+401.45 156.9 60.05 78.45 re B*
+EMC
+/Form<</MCID 24>>BDC
+402.1 98.95 77.1 38.9 re B*
+EMC
+Q
+endstream
+endobj
+
+%QDF: ignore_newline
+53 0 obj
+4747
+endobj
+
+54 0 obj
+<<
+ /K [
+ 86 0 R
+ 87 0 R
+ 88 0 R
+ 89 0 R
+ 90 0 R
+ 91 0 R
+ 92 0 R
+ 93 0 R
+ 94 0 R
+ 95 0 R
+ 96 0 R
+ 97 0 R
+ 98 0 R
+ 99 0 R
+ 100 0 R
+ 101 0 R
+ 102 0 R
+ 103 0 R
+ 104 0 R
+ 105 0 R
+ 106 0 R
+ 107 0 R
+ 108 0 R
+ 109 0 R
+ 110 0 R
+ 111 0 R
+ 112 0 R
+ 113 0 R
+ 114 0 R
+ 115 0 R
+ 116 0 R
+ 117 0 R
+ 118 0 R
+ 119 0 R
+ 120 0 R
+ 121 0 R
+ 122 0 R
+ 123 0 R
+ 124 0 R
+ 125 0 R
+ 126 0 R
+ 127 0 R
+ 128 0 R
+ 129 0 R
+ 130 0 R
+ 131 0 R
+ 132 0 R
+ 133 0 R
+ 134 0 R
+ 135 0 R
+ 136 0 R
+ 137 0 R
+ 138 0 R
+ 139 0 R
+ 140 0 R
+ 141 0 R
+ 142 0 R
+ 143 0 R
+ 144 0 R
+ ]
+ /P 17 0 R
+ /Pg 15 0 R
+ /S /Document
+ /Type /StructElem
+>>
+endobj
+
+55 0 obj
+<<
+ /Nums [
+ 0
+ [
+ 86 0 R
+ 88 0 R
+ 90 0 R
+ 97 0 R
+ 108 0 R
+ 119 0 R
+ 123 0 R
+ 123 0 R
+ 129 0 R
+ 129 0 R
+ 130 0 R
+ 131 0 R
+ 132 0 R
+ 133 0 R
+ 134 0 R
+ 135 0 R
+ 136 0 R
+ 137 0 R
+ 138 0 R
+ 139 0 R
+ 140 0 R
+ 141 0 R
+ 142 0 R
+ 143 0 R
+ 144 0 R
+ ]
+ ]
+>>
+endobj
+
+56 0 obj
+<<
+ /BaseFont /BAAAAA+LiberationSerif
+ /FirstChar 0
+ /FontDescriptor 145 0 R
+ /LastChar 32
+ /Subtype /TrueType
+ /ToUnicode 146 0 R
+ /Type /Font
+ /Widths [
+ 777
+ 943
+ 500
+ 443
+ 333
+ 333
+ 389
+ 250
+ 777
+ 500
+ 333
+ 500
+ 443
+ 610
+ 500
+ 277
+ 556
+ 277
+ 277
+ 500
+ 443
+ 500
+ 443
+ 500
+ 500
+ 556
+ 610
+ 666
+ 500
+ 722
+ 500
+ 722
+ 500
+ ]
+>>
+endobj
+
+57 0 obj
+<<
+ /BaseFont /LiberationSans
+ /Encoding /WinAnsiEncoding
+ /FirstChar 32
+ /FontDescriptor 148 0 R
+ /LastChar 255
+ /Subtype /TrueType
+ /Type /Font
+ /Widths [
+ 277
+ 277
+ 354
+ 556
+ 556
+ 889
+ 666
+ 190
+ 333
+ 333
+ 389
+ 583
+ 277
+ 333
+ 277
+ 277
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 277
+ 277
+ 583
+ 583
+ 583
+ 556
+ 1015
+ 666
+ 666
+ 722
+ 722
+ 666
+ 610
+ 777
+ 722
+ 277
+ 500
+ 666
+ 556
+ 833
+ 722
+ 777
+ 666
+ 777
+ 722
+ 666
+ 610
+ 722
+ 666
+ 943
+ 666
+ 666
+ 610
+ 277
+ 277
+ 277
+ 469
+ 556
+ 333
+ 556
+ 556
+ 500
+ 556
+ 556
+ 277
+ 556
+ 556
+ 222
+ 222
+ 500
+ 222
+ 833
+ 556
+ 556
+ 556
+ 556
+ 333
+ 500
+ 277
+ 556
+ 500
+ 722
+ 500
+ 500
+ 500
+ 333
+ 259
+ 333
+ 583
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 277
+ 333
+ 556
+ 556
+ 556
+ 556
+ 259
+ 556
+ 333
+ 736
+ 370
+ 556
+ 583
+ 333
+ 736
+ 552
+ 399
+ 548
+ 333
+ 333
+ 333
+ 576
+ 537
+ 333
+ 333
+ 333
+ 365
+ 556
+ 833
+ 833
+ 833
+ 610
+ 666
+ 666
+ 666
+ 666
+ 666
+ 666
+ 1000
+ 722
+ 666
+ 666
+ 666
+ 666
+ 277
+ 277
+ 277
+ 277
+ 722
+ 722
+ 777
+ 777
+ 777
+ 777
+ 777
+ 583
+ 777
+ 722
+ 722
+ 722
+ 722
+ 666
+ 666
+ 610
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 889
+ 500
+ 556
+ 556
+ 556
+ 556
+ 277
+ 277
+ 277
+ 277
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 548
+ 610
+ 556
+ 556
+ 556
+ 556
+ 500
+ 556
+ 500
+ ]
+>>
+endobj
+
+58 0 obj
+<<
+ /BaseFont /DAAAAA+LiberationSans
+ /FirstChar 0
+ /FontDescriptor 149 0 R
+ /LastChar 22
+ /Subtype /TrueType
+ /ToUnicode 150 0 R
+ /Type /Font
+ /Widths [
+ 750
+ 333
+ 556
+ 333
+ 556
+ 556
+ 500
+ 722
+ 556
+ 556
+ 500
+ 277
+ 666
+ 556
+ 500
+ 556
+ 556
+ 777
+ 556
+ 277
+ 222
+ 556
+ 556
+ ]
+>>
+endobj
+
+59 0 obj
+<<
+ /BaseFont /DejaVuSans
+ /Encoding /WinAnsiEncoding
+ /FirstChar 32
+ /FontDescriptor 152 0 R
+ /LastChar 255
+ /Subtype /TrueType
+ /Type /Font
+ /Widths [
+ 317
+ 400
+ 459
+ 837
+ 636
+ 950
+ 779
+ 274
+ 390
+ 390
+ 500
+ 837
+ 317
+ 360
+ 317
+ 336
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 336
+ 336
+ 837
+ 837
+ 837
+ 530
+ 1000
+ 684
+ 686
+ 698
+ 770
+ 631
+ 575
+ 774
+ 751
+ 294
+ 294
+ 655
+ 557
+ 862
+ 748
+ 787
+ 603
+ 787
+ 694
+ 634
+ 610
+ 731
+ 684
+ 988
+ 685
+ 610
+ 685
+ 390
+ 336
+ 390
+ 837
+ 500
+ 500
+ 612
+ 634
+ 549
+ 634
+ 615
+ 352
+ 634
+ 633
+ 277
+ 277
+ 579
+ 277
+ 974
+ 633
+ 611
+ 634
+ 634
+ 411
+ 520
+ 392
+ 633
+ 591
+ 817
+ 591
+ 591
+ 524
+ 636
+ 336
+ 636
+ 837
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 317
+ 400
+ 636
+ 636
+ 636
+ 636
+ 336
+ 500
+ 500
+ 1000
+ 471
+ 611
+ 837
+ 360
+ 1000
+ 500
+ 500
+ 837
+ 400
+ 400
+ 500
+ 636
+ 636
+ 317
+ 500
+ 400
+ 471
+ 611
+ 969
+ 969
+ 969
+ 530
+ 684
+ 684
+ 684
+ 684
+ 684
+ 684
+ 974
+ 698
+ 631
+ 631
+ 631
+ 631
+ 294
+ 294
+ 294
+ 294
+ 774
+ 748
+ 787
+ 787
+ 787
+ 787
+ 787
+ 837
+ 787
+ 731
+ 731
+ 731
+ 731
+ 610
+ 604
+ 629
+ 612
+ 612
+ 612
+ 612
+ 612
+ 612
+ 981
+ 549
+ 615
+ 615
+ 615
+ 615
+ 277
+ 277
+ 277
+ 277
+ 611
+ 633
+ 611
+ 611
+ 611
+ 611
+ 611
+ 837
+ 611
+ 633
+ 633
+ 633
+ 633
+ 591
+ 634
+ 591
+ ]
+>>
+endobj
+
+60 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 61 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+61 0 obj
+220
+endobj
+
+62 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 63 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+63 0 obj
+12
+endobj
+
+64 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 65 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+65 0 obj
+220
+endobj
+
+66 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 67 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+67 0 obj
+12
+endobj
+
+68 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 69 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+69 0 obj
+220
+endobj
+
+70 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 71 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+71 0 obj
+12
+endobj
+
+72 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 73 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+73 0 obj
+220
+endobj
+
+74 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 75 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+75 0 obj
+12
+endobj
+
+76 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 77 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+77 0 obj
+220
+endobj
+
+78 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 79 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+79 0 obj
+12
+endobj
+
+80 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 81 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+81 0 obj
+220
+endobj
+
+82 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 83 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+83 0 obj
+12
+endobj
+
+84 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 18
+ 18
+ ]
+ /Resources <<
+ /ExtGState <<
+ /GS0 <<
+ /AIS false
+ /BM /Normal
+ /CA .6
+ /Type /ExtGState
+ /ca .6
+ >>
+ >>
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 85 0 R
+>>
+stream
+q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b
+endstream
+endobj
+
+85 0 obj
+929
+endobj
+
+86 0 obj
+<<
+ /A 153 0 R
+ /K [
+ 0
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+87 0 obj
+<<
+ /A 154 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+88 0 obj
+<<
+ /A 155 0 R
+ /K [
+ 1
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+89 0 obj
+<<
+ /A 156 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+90 0 obj
+<<
+ /A 157 0 R
+ /K [
+ 2
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+91 0 obj
+<<
+ /A 158 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+92 0 obj
+<<
+ /A 159 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+93 0 obj
+<<
+ /A 160 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+94 0 obj
+<<
+ /A 161 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+95 0 obj
+<<
+ /A 162 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+96 0 obj
+<<
+ /A 163 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+97 0 obj
+<<
+ /A 164 0 R
+ /K [
+ 3
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+98 0 obj
+<<
+ /A 165 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+99 0 obj
+<<
+ /A 166 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+100 0 obj
+<<
+ /A 167 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+101 0 obj
+<<
+ /A 168 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+102 0 obj
+<<
+ /A 169 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+103 0 obj
+<<
+ /A 170 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+104 0 obj
+<<
+ /A 171 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+105 0 obj
+<<
+ /A 172 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+106 0 obj
+<<
+ /A 173 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+107 0 obj
+<<
+ /A 174 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+108 0 obj
+<<
+ /A 175 0 R
+ /K [
+ 4
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+109 0 obj
+<<
+ /A 176 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+110 0 obj
+<<
+ /A 177 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+111 0 obj
+<<
+ /A 178 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+112 0 obj
+<<
+ /A 179 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+113 0 obj
+<<
+ /A 180 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+114 0 obj
+<<
+ /A 181 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+115 0 obj
+<<
+ /A 182 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+116 0 obj
+<<
+ /A 183 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+117 0 obj
+<<
+ /A 184 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+118 0 obj
+<<
+ /A 185 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+119 0 obj
+<<
+ /A 186 0 R
+ /K [
+ 5
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+120 0 obj
+<<
+ /A 187 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+121 0 obj
+<<
+ /A 188 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+122 0 obj
+<<
+ /A 189 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+123 0 obj
+<<
+ /A 190 0 R
+ /K [
+ 6
+ 7
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+124 0 obj
+<<
+ /A 191 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+125 0 obj
+<<
+ /A 192 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+126 0 obj
+<<
+ /A 193 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+127 0 obj
+<<
+ /A 194 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+128 0 obj
+<<
+ /A 195 0 R
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+129 0 obj
+<<
+ /A 196 0 R
+ /K [
+ 8
+ 9
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+130 0 obj
+<<
+ /K [
+ 10
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+131 0 obj
+<<
+ /K [
+ 11
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+132 0 obj
+<<
+ /K [
+ 12
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+133 0 obj
+<<
+ /K [
+ 13
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+134 0 obj
+<<
+ /K [
+ 14
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+135 0 obj
+<<
+ /K [
+ 15
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+136 0 obj
+<<
+ /K [
+ 16
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+137 0 obj
+<<
+ /K [
+ 17
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+138 0 obj
+<<
+ /K [
+ 18
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+139 0 obj
+<<
+ /K [
+ 19
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+140 0 obj
+<<
+ /K [
+ 20
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+141 0 obj
+<<
+ /K [
+ 21
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+142 0 obj
+<<
+ /K [
+ 22
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+143 0 obj
+<<
+ /K [
+ 23
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+144 0 obj
+<<
+ /K [
+ 24
+ ]
+ /P 54 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+145 0 obj
+<<
+ /Ascent 891
+ /CapHeight 981
+ /Descent -216
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1277
+ 981
+ ]
+ /FontFile2 197 0 R
+ /FontName /BAAAAA+LiberationSerif
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+146 0 obj
+<<
+ /Length 147 0 R
+>>
+stream
+/CIDInit/ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo<<
+/Registry (Adobe)
+/Ordering (UCS)
+/Supplement 0
+>> def
+/CMapName/Adobe-Identity-UCS def
+/CMapType 2 def
+1 begincodespacerange
+<00> <FF>
+endcodespacerange
+32 beginbfchar
+<01> <0057>
+<02> <0068>
+<03> <0065>
+<04> <0072>
+<05> <2019>
+<06> <0073>
+<07> <0020>
+<08> <006D>
+<09> <0079>
+<0A> <0066>
+<0B> <006F>
+<0C> <003F>
+<0D> <0054>
+<0E> <0078>
+<0F> <0074>
+<10> <0046>
+<11> <0069>
+<12> <006C>
+<13> <0064>
+<14> <0061>
+<15> <0031>
+<16> <0063>
+<17> <006B>
+<18> <0032>
+<19> <0050>
+<1A> <004C>
+<1B> <0043>
+<1C> <0062>
+<1D> <0044>
+<1E> <0070>
+<1F> <0077>
+<20> <006E>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+endstream
+endobj
+
+147 0 obj
+702
+endobj
+
+148 0 obj
+<<
+ /Ascent 905
+ /CapHeight 979
+ /Descent -211
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1300
+ 979
+ ]
+ /FontName /LiberationSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+149 0 obj
+<<
+ /Ascent 905
+ /CapHeight 979
+ /Descent -211
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1300
+ 979
+ ]
+ /FontFile2 199 0 R
+ /FontName /DAAAAA+LiberationSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+150 0 obj
+<<
+ /Length 151 0 R
+>>
+stream
+/CIDInit/ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo<<
+/Registry (Adobe)
+/Ordering (UCS)
+/Supplement 0
+>> def
+/CMapName/Adobe-Identity-UCS def
+/CMapType 2 def
+1 begincodespacerange
+<00> <FF>
+endcodespacerange
+22 beginbfchar
+<01> <0072>
+<02> <0031>
+<03> <002D>
+<04> <0061>
+<05> <0062>
+<06> <0063>
+<07> <0043>
+<08> <0068>
+<09> <0065>
+<0A> <006B>
+<0B> <0020>
+<0C> <0042>
+<0D> <006F>
+<0E> <0078>
+<0F> <0032>
+<10> <0033>
+<11> <004F>
+<12> <0070>
+<13> <0074>
+<14> <0069>
+<15> <006E>
+<16> <0075>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+endstream
+endobj
+
+151 0 obj
+582
+endobj
+
+152 0 obj
+<<
+ /Ascent 928
+ /CapHeight 1232
+ /Descent -235
+ /Flags 4
+ /FontBBox [
+ -1020
+ -462
+ 1792
+ 1232
+ ]
+ /FontName /DejaVuSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+153 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+154 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+155 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+156 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+157 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+158 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+159 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+160 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+161 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+162 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+163 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+164 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+165 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+166 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+167 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+168 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+169 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+170 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+171 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+172 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+173 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+174 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+175 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+176 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+177 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+178 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+179 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+180 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+181 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+182 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+183 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+184 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+185 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+186 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+187 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+188 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+189 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+190 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+191 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+192 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+193 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+194 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+195 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+196 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+197 0 obj
+<<
+ /Length1 16184
+ /Length 198 0 R
+>>
+stream
+true
+{
+ 
+
+
+
+ 
+C#Ce
+-,
+ C#C -,
+-, i@a
+@@ @  CTX@
+#eB #B#?
+
+ H 
+_Y @
+ H 
+ PY
+_@qrr
+ 6A--XSY-- -
+PY
+
+@adH$4Dd $D
+9$d$!H@*H@
+ PY  
++,@@,-@@:-- -
+ PY
+"QYPY 
+PY
+
+
+sYvY@
+
+ `Y `Y_Y
+ _Y o/oO?/o_8/?^]]]]]]qqqqrr^]]]]]]qqqqqqqrrrrr
+ 
+
+
+
+"#PY PY QY
+
+ H 
+PY @
+ H 
+
+\
+ 4 : * p42
+nQ
+
+Copyright (c) 2012 Red Hat, Inc.Liberation SerifRegularAscender - Liberation SerifLiberation SerifVersion 2.00.2LiberationSerifLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman. Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL
+
+
+endstream
+endobj
+
+%QDF: ignore_newline
+198 0 obj
+16184
+endobj
+
+199 0 obj
+<<
+ /Length1 11088
+ /Length 200 0 R
+>>
+stream
+true
+ 
+ 
+C#Ce
+-,
+ C#C -,
+-, i@a
+@@ @  CTX@
+#eB #B#?
+
+
+
+
+!PY%?%%p%%%%%]]]qqqrr
+6YAXhZ
+
+PY
+]
+
+
+
+
+
+  v D T d 6 $         v d   & F V g F V  d V D 6 $      & 6 F 7f  @6=BH9 " 
+
+
+
+
+r
+iN
+
+Copyright (c) 2012 Red Hat, Inc.Liberation SansRegularAscender - Liberation SansLiberation SansVersion 2.00.2LiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL
+
+O P(F(F*F+_O_ F@FF@36FFUHU2
+endstream
+endobj
+
+%QDF: ignore_newline
+200 0 obj
+11088
+endobj
+
+xref
+0 201
+0000000000 65535 f
+0000000025 00000 n
+0000000413 00000 n
+0000000598 00000 n
+0000000671 00000 n
+0000000971 00000 n
+0000001102 00000 n
+0000001491 00000 n
+0000001880 00000 n
+0000002269 00000 n
+0000002400 00000 n
+0000002754 00000 n
+0000003321 00000 n
+0000003797 00000 n
+0000004218 00000 n
+0000004689 00000 n
+0000005114 00000 n
+0000005253 00000 n
+0000005403 00000 n
+0000005493 00000 n
+0000005730 00000 n
+0000005750 00000 n
+0000006116 00000 n
+0000006480 00000 n
+0000006846 00000 n
+0000007014 00000 n
+0000007034 00000 n
+0000007272 00000 n
+0000007292 00000 n
+0000007373 00000 n
+0000007541 00000 n
+0000007561 00000 n
+0000007799 00000 n
+0000007819 00000 n
+0000007987 00000 n
+0000008007 00000 n
+0000008245 00000 n
+0000008265 00000 n
+0000008631 00000 n
+0000008995 00000 n
+0000009361 00000 n
+0000009605 00000 n
+0000009625 00000 n
+0000010093 00000 n
+0000010114 00000 n
+0000010390 00000 n
+0000010411 00000 n
+0000010684 00000 n
+0000010705 00000 n
+0000010977 00000 n
+0000010998 00000 n
+0000011330 00000 n
+0000011494 00000 n
+0000016320 00000 n
+0000016342 00000 n
+0000017130 00000 n
+0000017531 00000 n
+0000017982 00000 n
+0000019899 00000 n
+0000020269 00000 n
+0000022183 00000 n
+0000022559 00000 n
+0000022580 00000 n
+0000022748 00000 n
+0000022768 00000 n
+0000023144 00000 n
+0000023165 00000 n
+0000023333 00000 n
+0000023353 00000 n
+0000023729 00000 n
+0000023750 00000 n
+0000023918 00000 n
+0000023938 00000 n
+0000024314 00000 n
+0000024335 00000 n
+0000024503 00000 n
+0000024523 00000 n
+0000024899 00000 n
+0000024920 00000 n
+0000025088 00000 n
+0000025108 00000 n
+0000025484 00000 n
+0000025505 00000 n
+0000025673 00000 n
+0000025693 00000 n
+0000026916 00000 n
+0000026937 00000 n
+0000027050 00000 n
+0000027146 00000 n
+0000027259 00000 n
+0000027355 00000 n
+0000027468 00000 n
+0000027564 00000 n
+0000027660 00000 n
+0000027756 00000 n
+0000027852 00000 n
+0000027948 00000 n
+0000028044 00000 n
+0000028157 00000 n
+0000028253 00000 n
+0000028349 00000 n
+0000028446 00000 n
+0000028543 00000 n
+0000028640 00000 n
+0000028737 00000 n
+0000028834 00000 n
+0000028931 00000 n
+0000029028 00000 n
+0000029125 00000 n
+0000029239 00000 n
+0000029336 00000 n
+0000029433 00000 n
+0000029530 00000 n
+0000029627 00000 n
+0000029724 00000 n
+0000029821 00000 n
+0000029918 00000 n
+0000030015 00000 n
+0000030112 00000 n
+0000030209 00000 n
+0000030323 00000 n
+0000030420 00000 n
+0000030517 00000 n
+0000030614 00000 n
+0000030734 00000 n
+0000030831 00000 n
+0000030928 00000 n
+0000031025 00000 n
+0000031122 00000 n
+0000031219 00000 n
+0000031339 00000 n
+0000031437 00000 n
+0000031535 00000 n
+0000031633 00000 n
+0000031731 00000 n
+0000031829 00000 n
+0000031927 00000 n
+0000032025 00000 n
+0000032123 00000 n
+0000032221 00000 n
+0000032319 00000 n
+0000032417 00000 n
+0000032515 00000 n
+0000032613 00000 n
+0000032711 00000 n
+0000032809 00000 n
+0000033054 00000 n
+0000033815 00000 n
+0000033837 00000 n
+0000034053 00000 n
+0000034297 00000 n
+0000034938 00000 n
+0000034960 00000 n
+0000035175 00000 n
+0000035232 00000 n
+0000035289 00000 n
+0000035346 00000 n
+0000035403 00000 n
+0000035460 00000 n
+0000035517 00000 n
+0000035574 00000 n
+0000035631 00000 n
+0000035688 00000 n
+0000035745 00000 n
+0000035802 00000 n
+0000035859 00000 n
+0000035916 00000 n
+0000035973 00000 n
+0000036030 00000 n
+0000036087 00000 n
+0000036144 00000 n
+0000036201 00000 n
+0000036258 00000 n
+0000036315 00000 n
+0000036372 00000 n
+0000036429 00000 n
+0000036486 00000 n
+0000036543 00000 n
+0000036600 00000 n
+0000036657 00000 n
+0000036714 00000 n
+0000036771 00000 n
+0000036828 00000 n
+0000036885 00000 n
+0000036942 00000 n
+0000036999 00000 n
+0000037056 00000 n
+0000037113 00000 n
+0000037170 00000 n
+0000037227 00000 n
+0000037284 00000 n
+0000037341 00000 n
+0000037398 00000 n
+0000037455 00000 n
+0000037512 00000 n
+0000037569 00000 n
+0000037626 00000 n
+0000037683 00000 n
+0000053965 00000 n
+0000053989 00000 n
+0000065175 00000 n
+trailer <<
+ /DocChecksum /CC322E136FE95DECF8BC297B1A9B2C2E
+ /Info 2 0 R
+ /Root 1 0 R
+ /Size 201
+ /ID [<f8abc47bb1df544a0df9c15a75ef0046><31415926535897932384626433832795>]
+>>
+startxref
+65199
+%%EOF
diff --git a/qpdf/qtest/qpdf/json-need-appearances-acroform.out b/qpdf/qtest/qpdf/json-need-appearances-acroform.out
index 2ec555c4..bbd094e6 100644
--- a/qpdf/qtest/qpdf/json-need-appearances-acroform.out
+++ b/qpdf/qtest/qpdf/json-need-appearances-acroform.out
@@ -321,7 +321,7 @@
"parent": null,
"partialname": "list1",
"quadding": 0,
- "value": "five"
+ "value": "six"
},
{
"alternativename": "drop1",
diff --git a/qpdf/qtest/qpdf/more-choices.pdf b/qpdf/qtest/qpdf/more-choices.pdf
new file mode 100644
index 00000000..fc670c1d
--- /dev/null
+++ b/qpdf/qtest/qpdf/more-choices.pdf
@@ -0,0 +1,3788 @@
+%PDF-1.5
+%
+%QDF-1.0
+
+1 0 obj
+<<
+ /AcroForm <<
+ /DR 3 0 R
+ /Fields [
+ 4 0 R
+ 5 0 R
+ 6 0 R
+ 7 0 R
+ 8 0 R
+ 9 0 R
+ 10 0 R
+ 11 0 R
+ 12 0 R
+ 13 0 R
+ 14 0 R
+ ]
+ /NeedAppearances true
+ >>
+ /Lang (en-US)
+ /MarkInfo <<
+ /Marked true
+ >>
+ /OpenAction [
+ 15 0 R
+ /XYZ
+ null
+ null
+ 0
+ ]
+ /Pages 16 0 R
+ /StructTreeRoot 17 0 R
+ /Type /Catalog
+>>
+endobj
+
+2 0 obj
+<<
+ /CreationDate (D:20190103125434-05'00')
+ /Creator <feff005700720069007400650072>
+ /Producer <feff004c0069006200720065004f0066006600690063006500200036002e0031>
+>>
+endobj
+
+3 0 obj
+<<
+ /Font 18 0 R
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+>>
+endobj
+
+4 0 obj
+<<
+ /AP <<
+ /N 19 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Tx
+ /P 15 0 R
+ /Rect [
+ 123.499
+ 689.901
+ 260.801
+ 704.699
+ ]
+ /Subtype /Widget
+ /T (text)
+ /Type /Annot
+ /V <feff006100620063>
+>>
+endobj
+
+5 0 obj
+<<
+ /DV /1
+ /FT /Btn
+ /Ff 49152
+ /Kids [
+ 21 0 R
+ 22 0 R
+ 23 0 R
+ ]
+ /P 15 0 R
+ /T (r1)
+ /V /2
+>>
+endobj
+
+6 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 24 0 R
+ /Yes 26 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Off
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 554.301
+ 130.701
+ 566.349
+ ]
+ /Subtype /Widget
+ /T (checkbox1)
+ /Type /Annot
+ /V /Off
+>>
+endobj
+
+7 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 29 0 R
+ /Yes 31 0 R
+ >>
+ >>
+ /AS /Yes
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Yes
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 527.751
+ 130.701
+ 539.799
+ ]
+ /Subtype /Widget
+ /T (checkbox2)
+ /Type /Annot
+ /V /Yes
+>>
+endobj
+
+8 0 obj
+<<
+ /AP <<
+ /N <<
+ /Off 33 0 R
+ /Yes 35 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /DV /Off
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (8)
+ >>
+ /P 15 0 R
+ /Rect [
+ 118.649
+ 500.501
+ 130.701
+ 512.549
+ ]
+ /Subtype /Widget
+ /T (checkbox3)
+ /Type /Annot
+ /V /Off
+>>
+endobj
+
+9 0 obj
+<<
+ /DV /2
+ /FT /Btn
+ /Ff 49152
+ /Kids [
+ 37 0 R
+ 38 0 R
+ 39 0 R
+ ]
+ /P 15 0 R
+ /T (r2)
+ /V /2
+>>
+endobj
+
+10 0 obj
+<<
+ /AP <<
+ /N 40 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff00730061006c00610064002003c002ac>
+ /F 4
+ /FT /Tx
+ /P 15 0 R
+ /Rect [
+ 113.649
+ 260.151
+ 351.101
+ 278.099
+ ]
+ /Subtype /Widget
+ /T (text2)
+ /Type /Annot
+ /V <feff00730061006c00610064002003c002ac>
+>>
+endobj
+
+11 0 obj
+<<
+ /AP <<
+ /N 42 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Opt [
+ <feff0031>
+ <feff0032>
+ <feff0033>
+ <feff0034>
+ <feff0066006900760065>
+ <feff007300690078>
+ <feff0073006500760065006e>
+ <feff00650069006700680074>
+ <feff0039>
+ <feff00310030>
+ <feff00310031>
+ <feff00310032>
+ ]
+ /P 15 0 R
+ /Rect [
+ 158.449
+ 156.651
+ 221.001
+ 232.849
+ ]
+ /Subtype /Widget
+ /T (list1)
+ /Type /Annot
+ /V <feff007300690078>
+>>
+endobj
+
+12 0 obj
+<<
+ /AP <<
+ /N 44 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 131072
+ /Opt [
+ <feff006e0069006e0065>
+ <feff00740065006e>
+ <feff0065006c0065007000680061006e0074>
+ <feff007400770065006c00760065>
+ ]
+ /P 15 0 R
+ /Rect [
+ 159.149
+ 107.251
+ 244.201
+ 130.949
+ ]
+ /Subtype /Widget
+ /T (drop1)
+ /Type /Annot
+ /V <feff0065006c0065007000680061006e0074>
+>>
+endobj
+
+13 0 obj
+<<
+ /AP <<
+ /N 46 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 393216
+ /Opt [
+ <feff006f006e0065>
+ <feff00740077006f>
+ <feff00700069>
+ <feff0066006f00750072>
+ ]
+ /P 15 0 R
+ /Rect [
+ 403.949
+ 159.401
+ 459.001
+ 232.849
+ ]
+ /Subtype /Widget
+ /T (combolist1)
+ /Type /Annot
+ /V <feff00700069>
+>>
+endobj
+
+14 0 obj
+<<
+ /AP <<
+ /N 48 0 R
+ >>
+ /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf)
+ /DR <<
+ /Font 18 0 R
+ >>
+ /DV <feff>
+ /F 4
+ /FT /Ch
+ /Ff 393216
+ /Opt [
+ <feff0061006c007000680061>
+ <feff0062006500740061>
+ <feff00670061006d006d0061>
+ <feff00640065006c00740061>
+ ]
+ /P 15 0 R
+ /Rect [
+ 404.599
+ 101.451
+ 476.701
+ 135.349
+ ]
+ /Subtype /Widget
+ /T (combodrop1)
+ /Type /Annot
+ /V <feff00640065006c00740061>
+>>
+endobj
+
+%% Page 1
+15 0 obj
+<<
+ /Annots [
+ 4 0 R
+ 21 0 R
+ 22 0 R
+ 23 0 R
+ 6 0 R
+ 7 0 R
+ 8 0 R
+ 37 0 R
+ 38 0 R
+ 39 0 R
+ 10 0 R
+ 13 0 R
+ 11 0 R
+ 12 0 R
+ 14 0 R
+ 197 0 R
+ 198 0 R
+ ]
+ /Contents 50 0 R
+ /Group <<
+ /CS /DeviceRGB
+ /I true
+ /S /Transparency
+ >>
+ /MediaBox [
+ 0
+ 0
+ 612
+ 792
+ ]
+ /Parent 16 0 R
+ /Resources 3 0 R
+ /StructParents 0
+ /Type /Page
+>>
+endobj
+
+16 0 obj
+<<
+ /Count 1
+ /Kids [
+ 15 0 R
+ ]
+ /MediaBox [
+ 0
+ 0
+ 612
+ 792
+ ]
+ /Resources 3 0 R
+ /Type /Pages
+>>
+endobj
+
+17 0 obj
+<<
+ /K [
+ 52 0 R
+ ]
+ /ParentTree 53 0 R
+ /RoleMap <<
+ /Document /Document
+ /Standard /P
+ >>
+ /Type /StructTreeRoot
+>>
+endobj
+
+18 0 obj
+<<
+ /F1 54 0 R
+ /F2 55 0 R
+ /F3 56 0 R
+ /F4 57 0 R
+ /ZaDi 28 0 R
+>>
+endobj
+
+19 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 137.3
+ 14.8
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 20 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+20 0 obj
+12
+endobj
+
+21 0 obj
+<<
+ /AP <<
+ /N <<
+ /1 58 0 R
+ /Off 60 0 R
+ >>
+ >>
+ /AS /1
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 152.749
+ 648.501
+ 164.801
+ 660.549
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+22 0 obj
+<<
+ /AP <<
+ /N <<
+ /2 62 0 R
+ /Off 64 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 152.749
+ 627.301
+ 164.801
+ 639.349
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+23 0 obj
+<<
+ /AP <<
+ /N <<
+ /3 66 0 R
+ /Off 68 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 5 0 R
+ /Rect [
+ 151.399
+ 606.501
+ 163.451
+ 618.549
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+24 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 25 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+25 0 obj
+12
+endobj
+
+26 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 27 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+27 0 obj
+82
+endobj
+
+28 0 obj
+<<
+ /BaseFont /ZapfDingbats
+ /Subtype /Type1
+ /Type /Font
+>>
+endobj
+
+29 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 30 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+30 0 obj
+12
+endobj
+
+31 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 32 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+32 0 obj
+82
+endobj
+
+33 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 34 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+34 0 obj
+12
+endobj
+
+35 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 36 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+1.9 1.9 Td (8) Tj
+ET
+Q
+EMC
+endstream
+endobj
+
+36 0 obj
+82
+endobj
+
+37 0 obj
+<<
+ /AP <<
+ /N <<
+ /1 70 0 R
+ /Off 72 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 118.649
+ 388.101
+ 130.701
+ 400.149
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+38 0 obj
+<<
+ /AP <<
+ /N <<
+ /2 74 0 R
+ /Off 76 0 R
+ >>
+ >>
+ /AS /2
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 119.349
+ 362.201
+ 131.401
+ 374.249
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+39 0 obj
+<<
+ /AP <<
+ /N <<
+ /3 78 0 R
+ /Off 80 0 R
+ >>
+ >>
+ /AS /Off
+ /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
+ /DR <<
+ /Font <<
+ /ZaDi 28 0 R
+ >>
+ >>
+ /F 4
+ /FT /Btn
+ /MK <<
+ /CA (l)
+ >>
+ /P 15 0 R
+ /Parent 9 0 R
+ /Rect [
+ 119.349
+ 333.551
+ 131.401
+ 345.599
+ ]
+ /Subtype /Widget
+ /Type /Annot
+>>
+endobj
+
+40 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 237.45
+ 17.95
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 41 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+41 0 obj
+12
+endobj
+
+42 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 62.55
+ 76.2
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 43 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 62.55 76.2 re f*
+/Tx BMC
+EMC
+endstream
+endobj
+
+43 0 obj
+46
+endobj
+
+44 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 85.05
+ 23.7
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 45 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 85.05 23.7 re f*
+/Tx BMC
+EMC
+endstream
+endobj
+
+45 0 obj
+46
+endobj
+
+46 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 55.05
+ 73.45
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 47 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 55.05 73.45 re f*
+/Tx BMC
+EMC
+endstream
+endobj
+
+47 0 obj
+47
+endobj
+
+48 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 72.1
+ 33.9
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 49 0 R
+>>
+stream
+1 1 1 rg
+0 -0.05 72.1 33.9 re f*
+/Tx BMC
+EMC
+endstream
+endobj
+
+49 0 obj
+45
+endobj
+
+%% Contents for page 1
+50 0 obj
+<<
+ /Length 51 0 R
+>>
+stream
+0.1 w
+/Artifact BMC
+q 0 0.028 611.971 791.971 re
+W* n
+EMC
+/Standard<</MCID 0>>BDC
+q 0 0 0 rg
+BT
+56.8 724.1 Td /F1 12 Tf[<01>1<0203>1<0403>1<05>58<06>-10<0708>2<09070a0b0408>2(\f)]TJ
+ET
+Q
+EMC
+/Standard<</MCID 1>>BDC
+q 0 0 0 rg
+BT
+56.8 693 Td /F1 12 Tf[(\r)68<03>1<0e0f>2<0710>-1<11>2<03>1<12>2<13>-7<0707070707>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 2>>BDC
+q 0 0 0 rg
+BT
+56.8 661.9 Td /F1 12 Tf[<0414>1<1311>2<0b0715>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 3>>BDC
+q 0 0 0 rg
+BT
+56.8 565.3 Td /F1 12 Tf[<16>1<0203>1<16>1<17>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 4>>BDC
+q 0 0 0 rg
+BT
+56.8 413.5 Td /F1 12 Tf[<0414>1<1311>2<0b0718>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 5>>BDC
+q 0 0 0 rg
+BT
+56.8 261.7 Td /F1 12 Tf[<19>-1<0b0f>2<14>1<0f>2<0b>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 6>>BDC
+q 0 0 0 rg
+BT
+56.8 206.5 Td /F1 12 Tf[<1a>2<11>2<06>-2<0f>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 7>>BDC
+q 0 0 0 rg
+BT
+269.5 206.5 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0712>2<11>2<06>-2<0f>]TJ
+ET
+Q
+EMC
+/Standard<</MCID 8>>BDC
+q 0 0 0 rg
+BT
+56.8 123.7 Td /F1 12 Tf[<1d>5<040b1e130b1f>-2( )]TJ
+ET
+Q
+EMC
+/Standard<</MCID 9>>BDC
+q 0 0 0 rg
+BT
+269.5 123.7 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0713040b1e130b1f>-2( )]TJ
+ET
+Q
+EMC
+/Form<</MCID 10>>BDC
+0 0 0 RG
+1 1 1 rg
+120.5 686.9 143.3 20.8 re B*
+EMC
+/Form<</MCID 11>>BDC
+151.55 642.6 183.45 23.9 re f*
+q 1.2 w 0 0 0 RG
+158.75 660.55 m 162.1 660.55 164.8 657.9 164.8 654.55 c
+164.8 651.2 162.1 648.5 158.75 648.5 c
+155.4 648.5 152.75 651.2 152.75 654.55 c
+152.75 657.9 155.4 660.55 158.75 660.55 c s
+ Q
+q 169.6 642.6 164.25 23.9 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+169.6 650.3 Td /F3 12 Tf[<0102>-1<0304>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 12>>BDC
+1 1 1 rg
+151.55 624.8 125.5 17.1 re f*
+q 1.2 w 0 0 0 RG
+158.75 639.35 m 162.1 639.35 164.8 636.7 164.8 633.35 c
+164.8 630 162.1 627.3 158.75 627.3 c
+155.4 627.3 152.75 630 152.75 633.35 c
+152.75 636.7 155.4 639.35 158.75 639.35 c s
+ Q
+q 169.6 624.8 106.3 17.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+169.6 629.1 Td /F3 12 Tf[<0102>-1<0305>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 13>>BDC
+1 1 1 rg
+150.2 605.7 118.7 13.7 re f*
+q 1.2 w 0 0 0 RG
+157.4 618.55 m 160.75 618.55 163.45 615.9 163.45 612.55 c
+163.45 609.2 160.75 606.5 157.4 606.5 c
+154.05 606.5 151.4 609.2 151.4 612.55 c
+151.4 615.9 154.05 618.55 157.4 618.55 c s
+ Q
+q 168.25 605.7 99.5 13.7 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+168.3 608.3 Td /F3 12 Tf[<0102>-1<0306>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 14>>BDC
+1 1 1 rg
+117.45 544.3 86.65 32.1 re f*
+q 1.2 w 0 0 0 RG
+118.65 554.3 12.05 12.05 re S
+ Q
+q 135.5 544.3 67.45 32.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 556.1 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 15>>BDC
+1 1 1 rg
+117.45 523.2 85.3 21.15 re f*
+q 1.2 w 0 0 0 RG
+118.65 527.75 12.05 12.05 re S
+ Q
+q 135.5 523.2 66.1 21.15 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 529.6 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<0f>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 16>>BDC
+1 1 1 rg
+117.45 498 72.35 17.1 re f*
+q 1.2 w 0 0 0 RG
+118.65 500.5 12.05 12.05 re S
+ Q
+q 135.5 498 53.15 17.1 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 502.3 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<10>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 17>>BDC
+1 1 1 rg
+117.45 378.75 169.15 30.75 re f*
+q 1.2 w 0 0 0 RG
+124.65 400.15 m 128 400.15 130.7 397.5 130.7 394.15 c
+130.7 390.8 128 388.1 124.65 388.1 c
+121.3 388.1 118.65 390.8 118.65 394.15 c
+118.65 397.5 121.3 400.15 124.65 400.15 c s
+ Q
+q 135.5 378.75 149.95 30.75 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+135.5 389.9 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 18>>BDC
+1 1 1 rg
+118.15 352.85 180.7 30.75 re f*
+q 1.2 w 0 0 0 RG
+125.35 374.25 m 128.7 374.25 131.4 371.6 131.4 368.25 c
+131.4 364.9 128.7 362.2 125.35 362.2 c
+122 362.2 119.35 364.9 119.35 368.25 c
+119.35 371.6 122 374.25 125.35 374.25 c s
+ Q
+q 136.2 352.85 161.5 30.75 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+136.2 364 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<0f>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 19>>BDC
+1 1 1 rg
+118.15 322.85 139.15 33.5 re f*
+q 1.2 w 0 0 0 RG
+125.35 345.6 m 128.7 345.6 131.4 342.95 131.4 339.6 c
+131.4 336.25 128.7 333.55 125.35 333.55 c
+122 333.55 119.35 336.25 119.35 339.6 c
+119.35 342.95 122 345.6 125.35 345.6 c s
+ Q
+q 136.2 322.85 119.95 33.5 re W* n
+q 0.18039 0.20392 0.21176 rg
+BT
+136.2 335.4 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<10>]TJ
+ET
+Q
+Q
+EMC
+/Form<</MCID 20>>BDC
+0 0 0 RG
+1 1 1 rg
+110.65 257.15 243.45 23.95 re B*
+EMC
+/Form<</MCID 21>>BDC
+155.95 154.15 67.55 81.2 re B*
+EMC
+/Form<</MCID 22>>BDC
+156.65 104.75 90.05 28.7 re B*
+EMC
+/Form<</MCID 23>>BDC
+401.45 156.9 60.05 78.45 re B*
+EMC
+/Form<</MCID 24>>BDC
+402.1 98.95 77.1 38.9 re B*
+EMC
+Q
+endstream
+endobj
+
+%QDF: ignore_newline
+51 0 obj
+4747
+endobj
+
+52 0 obj
+<<
+ /K [
+ 82 0 R
+ 83 0 R
+ 84 0 R
+ 85 0 R
+ 86 0 R
+ 87 0 R
+ 88 0 R
+ 89 0 R
+ 90 0 R
+ 91 0 R
+ 92 0 R
+ 93 0 R
+ 94 0 R
+ 95 0 R
+ 96 0 R
+ 97 0 R
+ 98 0 R
+ 99 0 R
+ 100 0 R
+ 101 0 R
+ 102 0 R
+ 103 0 R
+ 104 0 R
+ 105 0 R
+ 106 0 R
+ 107 0 R
+ 108 0 R
+ 109 0 R
+ 110 0 R
+ 111 0 R
+ 112 0 R
+ 113 0 R
+ 114 0 R
+ 115 0 R
+ 116 0 R
+ 117 0 R
+ 118 0 R
+ 119 0 R
+ 120 0 R
+ 121 0 R
+ 122 0 R
+ 123 0 R
+ 124 0 R
+ 125 0 R
+ 126 0 R
+ 127 0 R
+ 128 0 R
+ 129 0 R
+ 130 0 R
+ 131 0 R
+ 132 0 R
+ 133 0 R
+ 134 0 R
+ 135 0 R
+ 136 0 R
+ 137 0 R
+ 138 0 R
+ 139 0 R
+ 140 0 R
+ ]
+ /P 17 0 R
+ /Pg 15 0 R
+ /S /Document
+ /Type /StructElem
+>>
+endobj
+
+53 0 obj
+<<
+ /Nums [
+ 0
+ [
+ 82 0 R
+ 84 0 R
+ 86 0 R
+ 93 0 R
+ 104 0 R
+ 115 0 R
+ 119 0 R
+ 119 0 R
+ 125 0 R
+ 125 0 R
+ 126 0 R
+ 127 0 R
+ 128 0 R
+ 129 0 R
+ 130 0 R
+ 131 0 R
+ 132 0 R
+ 133 0 R
+ 134 0 R
+ 135 0 R
+ 136 0 R
+ 137 0 R
+ 138 0 R
+ 139 0 R
+ 140 0 R
+ ]
+ ]
+>>
+endobj
+
+54 0 obj
+<<
+ /BaseFont /BAAAAA+LiberationSerif
+ /FirstChar 0
+ /FontDescriptor 141 0 R
+ /LastChar 32
+ /Subtype /TrueType
+ /ToUnicode 142 0 R
+ /Type /Font
+ /Widths [
+ 777
+ 943
+ 500
+ 443
+ 333
+ 333
+ 389
+ 250
+ 777
+ 500
+ 333
+ 500
+ 443
+ 610
+ 500
+ 277
+ 556
+ 277
+ 277
+ 500
+ 443
+ 500
+ 443
+ 500
+ 500
+ 556
+ 610
+ 666
+ 500
+ 722
+ 500
+ 722
+ 500
+ ]
+>>
+endobj
+
+55 0 obj
+<<
+ /BaseFont /LiberationSans
+ /Encoding /WinAnsiEncoding
+ /FirstChar 32
+ /FontDescriptor 144 0 R
+ /LastChar 255
+ /Subtype /TrueType
+ /Type /Font
+ /Widths [
+ 277
+ 277
+ 354
+ 556
+ 556
+ 889
+ 666
+ 190
+ 333
+ 333
+ 389
+ 583
+ 277
+ 333
+ 277
+ 277
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 277
+ 277
+ 583
+ 583
+ 583
+ 556
+ 1015
+ 666
+ 666
+ 722
+ 722
+ 666
+ 610
+ 777
+ 722
+ 277
+ 500
+ 666
+ 556
+ 833
+ 722
+ 777
+ 666
+ 777
+ 722
+ 666
+ 610
+ 722
+ 666
+ 943
+ 666
+ 666
+ 610
+ 277
+ 277
+ 277
+ 469
+ 556
+ 333
+ 556
+ 556
+ 500
+ 556
+ 556
+ 277
+ 556
+ 556
+ 222
+ 222
+ 500
+ 222
+ 833
+ 556
+ 556
+ 556
+ 556
+ 333
+ 500
+ 277
+ 556
+ 500
+ 722
+ 500
+ 500
+ 500
+ 333
+ 259
+ 333
+ 583
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 277
+ 333
+ 556
+ 556
+ 556
+ 556
+ 259
+ 556
+ 333
+ 736
+ 370
+ 556
+ 583
+ 333
+ 736
+ 552
+ 399
+ 548
+ 333
+ 333
+ 333
+ 576
+ 537
+ 333
+ 333
+ 333
+ 365
+ 556
+ 833
+ 833
+ 833
+ 610
+ 666
+ 666
+ 666
+ 666
+ 666
+ 666
+ 1000
+ 722
+ 666
+ 666
+ 666
+ 666
+ 277
+ 277
+ 277
+ 277
+ 722
+ 722
+ 777
+ 777
+ 777
+ 777
+ 777
+ 583
+ 777
+ 722
+ 722
+ 722
+ 722
+ 666
+ 666
+ 610
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 889
+ 500
+ 556
+ 556
+ 556
+ 556
+ 277
+ 277
+ 277
+ 277
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 556
+ 548
+ 610
+ 556
+ 556
+ 556
+ 556
+ 500
+ 556
+ 500
+ ]
+>>
+endobj
+
+56 0 obj
+<<
+ /BaseFont /DAAAAA+LiberationSans
+ /FirstChar 0
+ /FontDescriptor 145 0 R
+ /LastChar 22
+ /Subtype /TrueType
+ /ToUnicode 146 0 R
+ /Type /Font
+ /Widths [
+ 750
+ 333
+ 556
+ 333
+ 556
+ 556
+ 500
+ 722
+ 556
+ 556
+ 500
+ 277
+ 666
+ 556
+ 500
+ 556
+ 556
+ 777
+ 556
+ 277
+ 222
+ 556
+ 556
+ ]
+>>
+endobj
+
+57 0 obj
+<<
+ /BaseFont /DejaVuSans
+ /Encoding /WinAnsiEncoding
+ /FirstChar 32
+ /FontDescriptor 148 0 R
+ /LastChar 255
+ /Subtype /TrueType
+ /Type /Font
+ /Widths [
+ 317
+ 400
+ 459
+ 837
+ 636
+ 950
+ 779
+ 274
+ 390
+ 390
+ 500
+ 837
+ 317
+ 360
+ 317
+ 336
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 636
+ 336
+ 336
+ 837
+ 837
+ 837
+ 530
+ 1000
+ 684
+ 686
+ 698
+ 770
+ 631
+ 575
+ 774
+ 751
+ 294
+ 294
+ 655
+ 557
+ 862
+ 748
+ 787
+ 603
+ 787
+ 694
+ 634
+ 610
+ 731
+ 684
+ 988
+ 685
+ 610
+ 685
+ 390
+ 336
+ 390
+ 837
+ 500
+ 500
+ 612
+ 634
+ 549
+ 634
+ 615
+ 352
+ 634
+ 633
+ 277
+ 277
+ 579
+ 277
+ 974
+ 633
+ 611
+ 634
+ 634
+ 411
+ 520
+ 392
+ 633
+ 591
+ 817
+ 591
+ 591
+ 524
+ 636
+ 336
+ 636
+ 837
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 317
+ 400
+ 636
+ 636
+ 636
+ 636
+ 336
+ 500
+ 500
+ 1000
+ 471
+ 611
+ 837
+ 360
+ 1000
+ 500
+ 500
+ 837
+ 400
+ 400
+ 500
+ 636
+ 636
+ 317
+ 500
+ 400
+ 471
+ 611
+ 969
+ 969
+ 969
+ 530
+ 684
+ 684
+ 684
+ 684
+ 684
+ 684
+ 974
+ 698
+ 631
+ 631
+ 631
+ 631
+ 294
+ 294
+ 294
+ 294
+ 774
+ 748
+ 787
+ 787
+ 787
+ 787
+ 787
+ 837
+ 787
+ 731
+ 731
+ 731
+ 731
+ 610
+ 604
+ 629
+ 612
+ 612
+ 612
+ 612
+ 612
+ 612
+ 981
+ 549
+ 615
+ 615
+ 615
+ 615
+ 277
+ 277
+ 277
+ 277
+ 611
+ 633
+ 611
+ 611
+ 611
+ 611
+ 611
+ 837
+ 611
+ 633
+ 633
+ 633
+ 633
+ 591
+ 634
+ 591
+ ]
+>>
+endobj
+
+58 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 59 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+59 0 obj
+220
+endobj
+
+60 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 61 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+61 0 obj
+12
+endobj
+
+62 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 63 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+63 0 obj
+220
+endobj
+
+64 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 65 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+65 0 obj
+12
+endobj
+
+66 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 67 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+67 0 obj
+220
+endobj
+
+68 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 69 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+69 0 obj
+12
+endobj
+
+70 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 71 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+71 0 obj
+220
+endobj
+
+72 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 73 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+73 0 obj
+12
+endobj
+
+74 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 75 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+75 0 obj
+220
+endobj
+
+76 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 77 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+77 0 obj
+12
+endobj
+
+78 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 79 0 R
+>>
+stream
+/Tx BMC
+q BT
+0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
+0 0 Td
+ET
+Q
+0.18039 0.20392 0.21176 rg
+6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
+8.45 4.65 7.35 3.55 6 3.55 c
+4.65 3.55 3.6 4.65 3.6 6 c
+3.6 7.35 4.65 8.4 6 8.4 c f*
+
+EMC
+endstream
+endobj
+
+79 0 obj
+220
+endobj
+
+80 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 12.05
+ 12.05
+ ]
+ /Resources 3 0 R
+ /Subtype /Form
+ /Type /XObject
+ /Length 81 0 R
+>>
+stream
+/Tx BMC
+EMC
+endstream
+endobj
+
+81 0 obj
+12
+endobj
+
+82 0 obj
+<<
+ /A 149 0 R
+ /K [
+ 0
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+83 0 obj
+<<
+ /A 150 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+84 0 obj
+<<
+ /A 151 0 R
+ /K [
+ 1
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+85 0 obj
+<<
+ /A 152 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+86 0 obj
+<<
+ /A 153 0 R
+ /K [
+ 2
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+87 0 obj
+<<
+ /A 154 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+88 0 obj
+<<
+ /A 155 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+89 0 obj
+<<
+ /A 156 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+90 0 obj
+<<
+ /A 157 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+91 0 obj
+<<
+ /A 158 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+92 0 obj
+<<
+ /A 159 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+93 0 obj
+<<
+ /A 160 0 R
+ /K [
+ 3
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+94 0 obj
+<<
+ /A 161 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+95 0 obj
+<<
+ /A 162 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+96 0 obj
+<<
+ /A 163 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+97 0 obj
+<<
+ /A 164 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+98 0 obj
+<<
+ /A 165 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+99 0 obj
+<<
+ /A 166 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+100 0 obj
+<<
+ /A 167 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+101 0 obj
+<<
+ /A 168 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+102 0 obj
+<<
+ /A 169 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+103 0 obj
+<<
+ /A 170 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+104 0 obj
+<<
+ /A 171 0 R
+ /K [
+ 4
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+105 0 obj
+<<
+ /A 172 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+106 0 obj
+<<
+ /A 173 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+107 0 obj
+<<
+ /A 174 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+108 0 obj
+<<
+ /A 175 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+109 0 obj
+<<
+ /A 176 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+110 0 obj
+<<
+ /A 177 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+111 0 obj
+<<
+ /A 178 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+112 0 obj
+<<
+ /A 179 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+113 0 obj
+<<
+ /A 180 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+114 0 obj
+<<
+ /A 181 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+115 0 obj
+<<
+ /A 182 0 R
+ /K [
+ 5
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+116 0 obj
+<<
+ /A 183 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+117 0 obj
+<<
+ /A 184 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+118 0 obj
+<<
+ /A 185 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+119 0 obj
+<<
+ /A 186 0 R
+ /K [
+ 6
+ 7
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+120 0 obj
+<<
+ /A 187 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+121 0 obj
+<<
+ /A 188 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+122 0 obj
+<<
+ /A 189 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+123 0 obj
+<<
+ /A 190 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+124 0 obj
+<<
+ /A 191 0 R
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+125 0 obj
+<<
+ /A 192 0 R
+ /K [
+ 8
+ 9
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Standard
+ /Type /StructElem
+>>
+endobj
+
+126 0 obj
+<<
+ /K [
+ 10
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+127 0 obj
+<<
+ /K [
+ 11
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+128 0 obj
+<<
+ /K [
+ 12
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+129 0 obj
+<<
+ /K [
+ 13
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+130 0 obj
+<<
+ /K [
+ 14
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+131 0 obj
+<<
+ /K [
+ 15
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+132 0 obj
+<<
+ /K [
+ 16
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+133 0 obj
+<<
+ /K [
+ 17
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+134 0 obj
+<<
+ /K [
+ 18
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+135 0 obj
+<<
+ /K [
+ 19
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+136 0 obj
+<<
+ /K [
+ 20
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+137 0 obj
+<<
+ /K [
+ 21
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+138 0 obj
+<<
+ /K [
+ 22
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+139 0 obj
+<<
+ /K [
+ 23
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+140 0 obj
+<<
+ /K [
+ 24
+ ]
+ /P 52 0 R
+ /Pg 15 0 R
+ /S /Form
+ /Type /StructElem
+>>
+endobj
+
+141 0 obj
+<<
+ /Ascent 891
+ /CapHeight 981
+ /Descent -216
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1277
+ 981
+ ]
+ /FontFile2 193 0 R
+ /FontName /BAAAAA+LiberationSerif
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+142 0 obj
+<<
+ /Length 143 0 R
+>>
+stream
+/CIDInit/ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo<<
+/Registry (Adobe)
+/Ordering (UCS)
+/Supplement 0
+>> def
+/CMapName/Adobe-Identity-UCS def
+/CMapType 2 def
+1 begincodespacerange
+<00> <FF>
+endcodespacerange
+32 beginbfchar
+<01> <0057>
+<02> <0068>
+<03> <0065>
+<04> <0072>
+<05> <2019>
+<06> <0073>
+<07> <0020>
+<08> <006D>
+<09> <0079>
+<0A> <0066>
+<0B> <006F>
+<0C> <003F>
+<0D> <0054>
+<0E> <0078>
+<0F> <0074>
+<10> <0046>
+<11> <0069>
+<12> <006C>
+<13> <0064>
+<14> <0061>
+<15> <0031>
+<16> <0063>
+<17> <006B>
+<18> <0032>
+<19> <0050>
+<1A> <004C>
+<1B> <0043>
+<1C> <0062>
+<1D> <0044>
+<1E> <0070>
+<1F> <0077>
+<20> <006E>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+endstream
+endobj
+
+143 0 obj
+702
+endobj
+
+144 0 obj
+<<
+ /Ascent 905
+ /CapHeight 979
+ /Descent -211
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1300
+ 979
+ ]
+ /FontName /LiberationSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+145 0 obj
+<<
+ /Ascent 905
+ /CapHeight 979
+ /Descent -211
+ /Flags 4
+ /FontBBox [
+ -543
+ -303
+ 1300
+ 979
+ ]
+ /FontFile2 195 0 R
+ /FontName /DAAAAA+LiberationSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+146 0 obj
+<<
+ /Length 147 0 R
+>>
+stream
+/CIDInit/ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo<<
+/Registry (Adobe)
+/Ordering (UCS)
+/Supplement 0
+>> def
+/CMapName/Adobe-Identity-UCS def
+/CMapType 2 def
+1 begincodespacerange
+<00> <FF>
+endcodespacerange
+22 beginbfchar
+<01> <0072>
+<02> <0031>
+<03> <002D>
+<04> <0061>
+<05> <0062>
+<06> <0063>
+<07> <0043>
+<08> <0068>
+<09> <0065>
+<0A> <006B>
+<0B> <0020>
+<0C> <0042>
+<0D> <006F>
+<0E> <0078>
+<0F> <0032>
+<10> <0033>
+<11> <004F>
+<12> <0070>
+<13> <0074>
+<14> <0069>
+<15> <006E>
+<16> <0075>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+endstream
+endobj
+
+147 0 obj
+582
+endobj
+
+148 0 obj
+<<
+ /Ascent 928
+ /CapHeight 1232
+ /Descent -235
+ /Flags 4
+ /FontBBox [
+ -1020
+ -462
+ 1792
+ 1232
+ ]
+ /FontName /DejaVuSans
+ /ItalicAngle 0
+ /StemV 80
+ /Type /FontDescriptor
+>>
+endobj
+
+149 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+150 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+151 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+152 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+153 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+154 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+155 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+156 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+157 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+158 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+159 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+160 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+161 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+162 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+163 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+164 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+165 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+166 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+167 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+168 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+169 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+170 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+171 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+172 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+173 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+174 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+175 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+176 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+177 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+178 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+179 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+180 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+181 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+182 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+183 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+184 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+185 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+186 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+187 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+188 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+189 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+190 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+191 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+192 0 obj
+<<
+ /O /Layout
+ /Placement /Block
+>>
+endobj
+
+193 0 obj
+<<
+ /Length1 16184
+ /Length 194 0 R
+>>
+stream
+true
+{
+ 
+
+
+
+ 
+C#Ce
+-,
+ C#C -,
+-, i@a
+@@ @  CTX@
+#eB #B#?
+
+ H 
+_Y @
+ H 
+ PY
+_@qrr
+ 6A--XSY-- -
+PY
+
+@adH$4Dd $D
+9$d$!H@*H@
+ PY  
++,@@,-@@:-- -
+ PY
+"QYPY 
+PY
+
+
+sYvY@
+
+ `Y `Y_Y
+ _Y o/oO?/o_8/?^]]]]]]qqqqrr^]]]]]]qqqqqqqrrrrr
+ 
+
+
+
+"#PY PY QY
+
+ H 
+PY @
+ H 
+
+\
+ 4 : * p42
+nQ
+
+Copyright (c) 2012 Red Hat, Inc.Liberation SerifRegularAscender - Liberation SerifLiberation SerifVersion 2.00.2LiberationSerifLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman. Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL
+
+
+endstream
+endobj
+
+%QDF: ignore_newline
+194 0 obj
+16184
+endobj
+
+195 0 obj
+<<
+ /Length1 11088
+ /Length 196 0 R
+>>
+stream
+true
+ 
+ 
+C#Ce
+-,
+ C#C -,
+-, i@a
+@@ @  CTX@
+#eB #B#?
+
+
+
+
+!PY%?%%p%%%%%]]]qqqrr
+6YAXhZ
+
+PY
+]
+
+
+
+
+
+  v D T d 6 $         v d   & F V g F V  d V D 6 $      & 6 F 7f  @6=BH9 " 
+
+
+
+
+r
+iN
+
+Copyright (c) 2012 Red Hat, Inc.Liberation SansRegularAscender - Liberation SansLiberation SansVersion 2.00.2LiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL
+
+O P(F(F*F+_O_ F@FF@36FFUHU2
+endstream
+endobj
+
+%QDF: ignore_newline
+196 0 obj
+11088
+endobj
+
+197 0 obj
+<<
+ /AP <<
+ /N 199 0 R
+ >>
+ /C [
+ 1
+ 1
+ 0
+ ]
+ /CA 1
+ /Contents (Salad)
+ /CreationDate (D:20181231235455Z00'00)
+ /F 28
+ /M (D:20181231235455Z00'00)
+ /Name /Comment
+ /P 15 0 R
+ /Popup 198 0 R
+ /Rect [
+ 435
+ 703
+ 453
+ 721
+ ]
+ /Subtype /Text
+ /T (Jay Berkenbilt)
+ /Type /Annot
+>>
+endobj
+
+198 0 obj
+<<
+ /F 28
+ /Open false
+ /Parent 197 0 R
+ /Rect [
+ 612
+ 601
+ 792
+ 721
+ ]
+ /Subtype /Popup
+ /Type /Annot
+>>
+endobj
+
+199 0 obj
+<<
+ /BBox [
+ 0
+ 0
+ 18
+ 18
+ ]
+ /Resources <<
+ /ExtGState <<
+ /GS0 <<
+ /AIS false
+ /BM /Normal
+ /CA .6
+ /Type /ExtGState
+ /ca .6
+ >>
+ >>
+ >>
+ /Subtype /Form
+ /Type /XObject
+ /Length 200 0 R
+>>
+stream
+q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b
+endstream
+endobj
+
+200 0 obj
+929
+endobj
+
+xref
+0 201
+0000000000 65535 f
+0000000025 00000 n
+0000000439 00000 n
+0000000624 00000 n
+0000000697 00000 n
+0000000997 00000 n
+0000001128 00000 n
+0000001517 00000 n
+0000001906 00000 n
+0000002295 00000 n
+0000002426 00000 n
+0000002780 00000 n
+0000003339 00000 n
+0000003815 00000 n
+0000004236 00000 n
+0000004707 00000 n
+0000005134 00000 n
+0000005273 00000 n
+0000005423 00000 n
+0000005513 00000 n
+0000005680 00000 n
+0000005700 00000 n
+0000006064 00000 n
+0000006430 00000 n
+0000006796 00000 n
+0000006964 00000 n
+0000006984 00000 n
+0000007222 00000 n
+0000007242 00000 n
+0000007323 00000 n
+0000007491 00000 n
+0000007511 00000 n
+0000007749 00000 n
+0000007769 00000 n
+0000007937 00000 n
+0000007957 00000 n
+0000008195 00000 n
+0000008215 00000 n
+0000008581 00000 n
+0000008945 00000 n
+0000009311 00000 n
+0000009480 00000 n
+0000009500 00000 n
+0000009701 00000 n
+0000009721 00000 n
+0000009922 00000 n
+0000009942 00000 n
+0000010145 00000 n
+0000010165 00000 n
+0000010364 00000 n
+0000010407 00000 n
+0000015233 00000 n
+0000015255 00000 n
+0000016039 00000 n
+0000016440 00000 n
+0000016891 00000 n
+0000018808 00000 n
+0000019178 00000 n
+0000021092 00000 n
+0000021468 00000 n
+0000021489 00000 n
+0000021657 00000 n
+0000021677 00000 n
+0000022053 00000 n
+0000022074 00000 n
+0000022242 00000 n
+0000022262 00000 n
+0000022638 00000 n
+0000022659 00000 n
+0000022827 00000 n
+0000022847 00000 n
+0000023223 00000 n
+0000023244 00000 n
+0000023412 00000 n
+0000023432 00000 n
+0000023808 00000 n
+0000023829 00000 n
+0000023997 00000 n
+0000024017 00000 n
+0000024393 00000 n
+0000024414 00000 n
+0000024582 00000 n
+0000024602 00000 n
+0000024715 00000 n
+0000024811 00000 n
+0000024924 00000 n
+0000025020 00000 n
+0000025133 00000 n
+0000025229 00000 n
+0000025325 00000 n
+0000025421 00000 n
+0000025517 00000 n
+0000025613 00000 n
+0000025709 00000 n
+0000025822 00000 n
+0000025918 00000 n
+0000026014 00000 n
+0000026110 00000 n
+0000026206 00000 n
+0000026302 00000 n
+0000026398 00000 n
+0000026495 00000 n
+0000026592 00000 n
+0000026689 00000 n
+0000026786 00000 n
+0000026900 00000 n
+0000026997 00000 n
+0000027094 00000 n
+0000027191 00000 n
+0000027288 00000 n
+0000027385 00000 n
+0000027482 00000 n
+0000027579 00000 n
+0000027676 00000 n
+0000027773 00000 n
+0000027870 00000 n
+0000027984 00000 n
+0000028081 00000 n
+0000028178 00000 n
+0000028275 00000 n
+0000028395 00000 n
+0000028492 00000 n
+0000028589 00000 n
+0000028686 00000 n
+0000028783 00000 n
+0000028880 00000 n
+0000029000 00000 n
+0000029098 00000 n
+0000029196 00000 n
+0000029294 00000 n
+0000029392 00000 n
+0000029490 00000 n
+0000029588 00000 n
+0000029686 00000 n
+0000029784 00000 n
+0000029882 00000 n
+0000029980 00000 n
+0000030078 00000 n
+0000030176 00000 n
+0000030274 00000 n
+0000030372 00000 n
+0000030470 00000 n
+0000030715 00000 n
+0000031476 00000 n
+0000031498 00000 n
+0000031714 00000 n
+0000031958 00000 n
+0000032599 00000 n
+0000032621 00000 n
+0000032836 00000 n
+0000032893 00000 n
+0000032950 00000 n
+0000033007 00000 n
+0000033064 00000 n
+0000033121 00000 n
+0000033178 00000 n
+0000033235 00000 n
+0000033292 00000 n
+0000033349 00000 n
+0000033406 00000 n
+0000033463 00000 n
+0000033520 00000 n
+0000033577 00000 n
+0000033634 00000 n
+0000033691 00000 n
+0000033748 00000 n
+0000033805 00000 n
+0000033862 00000 n
+0000033919 00000 n
+0000033976 00000 n
+0000034033 00000 n
+0000034090 00000 n
+0000034147 00000 n
+0000034204 00000 n
+0000034261 00000 n
+0000034318 00000 n
+0000034375 00000 n
+0000034432 00000 n
+0000034489 00000 n
+0000034546 00000 n
+0000034603 00000 n
+0000034660 00000 n
+0000034717 00000 n
+0000034774 00000 n
+0000034831 00000 n
+0000034888 00000 n
+0000034945 00000 n
+0000035002 00000 n
+0000035059 00000 n
+0000035116 00000 n
+0000035173 00000 n
+0000035230 00000 n
+0000035287 00000 n
+0000035344 00000 n
+0000051626 00000 n
+0000051650 00000 n
+0000062836 00000 n
+0000062860 00000 n
+0000063195 00000 n
+0000063338 00000 n
+0000064563 00000 n
+trailer <<
+ /DocChecksum /CC322E136FE95DECF8BC297B1A9B2C2E
+ /Info 2 0 R
+ /Root 1 0 R
+ /Size 201
+ /ID [<f8abc47bb1df544a0df9c15a75ef0046><45201f7a345625a01ccb53b240a8ba8d>]
+>>
+startxref
+64585
+%%EOF
diff --git a/qpdf/qtest/qpdf/need-appearances-out.pdf b/qpdf/qtest/qpdf/need-appearances-out.pdf
index ba6059be..0a6ad049 100644
--- a/qpdf/qtest/qpdf/need-appearances-out.pdf
+++ b/qpdf/qtest/qpdf/need-appearances-out.pdf
@@ -273,7 +273,7 @@ endobj
/Subtype /Widget
/T (list1)
/Type /Annot
- /V <feff0066006900760065>
+ /V <feff007300690078>
>>
endobj
@@ -3617,199 +3617,199 @@ xref
0000002295 00000 n
0000002426 00000 n
0000002780 00000 n
-0000003211 00000 n
-0000003687 00000 n
-0000004108 00000 n
-0000004579 00000 n
-0000005130 00000 n
-0000005204 00000 n
-0000005354 00000 n
-0000005444 00000 n
-0000005611 00000 n
-0000005631 00000 n
-0000005995 00000 n
-0000006361 00000 n
-0000006727 00000 n
-0000006895 00000 n
-0000006915 00000 n
-0000007153 00000 n
-0000007173 00000 n
-0000007254 00000 n
-0000007422 00000 n
-0000007442 00000 n
-0000007680 00000 n
-0000007700 00000 n
-0000007868 00000 n
-0000007888 00000 n
-0000008126 00000 n
-0000008146 00000 n
-0000008512 00000 n
-0000008876 00000 n
-0000009242 00000 n
-0000009411 00000 n
-0000009431 00000 n
-0000009632 00000 n
-0000009652 00000 n
-0000009853 00000 n
-0000009873 00000 n
-0000010076 00000 n
-0000010096 00000 n
-0000010295 00000 n
-0000010315 00000 n
-0000010479 00000 n
-0000010538 00000 n
-0000010580 00000 n
-0000015406 00000 n
-0000015451 00000 n
-0000015579 00000 n
-0000015599 00000 n
-0000016822 00000 n
-0000016843 00000 n
-0000017635 00000 n
-0000018037 00000 n
-0000018488 00000 n
-0000020405 00000 n
-0000020775 00000 n
-0000022689 00000 n
-0000023065 00000 n
-0000023086 00000 n
-0000023254 00000 n
-0000023274 00000 n
-0000023650 00000 n
-0000023671 00000 n
-0000023839 00000 n
-0000023859 00000 n
-0000024235 00000 n
-0000024256 00000 n
-0000024424 00000 n
-0000024444 00000 n
-0000024820 00000 n
-0000024841 00000 n
-0000025009 00000 n
-0000025029 00000 n
-0000025405 00000 n
-0000025426 00000 n
-0000025594 00000 n
-0000025614 00000 n
-0000025990 00000 n
-0000026011 00000 n
-0000026179 00000 n
-0000026199 00000 n
-0000026531 00000 n
-0000026644 00000 n
-0000026740 00000 n
-0000026853 00000 n
-0000026949 00000 n
-0000027062 00000 n
-0000027158 00000 n
-0000027254 00000 n
-0000027350 00000 n
-0000027446 00000 n
-0000027542 00000 n
-0000027639 00000 n
-0000027753 00000 n
-0000027850 00000 n
-0000027947 00000 n
-0000028044 00000 n
-0000028141 00000 n
-0000028238 00000 n
-0000028335 00000 n
-0000028432 00000 n
-0000028529 00000 n
-0000028626 00000 n
-0000028723 00000 n
-0000028837 00000 n
-0000028934 00000 n
-0000029031 00000 n
-0000029128 00000 n
-0000029225 00000 n
-0000029322 00000 n
-0000029419 00000 n
-0000029516 00000 n
-0000029613 00000 n
-0000029710 00000 n
-0000029807 00000 n
-0000029921 00000 n
-0000030018 00000 n
-0000030115 00000 n
-0000030212 00000 n
-0000030332 00000 n
-0000030429 00000 n
-0000030526 00000 n
-0000030623 00000 n
-0000030720 00000 n
-0000030817 00000 n
-0000030937 00000 n
-0000031035 00000 n
-0000031133 00000 n
-0000031231 00000 n
-0000031329 00000 n
-0000031427 00000 n
-0000031525 00000 n
-0000031623 00000 n
-0000031721 00000 n
-0000031819 00000 n
-0000031917 00000 n
-0000032015 00000 n
-0000032113 00000 n
-0000032211 00000 n
-0000032309 00000 n
-0000032407 00000 n
-0000032652 00000 n
-0000033413 00000 n
-0000033435 00000 n
-0000033651 00000 n
-0000033895 00000 n
-0000034536 00000 n
-0000034558 00000 n
-0000034773 00000 n
-0000034830 00000 n
-0000034887 00000 n
-0000034944 00000 n
-0000035001 00000 n
-0000035058 00000 n
-0000035115 00000 n
-0000035172 00000 n
-0000035229 00000 n
-0000035286 00000 n
-0000035343 00000 n
-0000035400 00000 n
-0000035457 00000 n
-0000035514 00000 n
-0000035571 00000 n
-0000035628 00000 n
-0000035685 00000 n
-0000035742 00000 n
-0000035799 00000 n
-0000035856 00000 n
-0000035913 00000 n
-0000035970 00000 n
-0000036027 00000 n
-0000036084 00000 n
-0000036141 00000 n
-0000036198 00000 n
-0000036255 00000 n
-0000036312 00000 n
-0000036369 00000 n
-0000036426 00000 n
-0000036483 00000 n
-0000036540 00000 n
-0000036597 00000 n
-0000036654 00000 n
-0000036711 00000 n
-0000036768 00000 n
-0000036825 00000 n
-0000036882 00000 n
-0000036939 00000 n
-0000036996 00000 n
-0000037053 00000 n
-0000037110 00000 n
-0000037167 00000 n
-0000037224 00000 n
-0000037281 00000 n
-0000053563 00000 n
-0000053587 00000 n
-0000064773 00000 n
+0000003207 00000 n
+0000003683 00000 n
+0000004104 00000 n
+0000004575 00000 n
+0000005126 00000 n
+0000005200 00000 n
+0000005350 00000 n
+0000005440 00000 n
+0000005607 00000 n
+0000005627 00000 n
+0000005991 00000 n
+0000006357 00000 n
+0000006723 00000 n
+0000006891 00000 n
+0000006911 00000 n
+0000007149 00000 n
+0000007169 00000 n
+0000007250 00000 n
+0000007418 00000 n
+0000007438 00000 n
+0000007676 00000 n
+0000007696 00000 n
+0000007864 00000 n
+0000007884 00000 n
+0000008122 00000 n
+0000008142 00000 n
+0000008508 00000 n
+0000008872 00000 n
+0000009238 00000 n
+0000009407 00000 n
+0000009427 00000 n
+0000009628 00000 n
+0000009648 00000 n
+0000009849 00000 n
+0000009869 00000 n
+0000010072 00000 n
+0000010092 00000 n
+0000010291 00000 n
+0000010311 00000 n
+0000010475 00000 n
+0000010534 00000 n
+0000010576 00000 n
+0000015402 00000 n
+0000015447 00000 n
+0000015575 00000 n
+0000015595 00000 n
+0000016818 00000 n
+0000016839 00000 n
+0000017631 00000 n
+0000018033 00000 n
+0000018484 00000 n
+0000020401 00000 n
+0000020771 00000 n
+0000022685 00000 n
+0000023061 00000 n
+0000023082 00000 n
+0000023250 00000 n
+0000023270 00000 n
+0000023646 00000 n
+0000023667 00000 n
+0000023835 00000 n
+0000023855 00000 n
+0000024231 00000 n
+0000024252 00000 n
+0000024420 00000 n
+0000024440 00000 n
+0000024816 00000 n
+0000024837 00000 n
+0000025005 00000 n
+0000025025 00000 n
+0000025401 00000 n
+0000025422 00000 n
+0000025590 00000 n
+0000025610 00000 n
+0000025986 00000 n
+0000026007 00000 n
+0000026175 00000 n
+0000026195 00000 n
+0000026527 00000 n
+0000026640 00000 n
+0000026736 00000 n
+0000026849 00000 n
+0000026945 00000 n
+0000027058 00000 n
+0000027154 00000 n
+0000027250 00000 n
+0000027346 00000 n
+0000027442 00000 n
+0000027538 00000 n
+0000027635 00000 n
+0000027749 00000 n
+0000027846 00000 n
+0000027943 00000 n
+0000028040 00000 n
+0000028137 00000 n
+0000028234 00000 n
+0000028331 00000 n
+0000028428 00000 n
+0000028525 00000 n
+0000028622 00000 n
+0000028719 00000 n
+0000028833 00000 n
+0000028930 00000 n
+0000029027 00000 n
+0000029124 00000 n
+0000029221 00000 n
+0000029318 00000 n
+0000029415 00000 n
+0000029512 00000 n
+0000029609 00000 n
+0000029706 00000 n
+0000029803 00000 n
+0000029917 00000 n
+0000030014 00000 n
+0000030111 00000 n
+0000030208 00000 n
+0000030328 00000 n
+0000030425 00000 n
+0000030522 00000 n
+0000030619 00000 n
+0000030716 00000 n
+0000030813 00000 n
+0000030933 00000 n
+0000031031 00000 n
+0000031129 00000 n
+0000031227 00000 n
+0000031325 00000 n
+0000031423 00000 n
+0000031521 00000 n
+0000031619 00000 n
+0000031717 00000 n
+0000031815 00000 n
+0000031913 00000 n
+0000032011 00000 n
+0000032109 00000 n
+0000032207 00000 n
+0000032305 00000 n
+0000032403 00000 n
+0000032648 00000 n
+0000033409 00000 n
+0000033431 00000 n
+0000033647 00000 n
+0000033891 00000 n
+0000034532 00000 n
+0000034554 00000 n
+0000034769 00000 n
+0000034826 00000 n
+0000034883 00000 n
+0000034940 00000 n
+0000034997 00000 n
+0000035054 00000 n
+0000035111 00000 n
+0000035168 00000 n
+0000035225 00000 n
+0000035282 00000 n
+0000035339 00000 n
+0000035396 00000 n
+0000035453 00000 n
+0000035510 00000 n
+0000035567 00000 n
+0000035624 00000 n
+0000035681 00000 n
+0000035738 00000 n
+0000035795 00000 n
+0000035852 00000 n
+0000035909 00000 n
+0000035966 00000 n
+0000036023 00000 n
+0000036080 00000 n
+0000036137 00000 n
+0000036194 00000 n
+0000036251 00000 n
+0000036308 00000 n
+0000036365 00000 n
+0000036422 00000 n
+0000036479 00000 n
+0000036536 00000 n
+0000036593 00000 n
+0000036650 00000 n
+0000036707 00000 n
+0000036764 00000 n
+0000036821 00000 n
+0000036878 00000 n
+0000036935 00000 n
+0000036992 00000 n
+0000037049 00000 n
+0000037106 00000 n
+0000037163 00000 n
+0000037220 00000 n
+0000037277 00000 n
+0000053559 00000 n
+0000053583 00000 n
+0000064769 00000 n
trailer <<
/DocChecksum /CC322E136FE95DECF8BC297B1A9B2C2E
/Info 2 0 R
@@ -3818,5 +3818,5 @@ trailer <<
/ID [<f8abc47bb1df544a0df9c15a75ef0046><31415926535897932384626433832795>]
>>
startxref
-64797
+64793
%%EOF
diff --git a/qpdf/qtest/qpdf/need-appearances.pdf b/qpdf/qtest/qpdf/need-appearances.pdf
index 700fbdbc..0064fff9 100644
--- a/qpdf/qtest/qpdf/need-appearances.pdf
+++ b/qpdf/qtest/qpdf/need-appearances.pdf
@@ -273,7 +273,7 @@ endobj
/Subtype /Widget
/T (list1)
/Type /Annot
- /V <feff0066006900760065>
+ /V <feff007300690078>
>>
endobj
@@ -3579,195 +3579,195 @@ xref
0000002295 00000 n
0000002426 00000 n
0000002780 00000 n
-0000003211 00000 n
-0000003687 00000 n
-0000004108 00000 n
-0000004579 00000 n
-0000005006 00000 n
-0000005145 00000 n
-0000005295 00000 n
-0000005385 00000 n
-0000005552 00000 n
-0000005572 00000 n
-0000005936 00000 n
-0000006302 00000 n
-0000006668 00000 n
-0000006836 00000 n
-0000006856 00000 n
-0000007094 00000 n
-0000007114 00000 n
-0000007195 00000 n
-0000007363 00000 n
-0000007383 00000 n
-0000007621 00000 n
-0000007641 00000 n
-0000007809 00000 n
-0000007829 00000 n
-0000008067 00000 n
-0000008087 00000 n
-0000008453 00000 n
-0000008817 00000 n
-0000009183 00000 n
-0000009352 00000 n
-0000009372 00000 n
-0000009573 00000 n
-0000009593 00000 n
-0000009794 00000 n
-0000009814 00000 n
-0000010017 00000 n
-0000010037 00000 n
-0000010236 00000 n
-0000010279 00000 n
-0000015105 00000 n
-0000015127 00000 n
-0000015911 00000 n
-0000016312 00000 n
-0000016763 00000 n
-0000018680 00000 n
-0000019050 00000 n
-0000020964 00000 n
-0000021340 00000 n
-0000021361 00000 n
-0000021529 00000 n
-0000021549 00000 n
-0000021925 00000 n
-0000021946 00000 n
-0000022114 00000 n
-0000022134 00000 n
-0000022510 00000 n
-0000022531 00000 n
-0000022699 00000 n
-0000022719 00000 n
-0000023095 00000 n
-0000023116 00000 n
-0000023284 00000 n
-0000023304 00000 n
-0000023680 00000 n
-0000023701 00000 n
-0000023869 00000 n
-0000023889 00000 n
-0000024265 00000 n
-0000024286 00000 n
-0000024454 00000 n
-0000024474 00000 n
-0000024587 00000 n
-0000024683 00000 n
-0000024796 00000 n
-0000024892 00000 n
-0000025005 00000 n
-0000025101 00000 n
-0000025197 00000 n
-0000025293 00000 n
-0000025389 00000 n
-0000025485 00000 n
-0000025581 00000 n
-0000025694 00000 n
-0000025790 00000 n
-0000025886 00000 n
-0000025982 00000 n
-0000026078 00000 n
-0000026174 00000 n
-0000026270 00000 n
-0000026367 00000 n
-0000026464 00000 n
-0000026561 00000 n
-0000026658 00000 n
-0000026772 00000 n
-0000026869 00000 n
-0000026966 00000 n
-0000027063 00000 n
-0000027160 00000 n
-0000027257 00000 n
-0000027354 00000 n
-0000027451 00000 n
-0000027548 00000 n
-0000027645 00000 n
-0000027742 00000 n
-0000027856 00000 n
-0000027953 00000 n
-0000028050 00000 n
-0000028147 00000 n
-0000028267 00000 n
-0000028364 00000 n
-0000028461 00000 n
-0000028558 00000 n
-0000028655 00000 n
-0000028752 00000 n
-0000028872 00000 n
-0000028970 00000 n
-0000029068 00000 n
-0000029166 00000 n
-0000029264 00000 n
-0000029362 00000 n
-0000029460 00000 n
-0000029558 00000 n
-0000029656 00000 n
-0000029754 00000 n
-0000029852 00000 n
-0000029950 00000 n
-0000030048 00000 n
-0000030146 00000 n
-0000030244 00000 n
-0000030342 00000 n
-0000030587 00000 n
-0000031348 00000 n
-0000031370 00000 n
-0000031586 00000 n
-0000031830 00000 n
-0000032471 00000 n
-0000032493 00000 n
-0000032708 00000 n
-0000032765 00000 n
-0000032822 00000 n
-0000032879 00000 n
-0000032936 00000 n
-0000032993 00000 n
-0000033050 00000 n
-0000033107 00000 n
-0000033164 00000 n
-0000033221 00000 n
-0000033278 00000 n
-0000033335 00000 n
-0000033392 00000 n
-0000033449 00000 n
-0000033506 00000 n
-0000033563 00000 n
-0000033620 00000 n
-0000033677 00000 n
-0000033734 00000 n
-0000033791 00000 n
-0000033848 00000 n
-0000033905 00000 n
-0000033962 00000 n
-0000034019 00000 n
-0000034076 00000 n
-0000034133 00000 n
-0000034190 00000 n
-0000034247 00000 n
-0000034304 00000 n
-0000034361 00000 n
-0000034418 00000 n
-0000034475 00000 n
-0000034532 00000 n
-0000034589 00000 n
-0000034646 00000 n
-0000034703 00000 n
-0000034760 00000 n
-0000034817 00000 n
-0000034874 00000 n
-0000034931 00000 n
-0000034988 00000 n
-0000035045 00000 n
-0000035102 00000 n
-0000035159 00000 n
-0000035216 00000 n
-0000051498 00000 n
-0000051522 00000 n
-0000062708 00000 n
-0000062732 00000 n
-0000063067 00000 n
-0000063210 00000 n
-0000064435 00000 n
+0000003207 00000 n
+0000003683 00000 n
+0000004104 00000 n
+0000004575 00000 n
+0000005002 00000 n
+0000005141 00000 n
+0000005291 00000 n
+0000005381 00000 n
+0000005548 00000 n
+0000005568 00000 n
+0000005932 00000 n
+0000006298 00000 n
+0000006664 00000 n
+0000006832 00000 n
+0000006852 00000 n
+0000007090 00000 n
+0000007110 00000 n
+0000007191 00000 n
+0000007359 00000 n
+0000007379 00000 n
+0000007617 00000 n
+0000007637 00000 n
+0000007805 00000 n
+0000007825 00000 n
+0000008063 00000 n
+0000008083 00000 n
+0000008449 00000 n
+0000008813 00000 n
+0000009179 00000 n
+0000009348 00000 n
+0000009368 00000 n
+0000009569 00000 n
+0000009589 00000 n
+0000009790 00000 n
+0000009810 00000 n
+0000010013 00000 n
+0000010033 00000 n
+0000010232 00000 n
+0000010275 00000 n
+0000015101 00000 n
+0000015123 00000 n
+0000015907 00000 n
+0000016308 00000 n
+0000016759 00000 n
+0000018676 00000 n
+0000019046 00000 n
+0000020960 00000 n
+0000021336 00000 n
+0000021357 00000 n
+0000021525 00000 n
+0000021545 00000 n
+0000021921 00000 n
+0000021942 00000 n
+0000022110 00000 n
+0000022130 00000 n
+0000022506 00000 n
+0000022527 00000 n
+0000022695 00000 n
+0000022715 00000 n
+0000023091 00000 n
+0000023112 00000 n
+0000023280 00000 n
+0000023300 00000 n
+0000023676 00000 n
+0000023697 00000 n
+0000023865 00000 n
+0000023885 00000 n
+0000024261 00000 n
+0000024282 00000 n
+0000024450 00000 n
+0000024470 00000 n
+0000024583 00000 n
+0000024679 00000 n
+0000024792 00000 n
+0000024888 00000 n
+0000025001 00000 n
+0000025097 00000 n
+0000025193 00000 n
+0000025289 00000 n
+0000025385 00000 n
+0000025481 00000 n
+0000025577 00000 n
+0000025690 00000 n
+0000025786 00000 n
+0000025882 00000 n
+0000025978 00000 n
+0000026074 00000 n
+0000026170 00000 n
+0000026266 00000 n
+0000026363 00000 n
+0000026460 00000 n
+0000026557 00000 n
+0000026654 00000 n
+0000026768 00000 n
+0000026865 00000 n
+0000026962 00000 n
+0000027059 00000 n
+0000027156 00000 n
+0000027253 00000 n
+0000027350 00000 n
+0000027447 00000 n
+0000027544 00000 n
+0000027641 00000 n
+0000027738 00000 n
+0000027852 00000 n
+0000027949 00000 n
+0000028046 00000 n
+0000028143 00000 n
+0000028263 00000 n
+0000028360 00000 n
+0000028457 00000 n
+0000028554 00000 n
+0000028651 00000 n
+0000028748 00000 n
+0000028868 00000 n
+0000028966 00000 n
+0000029064 00000 n
+0000029162 00000 n
+0000029260 00000 n
+0000029358 00000 n
+0000029456 00000 n
+0000029554 00000 n
+0000029652 00000 n
+0000029750 00000 n
+0000029848 00000 n
+0000029946 00000 n
+0000030044 00000 n
+0000030142 00000 n
+0000030240 00000 n
+0000030338 00000 n
+0000030583 00000 n
+0000031344 00000 n
+0000031366 00000 n
+0000031582 00000 n
+0000031826 00000 n
+0000032467 00000 n
+0000032489 00000 n
+0000032704 00000 n
+0000032761 00000 n
+0000032818 00000 n
+0000032875 00000 n
+0000032932 00000 n
+0000032989 00000 n
+0000033046 00000 n
+0000033103 00000 n
+0000033160 00000 n
+0000033217 00000 n
+0000033274 00000 n
+0000033331 00000 n
+0000033388 00000 n
+0000033445 00000 n
+0000033502 00000 n
+0000033559 00000 n
+0000033616 00000 n
+0000033673 00000 n
+0000033730 00000 n
+0000033787 00000 n
+0000033844 00000 n
+0000033901 00000 n
+0000033958 00000 n
+0000034015 00000 n
+0000034072 00000 n
+0000034129 00000 n
+0000034186 00000 n
+0000034243 00000 n
+0000034300 00000 n
+0000034357 00000 n
+0000034414 00000 n
+0000034471 00000 n
+0000034528 00000 n
+0000034585 00000 n
+0000034642 00000 n
+0000034699 00000 n
+0000034756 00000 n
+0000034813 00000 n
+0000034870 00000 n
+0000034927 00000 n
+0000034984 00000 n
+0000035041 00000 n
+0000035098 00000 n
+0000035155 00000 n
+0000035212 00000 n
+0000051494 00000 n
+0000051518 00000 n
+0000062704 00000 n
+0000062728 00000 n
+0000063063 00000 n
+0000063206 00000 n
+0000064431 00000 n
trailer <<
/DocChecksum /CC322E136FE95DECF8BC297B1A9B2C2E
/Info 2 0 R
@@ -3776,5 +3776,5 @@ trailer <<
/ID [<f8abc47bb1df544a0df9c15a75ef0046><45201f7a345625a01ccb53b240a8ba8d>]
>>
startxref
-64457
+64453
%%EOF
diff --git a/qpdf/test_driver.cc b/qpdf/test_driver.cc
index 3cb286d4..b1e6a7ce 100644
--- a/qpdf/test_driver.cc
+++ b/qpdf/test_driver.cc
@@ -1820,6 +1820,32 @@ void runtest(int n, char const* filename1, char const* arg2)
w.setStaticID(true);
w.write();
}
+ else if (n == 52)
+ {
+ // This test just sets a field value for appearance stream
+ // generating testing.
+ QPDFObjectHandle acroform = pdf.getRoot().getKey("/AcroForm");
+ QPDFObjectHandle fields = acroform.getKey("/Fields");
+ int n = fields.getArrayNItems();
+ for (int i = 0; i < n; ++i)
+ {
+ QPDFObjectHandle field = fields.getArrayItem(i);
+ QPDFObjectHandle T = field.getKey("/T");
+ if (! T.isString())
+ {
+ continue;
+ }
+ std::string Tval = T.getUTF8Value();
+ if (Tval == "list1")
+ {
+ std::cout << "setting list1 value\n";
+ QPDFFormFieldObjectHelper foh(field);
+ foh.setV(QPDFObjectHandle::newString(arg2));
+ }
+ }
+ QPDFWriter w(pdf, "a.pdf");
+ w.write();
+ }
else
{
throw std::runtime_error(std::string("invalid test ") +