aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--include/qpdf/QPDFObjectHandle.hh4
-rw-r--r--libqpdf/QPDFObjectHandle.cc55
-rw-r--r--qpdf/qpdf.testcov2
-rw-r--r--qpdf/qtest/qpdf.test16
-rw-r--r--qpdf/qtest/qpdf/content-stream-errors.out6
-rw-r--r--qpdf/qtest/qpdf/eof-in-inline-image.out2
-rw-r--r--qpdf/qtest/qpdf/split-content-stream-errors.out11
-rw-r--r--qpdf/qtest/qpdf/split-content-stream-errors.pdf113
-rw-r--r--qpdf/qtest/qpdf/split-content-stream.out6
-rw-r--r--qpdf/qtest/qpdf/split-content-stream.pdf8593
11 files changed, 8793 insertions, 20 deletions
diff --git a/ChangeLog b/ChangeLog
index 1a565ff9..66245656 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2017-07-29 Jay Berkenbilt <ejb@ql.org>
+
+ * Fix content stream parsing to handle cases of structures within
+ the stream split across stream boundaries. Fixes #73.
+
2017-07-28 Jay Berkenbilt <ejb@ql.org>
* Add --preserve-unreferenced command-line option and
diff --git a/include/qpdf/QPDFObjectHandle.hh b/include/qpdf/QPDFObjectHandle.hh
index 11a52596..456dade4 100644
--- a/include/qpdf/QPDFObjectHandle.hh
+++ b/include/qpdf/QPDFObjectHandle.hh
@@ -623,7 +623,9 @@ class QPDFObjectHandle
bool in_array, bool in_dictionary,
bool content_stream);
static void parseContentStream_internal(
- QPDFObjectHandle stream, ParserCallbacks* callbacks);
+ PointerHolder<Buffer> stream_data,
+ std::string const& description,
+ ParserCallbacks* callbacks);
// Other methods
static void warn(QPDF*, QPDFExc const&);
diff --git a/libqpdf/QPDFObjectHandle.cc b/libqpdf/QPDFObjectHandle.cc
index bac233df..e263a3ec 100644
--- a/libqpdf/QPDFObjectHandle.cc
+++ b/libqpdf/QPDFObjectHandle.cc
@@ -13,6 +13,7 @@
#include <qpdf/QPDF_Dictionary.hh>
#include <qpdf/QPDF_Stream.hh>
#include <qpdf/QPDF_Reserved.hh>
+#include <qpdf/Pl_Buffer.hh>
#include <qpdf/BufferInputSource.hh>
#include <qpdf/QPDFExc.hh>
@@ -739,37 +740,63 @@ QPDFObjectHandle::parseContentStream(QPDFObjectHandle stream_or_array,
{
streams.push_back(stream_or_array);
}
+ Pl_Buffer buf("concatenated stream data buffer");
+ std::string all_description = "content stream objects";
+ bool first = true;
for (std::vector<QPDFObjectHandle>::iterator iter = streams.begin();
iter != streams.end(); ++iter)
{
QPDFObjectHandle stream = *iter;
if (! stream.isStream())
{
- throw std::logic_error(
- "QPDFObjectHandle: parseContentStream called on non-stream");
+ QTC::TC("qpdf", "QPDFObjectHandle non-stream in parsecontent");
+ warn(stream.getOwningQPDF(),
+ QPDFExc(qpdf_e_damaged_pdf, "content stream",
+ "", 0,
+ "ignoring non-stream while parsing content streams"));
}
- try
- {
- parseContentStream_internal(stream, callbacks);
- }
- catch (TerminateParsing&)
+ else
{
- return;
+ std::string og = QUtil::int_to_string(stream.getObjectID()) + " " +
+ QUtil::int_to_string(stream.getGeneration());
+ std::string description = "content stream object " + og;
+ if (first)
+ {
+ first = false;
+ }
+ else
+ {
+ all_description += ",";
+ }
+ all_description += " " + og;
+ if (! stream.pipeStreamData(&buf, true, false, false, false))
+ {
+ QTC::TC("qpdf", "QPDFObjectHandle errors in parsecontent");
+ warn(stream.getOwningQPDF(),
+ QPDFExc(qpdf_e_damaged_pdf, "content stream",
+ description, 0,
+ "errors while decoding content stream"));
+ }
}
}
+ PointerHolder<Buffer> stream_data = buf.getBuffer();
+ try
+ {
+ parseContentStream_internal(stream_data, all_description, callbacks);
+ }
+ catch (TerminateParsing&)
+ {
+ return;
+ }
callbacks->handleEOF();
}
void
-QPDFObjectHandle::parseContentStream_internal(QPDFObjectHandle stream,
+QPDFObjectHandle::parseContentStream_internal(PointerHolder<Buffer> stream_data,
+ std::string const& description,
ParserCallbacks* callbacks)
{
- stream.assertStream();
- PointerHolder<Buffer> stream_data = stream.getStreamData();
size_t length = stream_data->getSize();
- std::string description = "content stream object " +
- QUtil::int_to_string(stream.getObjectID()) + " " +
- QUtil::int_to_string(stream.getGeneration());
PointerHolder<InputSource> input =
new BufferInputSource(description, stream_data.getPointer());
QPDFTokenizer tokenizer;
diff --git a/qpdf/qpdf.testcov b/qpdf/qpdf.testcov
index c64c63ee..c32d6ba5 100644
--- a/qpdf/qpdf.testcov
+++ b/qpdf/qpdf.testcov
@@ -281,3 +281,5 @@ QPDFObjectHandle no val for last key 0
QPDF resolve failure to null 0
QPDFWriter precheck stream 0
QPDFWriter preserve unreferenced standard 0
+QPDFObjectHandle non-stream in parsecontent 0
+QPDFObjectHandle errors in parsecontent 0
diff --git a/qpdf/qtest/qpdf.test b/qpdf/qtest/qpdf.test
index 45ed8c46..14abda34 100644
--- a/qpdf/qtest/qpdf.test
+++ b/qpdf/qtest/qpdf.test
@@ -206,7 +206,7 @@ $td->runtest("remove page we don't have",
show_ntests();
# ----------
$td->notify("--- Miscellaneous Tests ---");
-$n_tests += 86;
+$n_tests += 88;
$td->runtest("qpdf version",
{$td->COMMAND => "qpdf --version"},
@@ -604,6 +604,20 @@ $td->runtest("no trailing space in xref table",
{$td->FILE => "no-space-in-xref.out", $td->EXIT_STATUS => 0},
$td->NORMALIZE_NEWLINES);
+# An array is split across multiple content streams starting object
+# 42. This was reported in github issue 73. The file is modified from
+# that example.
+$td->runtest("parse split content stream",
+ {$td->COMMAND => "qpdf --check split-content-stream.pdf"},
+ {$td->FILE => "split-content-stream.out", $td->EXIT_STATUS => 0},
+ $td->NORMALIZE_NEWLINES);
+$td->runtest("split content stream errors",
+ {$td->COMMAND => "qpdf --check split-content-stream-errors.pdf"},
+ {$td->FILE => "split-content-stream-errors.out",
+ $td->EXIT_STATUS => 3},
+ $td->NORMALIZE_NEWLINES);
+
+
show_ntests();
# ----------
$td->notify("--- Numeric range parsing tests ---");
diff --git a/qpdf/qtest/qpdf/content-stream-errors.out b/qpdf/qtest/qpdf/content-stream-errors.out
index a375f5e6..d36d61b3 100644
--- a/qpdf/qtest/qpdf/content-stream-errors.out
+++ b/qpdf/qtest/qpdf/content-stream-errors.out
@@ -2,6 +2,6 @@ checking content-stream-errors.pdf
PDF Version: 1.3
File is not encrypted
File is not linearized
-page 1: content stream object 7 0 (content, file position 52): parse error while reading object
-page 3: content stream object 15 0 (stream data, file position 117): EOF found while reading inline image
-page 4: content stream object 19 0 (content, file position 53): parse error while reading object
+page 1: content stream objects 7 0 (content, file position 52): parse error while reading object
+page 3: content stream objects 15 0 (stream data, file position 117): EOF found while reading inline image
+page 4: content stream objects 19 0 (content, file position 53): parse error while reading object
diff --git a/qpdf/qtest/qpdf/eof-in-inline-image.out b/qpdf/qtest/qpdf/eof-in-inline-image.out
index d78c072b..cb2acf97 100644
--- a/qpdf/qtest/qpdf/eof-in-inline-image.out
+++ b/qpdf/qtest/qpdf/eof-in-inline-image.out
@@ -22,4 +22,4 @@ name: /Fl
name: /DP
dictionary: << /Columns 1 /Predictor 15 >>
operator: ID
-content stream object 4 0 (stream data, file position 139): EOF found while reading inline image
+content stream objects 4 0 (stream data, file position 139): EOF found while reading inline image
diff --git a/qpdf/qtest/qpdf/split-content-stream-errors.out b/qpdf/qtest/qpdf/split-content-stream-errors.out
new file mode 100644
index 00000000..1b96e29d
--- /dev/null
+++ b/qpdf/qtest/qpdf/split-content-stream-errors.out
@@ -0,0 +1,11 @@
+WARNING: split-content-stream-errors.pdf: file is damaged
+WARNING: split-content-stream-errors.pdf (file position 802): xref not found
+WARNING: split-content-stream-errors.pdf: Attempting to reconstruct cross-reference table
+checking split-content-stream-errors.pdf
+PDF Version: 1.3
+File is not encrypted
+File is not linearized
+WARNING: split-content-stream-errors.pdf (file position 557): error decoding stream data for object 6 0: LZWDecoder: bad code received
+WARNING: content stream: ignoring non-stream while parsing content streams
+WARNING: split-content-stream-errors.pdf (file position 557): error decoding stream data for object 6 0: LZWDecoder: bad code received
+WARNING: content stream (content stream object 6 0): errors while decoding content stream
diff --git a/qpdf/qtest/qpdf/split-content-stream-errors.pdf b/qpdf/qtest/qpdf/split-content-stream-errors.pdf
new file mode 100644
index 00000000..2d18143c
--- /dev/null
+++ b/qpdf/qtest/qpdf/split-content-stream-errors.pdf
@@ -0,0 +1,113 @@
+%PDF-1.3
+%
+%QDF-1.0
+
+1 0 obj
+<<
+ /Pages 2 0 R
+ /Type /Catalog
+>>
+endobj
+
+2 0 obj
+<<
+ /Count 1
+ /Kids [
+ 3 0 R
+ ]
+ /Type /Pages
+>>
+endobj
+
+%% Page 1
+3 0 obj
+<<
+ /Contents [
+ 4 0 R
+ 6 0 R
+ ]
+ /MediaBox [
+ 0
+ 0
+ 612
+ 792
+ ]
+ /Parent 2 0 R
+ /Resources <<
+ /Font <<
+ /F1 8 0 R
+ >>
+ /ProcSet 9 0 R
+ >>
+ /Type /Page
+>>
+endobj
+
+%% Contents for page 1
+4 0 obj
+<<
+ /Length 5 0 R
+ /Oops (Not a stream)
+>>
+endobj
+
+5 0 obj
+44
+endobj
+
+%% Contents for page 1
+6 0 obj
+<<
+ /Length 7 0 R
+ /Filter /LZWDecode
+>>
+stream
+BT
+ /F1 24 Tf
+ 72 720 Td
+ (Encoding errors) Tj
+ET
+endstream
+endobj
+
+7 0 obj
+53
+endobj
+
+8 0 obj
+<<
+ /BaseFont /Helvetica
+ /Encoding /WinAnsiEncoding
+ /Name /F1
+ /Subtype /Type1
+ /Type /Font
+>>
+endobj
+
+9 0 obj
+[
+ /PDF
+ /Text
+]
+endobj
+
+xref
+0 10
+0000000000 65535 f
+0000000025 00000 n
+0000000079 00000 n
+0000000161 00000 n
+0000000396 00000 n
+0000000457 00000 n
+0000000499 00000 n
+0000000630 00000 n
+0000000649 00000 n
+0000000767 00000 n
+trailer <<
+ /Root 1 0 R
+ /Size 10
+ /ID [<cbdd966f9b7b2bb31ad606c532d7cce5><e5f7cff7a542641606230aadd53106a4>]
+>>
+startxref
+802
+%%EOF
diff --git a/qpdf/qtest/qpdf/split-content-stream.out b/qpdf/qtest/qpdf/split-content-stream.out
new file mode 100644
index 00000000..4941e63b
--- /dev/null
+++ b/qpdf/qtest/qpdf/split-content-stream.out
@@ -0,0 +1,6 @@
+checking split-content-stream.pdf
+PDF Version: 1.4
+File is not encrypted
+File is not linearized
+No syntax or stream encoding errors found; the file may still contain
+errors that qpdf cannot detect
diff --git a/qpdf/qtest/qpdf/split-content-stream.pdf b/qpdf/qtest/qpdf/split-content-stream.pdf
new file mode 100644
index 00000000..92cbfc02
--- /dev/null
+++ b/qpdf/qtest/qpdf/split-content-stream.pdf
@@ -0,0 +1,8593 @@
+%PDF-1.4
+%
+%QDF-1.0
+
+%% Original object ID: 154 0
+1 0 obj
+<<
+ /Metadata 3 0 R
+ /Names 5 0 R
+ /OpenAction [
+ 6 0 R
+ /FitH
+ 810
+ ]
+ /Outlines 7 0 R
+ /PageLabels 8 0 R
+ /PageLayout /SinglePage
+ /PageMode /UseOutlines
+ /Pages 9 0 R
+ /Threads [
+ 10 0 R
+ ]
+ /Type /Catalog
+>>
+endobj
+
+%% Original object ID: 152 0
+2 0 obj
+<<
+ /Author (Bruce Hobbs; Klaus Regenauer-lieb; Alison Ord)
+ /AuthoritativeDomain#5b1#5d (elsevier.com)
+ /AuthoritativeDomain#5b2#5d (sciencedirect.com)
+ /CreationDate (D:20100108085926+05'30')
+ /Creator (Elsevier)
+ /ModDate (D:20100108115945+05'30')
+ /Producer (Acrobat Distiller 8.0.0 \(Windows\))
+ /Title (Folding with thermal mechanical feedback: Another reply)
+ /Trapped /False
+>>
+endobj
+
+%% Original object ID: 151 0
+3 0 obj
+<<
+ /Subtype /XML
+ /Type /Metadata
+ /Length 4 0 R
+>>
+stream
+<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
+<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 4.0-c316 44.253921, Sun Oct 01 2006 17:14:39">
+ <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+ <rdf:Description rdf:about="doi:10.1016/j.jsg.2009.10.005"
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <dc:format>application/pdf</dc:format>
+ <dc:identifier>doi:10.1016/j.jsg.2009.10.005</dc:identifier>
+ <dc:title>
+ <rdf:Alt>
+ <rdf:li xml:lang="x-default">Folding with thermal mechanical feedback: Another reply</rdf:li>
+ </rdf:Alt>
+ </dc:title>
+ <dc:creator>
+ <rdf:Seq>
+ <rdf:li>Bruce Hobbs; Klaus Regenauer-lieb; Alison Ord</rdf:li>
+ </rdf:Seq>
+ </dc:creator>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>Folding</rdf:li>
+ <rdf:li>Coupled processes</rdf:li>
+ <rdf:li>Shear heating</rdf:li>
+ <rdf:li>Strain-rate softening</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:publisher>
+ <rdf:Bag>
+ <rdf:li>Elsevier Ltd</rdf:li>
+ </rdf:Bag>
+ </dc:publisher>
+ </rdf:Description>
+ <rdf:Description rdf:about="doi:10.1016/j.jsg.2009.10.005"
+ xmlns:prism="http://prismstandard.org/namespaces/basic/2.0/">
+ <prism:aggregationType>journal</prism:aggregationType>
+ <prism:publicationName>Journal of Structural Geology</prism:publicationName>
+ <prism:copyright>Copyright Crown Copyright © 2009 Published by Elsevier Ltd. All rights reserved</prism:copyright>
+ <prism:issn>0191-8141</prism:issn>
+ <prism:volume>32</prism:volume>
+ <prism:number>1</prism:number>
+ <prism:coverDisplayDate>January 2010</prism:coverDisplayDate>
+ <prism:pageRange>131-134</prism:pageRange>
+ <prism:startingPage>131</prism:startingPage>
+ <prism:endingPage>134</prism:endingPage>
+ <prism:doi>10.1016/j.jsg.2009.10.005</prism:doi>
+ <prism:url>http://dx.doi.org/10.1016/j.jsg.2009.10.005</prism:url>
+ </rdf:Description>
+ <rdf:Description rdf:about="doi:10.1016/j.jsg.2009.10.005"
+ xmlns:pdfaid="http://www.aiim.org/pdfa/ns/id/">
+ <pdfaid:part>1</pdfaid:part>
+ <pdfaid:conformance>B</pdfaid:conformance>
+ </rdf:Description>
+ <rdf:Description rdf:about="doi:10.1016/j.jsg.2009.10.005"
+ xmlns:xap="http://ns.adobe.com/xap/1.0/">
+ <xap:CreatorTool>Elsevier</xap:CreatorTool>
+ <xap:CreateDate>2010-01-08T08:59:26+05:30</xap:CreateDate>
+ <xap:ModifyDate>2010-01-08T11:59:45+05:30</xap:ModifyDate>
+ <xap:MetadataDate>2010-01-08T11:59:45+05:30</xap:MetadataDate>
+ </rdf:Description>
+ <rdf:Description rdf:about="doi:10.1016/j.jsg.2009.10.005"
+ xmlns:xapRights="http://ns.adobe.com/xap/1.0/rights/">
+ <xapRights:Marked>True</xapRights:Marked>
+ </rdf:Description>
+ <rdf:Description rdf:about="doi:10.1016/j.jsg.2009.10.005"
+ xmlns:pdf="http://ns.adobe.com/pdf/1.3/">
+ <pdf:Producer>Acrobat Distiller 8.0.0 (Windows)</pdf:Producer>
+ <pdf:Trapped>False</pdf:Trapped>
+ </rdf:Description>
+ <rdf:Description rdf:about="doi:10.1016/j.jsg.2009.10.005"
+ xmlns:xapMM="http://ns.adobe.com/xap/1.0/mm/">
+ <xapMM:DocumentID>uuid:b497d2f3-be13-440c-b866-1698622c7916</xapMM:DocumentID>
+ <xapMM:InstanceID>uuid:0a3fa978-f53c-4dcb-b3d3-78685fbceb51</xapMM:InstanceID>
+ </rdf:Description>
+ <rdf:Description rdf:about="doi:10.1016/j.jsg.2009.10.005"
+ xmlns:pdfx="http://ns.adobe.com/pdfx/1.3/">
+ <pdfx:AuthoritativeDomain>
+ <rdf:Bag>
+ <rdf:li>elsevier.com</rdf:li>
+ <rdf:li>sciencedirect.com</rdf:li>
+ </rdf:Bag>
+ </pdfx:AuthoritativeDomain>
+ </rdf:Description>
+ </rdf:RDF>
+</x:xmpmeta>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<?xpacket end="w"?>
+endstream
+endobj
+
+%QDF: ignore_newline
+4 0 obj
+6093
+endobj
+
+%% Original object ID: 156 0
+5 0 obj
+<<
+ /Dests 11 0 R
+>>
+endobj
+
+%% Page 1
+%% Original object ID: 157 0
+6 0 obj
+<<
+ /Annots [
+ 12 0 R
+ 13 0 R
+ 14 0 R
+ 15 0 R
+ 16 0 R
+ 17 0 R
+ 18 0 R
+ 19 0 R
+ 20 0 R
+ 21 0 R
+ 22 0 R
+ 23 0 R
+ 24 0 R
+ 25 0 R
+ 26 0 R
+ 27 0 R
+ 28 0 R
+ ]
+ /B [
+ 29 0 R
+ 30 0 R
+ 31 0 R
+ 32 0 R
+ 33 0 R
+ 34 0 R
+ 35 0 R
+ 36 0 R
+ 37 0 R
+ 38 0 R
+ 39 0 R
+ ]
+ /Contents [
+ 40 0 R
+ 42 0 R
+ 44 0 R
+ 46 0 R
+ 48 0 R
+ 50 0 R
+ 52 0 R
+ 54 0 R
+ ]
+ /CropBox [
+ 0
+ 0
+ 595.276
+ 793.701
+ ]
+ /MediaBox [
+ 0
+ 0
+ 595.276
+ 793.701
+ ]
+ /Parent 9 0 R
+ /Resources <<
+ /ColorSpace <<
+ /CS0 [
+ /ICCBased
+ 56 0 R
+ ]
+ /CS1 [
+ /ICCBased
+ 56 0 R
+ ]
+ /CS2 [
+ /ICCBased
+ 56 0 R
+ ]
+ >>
+ /ExtGState <<
+ /GS0 58 0 R
+ >>
+ /Font <<
+ /T1_0 59 0 R
+ /T1_1 60 0 R
+ /T1_2 61 0 R
+ /T1_3 62 0 R
+ /T1_4 63 0 R
+ /T1_5 64 0 R
+ >>
+ /ProcSet [
+ /PDF
+ /Text
+ /ImageC
+ ]
+ /XObject <<
+ /Im0 65 0 R
+ /Im1 67 0 R
+ >>
+ >>
+ /Rotate 0
+ /Thumb 69 0 R
+ /Type /Page
+>>
+endobj
+
+%% Original object ID: 237 0
+7 0 obj
+<<
+ /Count 9
+ /First 71 0 R
+ /Last 71 0 R
+>>
+endobj
+
+%% Original object ID: 148 0
+8 0 obj
+<<
+ /Nums [
+ 0
+ 72 0 R
+ ]
+>>
+endobj
+
+%% Original object ID: 150 0
+9 0 obj
+<<
+ /Count 4
+ /Kids [
+ 6 0 R
+ 73 0 R
+ 74 0 R
+ 75 0 R
+ ]
+ /Type /Pages
+>>
+endobj
+
+%% Original object ID: 155 0
+10 0 obj
+<<
+ /F 29 0 R
+ /I 76 0 R
+>>
+endobj
+
+%% Original object ID: 113 0
+11 0 obj
+<<
+ /Kids [
+ 77 0 R
+ ]
+>>
+endobj
+
+%% Original object ID: 158 0
+12 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib18)
+ /F 4
+ /Rect [
+ 260.617
+ 542.721
+ 331.824
+ 549.921
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 159 0
+13 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib11)
+ /F 4
+ /Rect [
+ 144.794
+ 380.126
+ 213.392
+ 388.12
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 160 0
+14 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib13)
+ /F 4
+ /Rect [
+ 233.405
+ 380.126
+ 293.556
+ 388.12
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 161 0
+15 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib13)
+ /F 4
+ /Rect [
+ 42.52
+ 369.694
+ 86.513
+ 377.688
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 162 0
+16 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib2)
+ /F 4
+ /Rect [
+ 248.655
+ 296.447
+ 293.556
+ 304.441
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 163 0
+17 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib12)
+ /F 4
+ /Rect [
+ 158.627
+ 118.658
+ 221.329
+ 126.595
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 164 0
+18 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib13)
+ /F 4
+ /Rect [
+ 210.841
+ 108.17
+ 293.556
+ 116.164
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 165 0
+19 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib13)
+ /F 4
+ /Rect [
+ 42.52
+ 97.739
+ 61.285
+ 105.676
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 166 0
+20 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib13)
+ /F 4
+ /Rect [
+ 499.068
+ 296.447
+ 562.564
+ 304.441
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 167 0
+21 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib13)
+ /F 4
+ /Rect [
+ 311.527
+ 285.959
+ 355.464
+ 293.953
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 168 0
+22 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib18)
+ /F 4
+ /Rect [
+ 508.932
+ 244.12
+ 562.564
+ 252.113
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 169 0
+23 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib18)
+ /F 4
+ /Rect [
+ 311.527
+ 233.688
+ 329.726
+ 241.625
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 170 0
+24 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib18)
+ /F 4
+ /Rect [
+ 422.419
+ 233.688
+ 499.068
+ 241.625
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 171 0
+25 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib7)
+ /F 4
+ /Rect [
+ 489.203
+ 160.441
+ 560.693
+ 168.435
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 172 0
+26 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib11)
+ /F 4
+ /Rect [
+ 323.49
+ 87.194
+ 387.723
+ 95.187
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 173 0
+27 0 obj
+<<
+ /A 78 0 R
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /F 4
+ /Rect [
+ 328.705
+ 711.949
+ 381.657
+ 719.943
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 174 0
+28 0 obj
+<<
+ /A 79 0 R
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /F 4
+ /Rect [
+ 282.387
+ 655.994
+ 417.6
+ 663.931
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 175 0
+29 0 obj
+<<
+ /N 30 0 R
+ /P 6 0 R
+ /R [
+ 40
+ 713
+ 296
+ 718
+ ]
+ /T 10 0 R
+ /V 80 0 R
+>>
+endobj
+
+%% Original object ID: 176 0
+30 0 obj
+<<
+ /N 31 0 R
+ /P 6 0 R
+ /R [
+ 40
+ 592
+ 565
+ 638
+ ]
+ /T 10 0 R
+ /V 29 0 R
+>>
+endobj
+
+%% Original object ID: 195 0
+31 0 obj
+<<
+ /N 32 0 R
+ /P 6 0 R
+ /R [
+ 40
+ 571
+ 296
+ 589
+ ]
+ /T 10 0 R
+ /V 30 0 R
+>>
+endobj
+
+%% Original object ID: 194 0
+32 0 obj
+<<
+ /N 33 0 R
+ /P 6 0 R
+ /R [
+ 40
+ 557
+ 179
+ 575
+ ]
+ /T 10 0 R
+ /V 31 0 R
+>>
+endobj
+
+%% Original object ID: 193 0
+33 0 obj
+<<
+ /N 34 0 R
+ /P 6 0 R
+ /R [
+ 40
+ 506
+ 179
+ 579
+ ]
+ /T 10 0 R
+ /V 32 0 R
+>>
+endobj
+
+%% Original object ID: 192 0
+34 0 obj
+<<
+ /N 35 0 R
+ /P 6 0 R
+ /R [
+ 204
+ 453
+ 565
+ 575
+ ]
+ /T 10 0 R
+ /V 33 0 R
+>>
+endobj
+
+%% Original object ID: 191 0
+35 0 obj
+<<
+ /N 36 0 R
+ /P 6 0 R
+ /R [
+ 40
+ 436
+ 179
+ 454
+ ]
+ /T 10 0 R
+ /V 34 0 R
+>>
+endobj
+
+%% Original object ID: 190 0
+36 0 obj
+<<
+ /N 37 0 R
+ /P 6 0 R
+ /R [
+ 204
+ 436
+ 565
+ 454
+ ]
+ /T 10 0 R
+ /V 35 0 R
+>>
+endobj
+
+%% Original object ID: 189 0
+37 0 obj
+<<
+ /N 38 0 R
+ /P 6 0 R
+ /R [
+ 40
+ 424
+ 565
+ 442
+ ]
+ /T 10 0 R
+ /V 36 0 R
+>>
+endobj
+
+%% Original object ID: 188 0
+38 0 obj
+<<
+ /N 39 0 R
+ /P 6 0 R
+ /R [
+ 40
+ 73
+ 296
+ 424
+ ]
+ /T 10 0 R
+ /V 37 0 R
+>>
+endobj
+
+%% Original object ID: 187 0
+39 0 obj
+<<
+ /N 81 0 R
+ /P 6 0 R
+ /R [
+ 309
+ 73
+ 565
+ 424
+ ]
+ /T 10 0 R
+ /V 38 0 R
+>>
+endobj
+
+%% Contents for page 1
+%% Original object ID: 208 0
+40 0 obj
+<<
+ /Length 41 0 R
+>>
+stream
+/CS0 cs 0 0 0 scn
+/CS0 CS 0 0 0 SCN
+0 w 1 j 1 J
+/GS0 gs
+562.564 594.538 -520.044 0.51 re
+B*
+42.52 554.343 133.228 -0.227 re
+B*
+206.929 554.343 355.635 -0.227 re
+B*
+42.52 450.992 133.228 -0.227 re
+B*
+206.929 450.992 355.635 -0.227 re
+B*
+BT
+/T1_0 1 Tf
+9.9465 0 0 9.5641 42.5197 627.4203 Tm
+[(R)21(eply)]TJ
+13.9873 0 0 13.4495 42.5197 605.5369 Tm
+[(F)10(olding)-336(with)-339(thermal)-337(mechanic)-8(al)-334(feedback:)-334(Ano)10(ther)-339(r)13(ep)-6(l)11(y)]TJ
+/T1_1 1 Tf
+6.6308 0 0 6.376 42.5197 545.4991 Tm
+[(K)33(eywords:)]TJ
+/T1_0 1 Tf
+0 -1.343 TD
+(Folding)Tj
+T*
+[(Coupled)-333(processes)]TJ
+T*
+[(Shear)-321(heating)]TJ
+T*
+[(S)24(train-r)20(ate)-324(sof)-13(tening)]TJ
+/T1_2 1 Tf
+0.4549 Tc 9.3248 0 0 8.9663 206.9291 564.0377 Tm
+(abstract)Tj
+/T1_0 1 Tf
+0 Tc 7.4599 0 0 7.1731 206.9291 544.5353 Tm
+[(In)-431(response)-435(to)]TJ
+0 0 0.4 scn
+7.197 0 Td
+[(Schmi)-13(d)-425(et)-438(al.)-429(\(20)26(1)55(0\))]TJ
+0 0 0 scn
+9.545 0 Td
+[(:)-432(\(i\))-433(The)-437(linea)-11(r)-430(Biot)-424(theory)-415(assume)-14(s)-429(fold)-436(w)18(a)16(velengths)-434(gro)20(w)-430(inde-)]TJ
+-16.742 -1.336 Td
+[(pende)-12(ntly)-259(of)-279(each)-277(other;)-264(this)-280(is)-275(the)-283<8f8f42696f74>-270(process\220\220.)-275(\(ii\))-278(The)-277(Biot)-272(theory)-286(predicts)-280(that)-263(only)-259(one)-275(w)18(a)24(velength)]TJ
+0 -1.328 TD
+[(grow)22(s)-391(to)-381(\223nite)-381(am)-10(plitudes;)-398(a)-394(spread)-384(of)-393(w)18(a)16(velengths)-396(at)-388(\223nite)-388(amplitu)-14(des)-395(indicates)-391(non-Bi)-10(ot)-381(processes)]TJ
+0 -1.336 TD
+[(operate.)-461(\(iii\))-474(Boun)-11(dary)-450(condi)-13(tions)-470(control)-474(the)-457(w)18(a)16(velength)-468(that)-476(gro)19(ws.)-463(\(iv\))-461(Non-linear)-473(be)-10(ha)20(viou)-12(r)-453(can)]TJ
+T*
+[(result)-452(in)-458(non-Bi)-10(ot)-442(be)-10(ha)20(viou)-12(r)-453(such)-459(as)-459(localised)-468(foldin)-12(g)-455(with)-456(no)-460(domina)-12(nt)-453(w)18(a)16(velength.)-452(\()-8(v\))-455(S)18(train-r)16(ate)]TJ
+T*
+[(sof)-17(tening)-534(is)-534(one)-541(form)-537(of)-537(non-l)-10(inearity)-524(and)-535(leads)-544(to)-526(foldin)-12(g)-530(and)-542(boudina)-14(ge)-527(at)-532(all)-534(scal)-12(es;)-539(thermal\205)]TJ
+0 -1.328 TD
+[(mecha)-14(nical)-412(feedback)-412(leads)-415(to)-404(strain-ra)13(te)-400(sof)-17(tening)-412(producing)-410(foldin)-12(g)-409(and)-413(boudin)-15(age)-397(at)-410(the)-412(kilome)-14(tre)]
+endstream
+endobj
+
+41 0 obj
+2403
+endobj
+
+%% Contents for page 1
+%% Original object ID: 215 0
+42 0 obj
+<<
+ /Length 43 0 R
+>>
+stream
+TJ
+0 -1.336 TD
+[(scale.)-448(\(vi\))-439(The)-444(larger)-434(the)-442(visco)-11(sity)-442(ratio)-420(the)-442(larger)-434(the)-442(feedback)-442(effect)-15(.)-432(\(vii\))-444(The)-444(Biot)-432(process)-438(may)-434(be)]TJ
+T*
+[(impor)-13(tant)-339(in)-336(some)-339(defor)-14(med)-334(roc)15(k)-18(s)-331(but)-333(o)15(t)-8(hers)-336(perhaps)-334(dom)-11(inate.)]TJ
+14.804 -1.328 Td
+[(Cro)18(wn)-343(Cop)15(yrigh)-11(t)]TJ
+/T1_3 1 Tf
+8.17 0 Td
+<02>Tj
+/T1_0 1 Tf
+1.125 0 Td
+[(20)-34(09)-338(Publ)-11(ished)-344(by)-323(Els)-10(evier)-336(Ltd.)-339(Al)-11(l)-332(rights)-344(reserved.)]TJ
+/T1_4 1 Tf
+8.2888 0 0 7.9702 42.5197 413.518 Tm
+[(1)52(.)-598(What)-336(is)-332(and)-334(is)-332(not)-326(part)-322(of)-341(the)-337(Bio)15(t)-337(theory?)]TJ
+/T1_0 1 Tf
+1.443 -2.625 Td
+[(Equa)-16(t)-12(i)-10(on)-17(s)-274(d)-16(es)-14(c)-11(r)-11(i)-10(b)-9(i)-10(n)-12(g)-273(t)-12(h)-12(e)-273<93>-8(n)-12(i)-10(te)-279(d)-9(ef)-20(or)-17(m)-14(a)-10(ti)-15(o)-12(n)-271(o)-12(f)-280(a)-270(l)-10(ayer)-266(o)-12(r)-271(s)-14(er)-18(i)-10(e)-13(s)]TJ
+-1.443 -1.309 Td
+[(o)-12(f)-341(l)-10(ayers)-349(a)-10(re)-346(d)-9(i)-10(s)-8(c)-11(u)-9(s)-14(s)-8(e)-13(d)-344(by)]TJ
+0 0 0.4 scn
+12.339 0 Td
+[(H)-13(u)-9(n)-12(t)-334(et)-354(a)-10(l)-10(.)-339(\()-12(1)52(9)-9(97\))]TJ
+0 0 0 scn
+0.0098 Tc 8.625 0 Td
+[(an)10(d)]TJ
+0 0 0.4 scn
+2.066 0 Td
+[(Muhlhaus)-333(e)10(t)-344(al.)]TJ
+0.01 Tc -23.029 -1.316 Td
+[(\(1)62(994,)-164(1)62(998)]TJ
+0 0 0 scn
+0 Tc 5.308 0 Td
+[(\))-12(.)-243(I)-13(n)-244(t)-12(he)-251(ge)-13(n)-12(era)-14(l)-249(c)-11(a)-10(s)-8(e)-246(t)-12(h)-12(es)-14(e)-246(e)-13(qua)-10(ti)-15(o)-12(n)-12(s)-247(a)-10(re)-244(p)-9(a)-10(r)-11(ti)-15(a)-10(l)-249(d)-9(i)-10(f)-13(fe)-20(r)44(-)]TJ
+-5.308 -1.309 Td
+[(e)-13(nt)-17(i)-10(a)-10(l)-304(e)-13(qua)-10(ti)-15(o)-12(n)-12(s)-8(,)-304(f)-13(o)-12(u)-9(r)-11(th)-311(o)-12(rde)-20(r)-305(i)-10(n)-306(s)-14(p)-9(a)-10(t)-12(i)-10(a)-10(l)-297(v)14(a)-10(r)-11(i)-10(a)-10(b)-9(l)-10(e)-13(s)-302(b)-9(u)-16(t)-306(a)-10(l)-10(s)-8(o)-307(a)-311(fu)-22(nc)-15(-)]TJ
+0 -1.316 TD
+[(t)-12(i)-10(on)-599(o)-12(f)-601(t)-12(i)-10(me)-602(a)-10(n)-12(d)-597(may)-591(or)-598(m)-14(ay)-590(n)-12(ot)-592(b)-9(e)-595(s)-8(o)-12(lvabl)-18(e)-595(u)-9(s)-8(i)-10(n)-12(g)-594(Fou)-21(ri)-14(e)-13(r)]TJ
+0 -1.309 TD
+[
+endstream
+endobj
+
+43 0 obj
+2273
+endobj
+
+%% Contents for page 1
+%% Original object ID: 216 0
+44 0 obj
+<<
+ /Length 45 0 R
+>>
+stream
+(e)14(x)-16(p)-9(a)-10(ns)-19(i)-10(on)-414(m)-14(et)-19(ho)-17(d)-9(s)-8(.)-414(If)-429(th)-17(e)-410(c)-11(on)-17(s)-8(t)-12(i)-10(t)-12(u)-9(t)-12(ive)-406(e)-13(q)15(u)-9(a)-10(t)-12(i)-10(o)-12(ns)-416(a)-10(re)-408(l)-10(i)-10(n)-12(ea)-16(r)-401(a)-10(nd)]TJ
+0 -1.316 TD
+[(t)-12(he)-490(d)-9(e)-13<94>-8(e)-13(ct)-16(i)-10(o)-12(ns)-491(a)-10(re)-483(s)-14(ma)-17(l)-10(l)-482(t)-12(h)-12(en)-490(m)-14(a)-10(n)23(y)-471(o)-12(f)-492(t)-12(h)-12(e)-479(c)-11(o)-12(mp)-16(l)-10(i)-10(c)-11(a)-10(te)-12(d)-488(ter)-16(ms)]TJ
+0 -1.309 TD
+[(\()-12(i)-10(n)-319(p)-16(a)-10(rt)-16(i)-10(c)-11(u)-9(l)-10(a)-10(r)-346(t)-12(he)-353(t)-12(i)-10(me)-356(d)-9(er)-18(ivat)-11(ive)-9(s)-8(\))-347(v)14(a)-10(n)-12(i)-10(s)-8(h)-347(a)-10(n)-12(d)-344(o)-12(ne)-353(a)-10(r)-11(rive)-20(s)-343(a)-10(t)-347(th)-17(e)]TJ
+0 -1.316 TD
+[(c)-11(l)-10(a)-10(s)-8(s)-14(i)-10(c)-11(a)-10(l)-612(B)-9(i)-10(ot)-606(exp)-11(re)-11(s)-8(s)-8(i)-10(o)-12(n)-12(.)-612(T)-9(h)-12(es)-21(e)-615(gover)-15(n)-12(i)-10(n)-12(g)-601(e)-13(q)15(u)-9(a)-10(t)-12(i)-10(o)-12(ns)-621(c)-11(a)-10(n)-620(s)-8(t)-12(i)-10(l)-10(l)]TJ
+T*
+[(re)-11(p)-9(re)-11(s)-8(en)-18(t)-573(e)-13(l)-10(a)-10(s)-8(t)-12(i)-10(c)-11(,)-585(vi)-16(s)-14(c)-11(ou)-15(s)-589(or)-591(p)-9(l)-10(a)-10(s)-14(ti)-15(c)-585(b)-9(e)-13(havi)-17(o)-12(u)-9(r)44(,)-585(a)-10(s)]TJ
+0 0 0.4 scn
+0.0101 Tc 24.869 0 Td
+[(Bio)10(t)-575(\(1)62(965\))]TJ
+0 0 0 scn
+0 Tc -24.869 -1.309 Td
+[(p)-9(o)-12(i)-10(nt)-17(s)-267(ou)-15(t)-12(,)-263(s)-14(o)-252(th)-17(e)-267(t)-12(he)-18(or)-17(y)-266(i)-10(s)-261(p)-16(ower)-18(fu)-15(l)-10(.)-263(W)29(e)-267(have)-260(t)-12(he)-271(h)-12(i)-10(gh)-18(es)-21(t)-265(res)-19(p)-9(ec)-17(t)]TJ
+T*
+[(f)-13(or)-482(B)-9(i)-10(ot)-11<90>-10(s)-473(wor)-11(k)-474(a)-10(nd)-485(have)-472(ne)-18(ver)-482(i)-10(m)-14(p)-9(l)-10(i)-10(ed)-481(t)-12(h)-12(a)-10(t)-470(t)-12(h)-12(i)-10(s)-473(i)-10(s)-479(a)-10(t)-470(f)-13(a)-10(u)-9(l)-10(t)-464(o)-12(r)]TJ
+0 -1.309 TD
+[(s)-8(h)-12(o)-12(u)-9(l)-10(d)-241(b)-9(e)-246(n)-12(eg)-20(l)-10(ec)-17(te)-12(d)-9(.)-243(T)-9(h)-12(e)-246(es)-21(s)-8(e)-13(nc)-15(e)-246(of)-251(B)-16(i)-10<6f7490>-14(s)-247(t)-12(he)-18(or)-17(y)-246(i)-10(s)-247(th)-17(a)-10(t)-245(t)-12(he)-251(d)-9(e)-13(fo)-19(r)44(-)]TJ
+0 -1.316 TD
+[(ma)-17(t)-12(i)-10(o)-12(n)-525(of)-539(l)-10(ayered)-535(ma)-17(te)-12(ri)-21(a)-10(l)-10(s)-527(i)-10(s)-527(i)-10(nt)-17(r)-11(i)-10(ns)-19(i)-10(c)-11(a)-10(l)-10(ly)-522(u)-16(ns)-19(ta)-15(b)-9(l)-10(e)-533(a)-10(nd)-533(f)-13(ol)-16(d)-9(s)]
+endstream
+endobj
+
+45 0 obj
+2509
+endobj
+
+%% Contents for page 1
+%% Original object ID: 217 0
+46 0 obj
+<<
+ /Length 47 0 R
+>>
+stream
+TJ
+0 -1.309 TD
+[(b)-9(e)-13(gi)-16(n)-470(to)-469(g)-13(row)-469(d)-9(e)-13(p)-9(en)-18(d)-9(i)-10(n)-12(g)-458(o)-12(n)-470(th)-17(e)-472(me)-21(c)-11(ha)-14(n)-12(i)-10(c)-11(a)-10(l)-468(c)-11(o)-12(n)-12(tr)-10(a)-10(s)-8(t)-470(b)-9(e)-13(twe)-13(e)-13(n)]TJ
+0 -1.316 TD
+[(l)-10(ayers)-21(.)-428(T)-9(h)-12(e)-431(a)-10(n)-12(a)-10(lys)-10(i)-10(s)-432(a)-10(s)-8(s)-14(u)-9(me)-21(s)-432(\()-12(tr)-17(u)-9(e)-431(f)-13(o)-12(r)-422(l)-10(i)-10(ne)-18(a)-10(r)-435(s)-8(yste)-19(ms)-439(a)-10(n)-12(d)-433(s)-8(m)-14(a)-10(l)-10(l)]TJ
+0 -1.309 TD
+[(d)-9(e)-13<94>-8(ec)-17(t)-12(i)-10(o)-12(ns)-19(\))-231(t)-12(h)-12(a)-10(t)-231(t)-12(h)-12(e)-225(wa)24(vel)-16(e)-13(ng)-18(t)-12(hs)-245(th)-17(a)-10(t)-238(b)-9(eg)-20(i)-10(n)-237(to)-230(g)-13(row)-209(c)-11(a)-10(n)-237(b)-9(e)-232(re)-11(p)-9(re)-11(-)]TJ
+0 -1.316 TD
+[(s)-8(e)-13(n)-12(ted)-253(by)-234(a)-249(Fou)-14(r)-11(i)-10(e)-13(r)-251(s)-8(er)-18(i)-10(e)-13(s)-247(a)-10(n)-12(d)-248(t)-12(ha)-14(t)-252(t)-12(h)-12(e)-246(g)-13(rowt)-16(h)-251(of)-258(ea)-16(c)-11(h)-251(wa)24(ve)-13(l)-10(en)-18(gt)-18(h)]TJ
+0 -1.309 TD
+[(i)-10(s)-233(i)-10(nd)-14(e)-13(p)-9(e)-13(nd)-14(e)-13(n)-12(t)-217(o)-12(f)-225(a)-10(l)-10(l)-236(ot)-11(he)-18(rs)-19(.)-229(T)-9(h)-12(e)-225(e)-13(mp)-16(h)-12(a)-10(s)-8(i)-10(s)-233(i)-10(s)-233(on)-236(d)-9(i)-10(s)-14(c)-11(over)-16(i)-10(n)-12(g)-225(w)-15(hi)-15(c)-11(h)]TJ
+0 -1.316 TD
+[(wa)24(ve)-13(l)-10(en)-18(gt)-18(h)-347(grows)-346(f)-13(a)-10(s)-8(te)-12(s)-8(t)-347(a)-10(nd)-349(t)-12(h)-12(i)-10(s)-343(b)-9(ec)-17(o)-12(me)-21(s)-343(th)-17(e)-342(d)-16(om)-13(i)-10(n)-12(a)-10(n)-12(t)-340(wa)24(ve)-13(-)]TJ
+0.0108 Tc 0 -1.309 TD
+[(len)11(g)-7(t)11(h)-6(.)-314(T)2(he)-317(an)11(al)11(y)11(s)1(is)-318(is)-311(st)11(r)-6(i)1(ctl)11(y)-293(applicable)]TJ
+/T1_1 1 Tf
+0.0099 Tc 19.199 0 Td
+(only)Tj
+/T1_0 1 Tf
+0 Tc 2.25 0 Td
+[(to)-312(t)-12(h)-12(e)-321(m)-14(om)-20(en)-18(t)-327(th)-17(e)]TJ
+0.0062 Tc -21.449 -1.316 Td
+[(in)-5(st)-6(abilit)-6(ies)-494(b)-3(e)-7(g)6(i)-10(n)-491(to)-484(gr)-4(ow)-459(an)-5(d)-488(o)]TJ
+0.0038 Tc [(n)-13(l)4(y)-491(f)4(o)-15(r)-479(c)-7(e)4(r)-14(t)-8(ain)-487(lin)-8(ea)-13(r)-493(s)-4(yste)-15(ms)]TJ
+0 Tc T*
+[(c)-11(a)-10(n)-470(on)-17(e)-472(e)14(x)-9(t)-12(rap)-16(o)-12(l)-10(a)-10(te)-470(t)-12(hi)-15(s)-473(re)-11(s)-8(u)-9(l)-10(t)-470(to)-469<93>-8(n)-12(i)-10(te)-470(a)-10(mp)-16(l)-10(i)-10(t)-12(u)-9(d)-9(e)-13(s)-8(.)-469(I)-13(n)-470(gen)-17(er)-11(a)-10(l)]
+endstream
+endobj
+
+47 0 obj
+2441
+endobj
+
+%% Contents for page 1
+%% Original object ID: 218 0
+48 0 obj
+<<
+ /Length 49 0 R
+>>
+stream
+TJ
+0 -1.316 TD
+[(t)-12(he)-422(g)-13(rowt)-16(h)-415(o)-12(f)-417(i)-10(n)-12(i)-10(t)-12(i)-10(a)-10(l)-413(p)-9(e)-13(r)-11(tu)-21(rb)-14(a)-10(t)-12(i)-10(o)-12(ns)-423(to)-421<93>-8(ni)-21(te)-415(s)-8(i)-10(z)-10(e)-417(c)-11(a)-10(n)-12(not)-426(b)-9(e)-417(p)-9(re)-11(-)]TJ
+0 -1.309 TD
+[(d)-9(i)-10(c)-11(te)-12(d)-529(f)-13(rom)-537(th)-17(e)-533(res)-19(u)-9(l)-10(t)-12(s)-527(of)-539(a)-530(l)-10(i)-10(n)-12(ea)-16(r)-531(p)-9(e)-13(r)-11(tu)-14(r)-11(b)-9(a)-10(t)-12(i)-10(o)-12(n)-525(a)-10(n)-12(a)-10(lys)-10(i)-10(s)-8(.)-530(I)-13(t)-525(i)-10(s)]TJ
+0.0049 Tc 0 -1.316 TD
+[(po)-8(ssi)-5(b)-11(l)-5(e,)-272(f)-8(o)5(r)-272(i)-5(n)-7(s)-3(t)-7(a)-5(nc)-11(e)-9(,)-265(t)-7(h)5(a)-10(t)-253(ot)-6(h)-7(e)5(r)-273(i)-5(n)-7(s)-3(t)-7(a)-5(bilit)-7(ies)-276(c)-6(an)-260(de)-9(ve)-8(lop)-270(s)-9(eque)-9(n)-7(-)]TJ
+0.0099 Tc 0 -1.309 TD
+[(tiall)10(y)-198(af)-10(t)10(e)-2(r)-220(t)-2(h)10(e)-227<93727374>-221(instability)-222(\()]TJ
+0 0 0.4 scn
+0.0118 Tc [(Hunt)-206(e)12(t)-226(al.,)-217(20)-25(0)-11(6)]TJ
+0 0 0 scn
+0 Tc 21.573 0 Td
+[(\))-12(.)-229(Ex)-14(te)-12(n)-12(s)-8(i)-10(o)-12(ns)-238(o)-12(f)-239(t)-12(he)]TJ
+-21.573 -1.316 Td
+[(s)-8(m)-14(a)-10(l)-10(l)-249(d)-9(e)-13<94>-8(ec)-17(t)-12(i)-10(on)-257(t)-12(h)-12(eo)-19(ry)-257(to)-250(l)-10(a)-10(r)-11(ge)-252(d)-9<6594>-15(e)-13(c)-11(ti)-22(on)-17(s)-247(\()]TJ
+0 0 0.4 scn
+0.0097 Tc 20.307 0 Td
+[(Muhlh)10(a)-5(us)-244(e)10(t)-248(al.,)-172(1)62(994,)]TJ
+0.0094 Tc -20.307 -1.309 Td
+[(1)62(998)]TJ
+0 0 0 scn
+0 Tc [(\))-347(a)-10(re)-353(s)-8(t)-12(i)-10(l)-10(l)-345(p)-9(a)-10(r)-11(t)-340(of)-368(t)-12(he)-353(B)-9(i)-17(ot)-346(a)-10(p)-9(p)-9(ro)-10(a)-10(c)-11(h)-347(s)-8(o)-348(l)-10(o)-12(n)-12(g)-348(a)-10(s)-343(g)-13(rowt)-16(h)-12(-)-11(i)-10(nd)-14(e)-13(-)]TJ
+0 -1.316 TD
+[(p)-9(e)-13(nd)-14(e)-13(n)-12(c)-11(e)-232(of)-251(t)-12(he)-237(u)-16(ns)-19(ta)-15(b)-9(l)-10(e)-239(mo)-13(d)-16(es)-240(i)-10(s)-233(p)-9(re)-11(s)-8(e)-13(r)-11(ved)-15(.)-236(If)-245(no)-17(n-)-16(l)-10(i)-10(n)-12(ea)-16(r)-237(b)-9(eh)-18(av-)]TJ
+0 -1.309 TD
+[(i)-10(o)-12(u)-9(r)-483(i)-17(s)-486(i)-10(nc)-15(l)-10(u)-16(d)-9(ed)-494(t)-12(h)-12(en)-497(th)-17(e)-492(as)-17(s)-8(u)-9(m)-14(pti)-17(o)-12(n)-483(o)-12(f)-485(g)-13(rowt)-16(h)-12(-i)-14(n)-12(d)-9(e)-13(p)-9(en)-18(d)-9(e)-13(nc)-15(e)]
+endstream
+endobj
+
+49 0 obj
+2296
+endobj
+
+%% Contents for page 1
+%% Original object ID: 219 0
+50 0 obj
+<<
+ /Length 51 0 R
+>>
+stream
+TJ
+32.454 41.996 Td
+[(may)-475(not)-474(b)-9(e)-465(tr)-17(u)-9(e)-465(a)-10(n)-12(d)-467(a)-10(p)-9(p)-9(ro)-10(a)-10(c)-11(he)-18(s)-466(oth)-16(e)-13(r)-463(t)-12(ha)-14(n)-470(th)-17(e)-465(l)-10(i)-10(n)-12(ea)-16(r)-463(Fo)-12(u)-9(r)-11(i)-10(er)]TJ
+T*
+[(a)-10(na)-14(lys)-10(i)-10(s)-308(n)-12(e)-13(ed)-316(to)-312(b)-9(e)-308(i)-10(m)-14(p)-9(l)-10(em)-21(en)-18(ted)-21(.)]TJ
+1.443 -1.316 Td
+[(T)-9(he)-18(re)-415(a)-10(re)-408(n)-12(ow)-410(t)-12(wo)-410(ques)-21(ti)-22(on)-17(s)-411(to)-415(b)-9(e)-417(a)-10(s)-8(k)-9(ed)-426(of)-429(t)-12(h)-12(e)-410(s)-14(tr)-17(i)-10(c)-11(t)-416(s)-8(ma)-17(l)-10(l)]TJ
+-1.443 -1.309 Td
+[(a)-10(mp)-16(l)-10(i)-10(t)-12(u)-9(d)-9(e)-506(B)-9(i)-10(ot)-503(t)-12(he)-18(or)-17(y:)-504(\()-12(i)-10(\))-505(Wh)-17(a)-10(t)-505(ha)-14(p)-16(p)-9(en)-18(s)-500(a)-10(t)-505(l)-10(a)-10(r)-11(ge)-505(d)-9<6594>-22(ec)-17(t)-12(i)-10(on)-17(s)-8(?)]TJ
+0 -1.316 TD
+[(\(i)-15(i)-10(\))-566(W)-12(ha)-14(t)-566(h)-12(a)-10(p)-9(p)-9(e)-13(ns)-573(i)-10(f)-574(t)-12(h)-12(e)-561(s)-14(yste)-19(m)-561(i)-10(s)-568(no)-17(n)-12(-l)-14(i)-10(n)-12(e)-13(a)-10(r)-552(a)-10(s)-568(a)-10(ri)-14(s)-14(es)-575(fr)-11(om)]TJ
+0 -1.309 TD
+[(geo)-18(me)-21(tr)-17(i)-10(c)-11(a)-10(l)-427(s)-8(o)-12(f)-20(ten)-17(i)-10(n)-12(g,)-434(fr)-11(om)-430(s)-14(tra)-13(i)-17(n)-422(s)-8(o)-12(f)-20(te)-12(ni)-15(n)-12(g)-417(or)-434(fro)-16(m)-425(s)-8(t)-12(rai)-17(n)-12(-)-11(rate)]TJ
+0 -1.316 TD
+[(s)-8(o)-12(f)-20(ten)-17(i)-10(n)-12(g?)]TJ
+/T1_1 1 Tf
+0 -2.625 TD
+[(1)73(.)68(1)73(.)-603(Finite)-335(amp)15(litude)-334(foldin)14(g)]TJ
+/T1_0 1 Tf
+1.443 -2.625 Td
+[(As)-343(far)-335(as)-346(we)-329(are)-335(a)24(w)20(ar)13(e,)-345(the)-345(only)-327(strictly)-312(anal)14(ytical)-346(solutions)-346(to)]TJ
+-1.443 -1.316 Td
+[(large)-584(amplitude)-588(viscous)-597(folding)-592(ar)13(e)-595(those)-591(by)]TJ
+0 0 0.4 scn
+22.626 0 Td
+[(Muhlhaus)-591(et)-593(al.)]TJ
+-22.626 -1.309 Td
+[(\(1)67(994,)-257(1)59(998)]TJ
+0 0 0 scn
+5.301 0 Td
+[(\))-327(which)-332(sho)16(w)-329(that)-333(the)-324(Biot)-317(theory)-313(at)-330(small)-325(de\224ections)]TJ
+-5.301 -1.316 Td
+[(can)-258(be)-262(e)21(xt)13(ended)-261(to)-250(large)-249(de\224ections)-259(but)]TJ
+/T1_1 1 Tf
+18.392 0 Td
+[(only)-255(one)-258(wav)31(elength)-259(gro)20(ws)]TJ
+-18.392 -1.309 Td
+
+endstream
+endobj
+
+51 0 obj
+2288
+endobj
+
+%% Contents for page 1
+%% Original object ID: 221 0
+52 0 obj
+<<
+ /Length 53 0 R
+>>
+stream
+[(t)15(o)-686(large)-681(amp)15(litudes)]TJ
+/T1_0 1 Tf
+9.918 0 Td
+[(and)-687(this)-677(w)20(a)18(v)14(elength)-680(is)-688(g)14(ov)22(erned)-681(by)-672(the)]TJ
+-9.918 -1.316 Td
+[(boundary)-537(conditions.)-555(This)-558(result)-556(is)-558(support)12(ed)-563(by)-528(all)-556(computer)]TJ
+0 -1.309 TD
+[(models)-463(we)-459(kno)15(w)-459(of)-470(\(including)-462(those)-468(report)20(ed)-467(in)]TJ
+0 0 0.4 scn
+23.816 0 Td
+[(Schmid)-465(et)-470(al.,)]TJ
+-23.816 -1.316 Td
+[(20)36(1)59(0)]TJ
+0 0 0 scn
+2.196 0 Td
+[(\).)-337(Thus)-338(the)-331(assertion)-342(by)]TJ
+0 0 0.4 scn
+11.183 0 Td
+[(Schmid)-342(et)-333(al.)-338(\(20)31(1)59(0\))]TJ
+0 0 0 scn
+9.582 0 Td
+[(that)-340(a)-338(spectrum)]TJ
+-22.961 -1.316 Td
+[(of)-443(w)20(a)24(velength)11(s)-445(is)-448(to)-435(be)-447(e)21(xpect)14(ed,)-450(at)-446(large)-434(amplitudes,)-442(from)-434(the)]TJ
+T*
+[(Biot)-392(theory)-402(is)-407(at)-398(odds)-400(with)-404(the)-407(anal)14(ytical)-408(solutions)-407(and)-400(assumes)]TJ
+0 -1.316 TD
+[(that)-319(the)-318(dispersion)-320(of)-320(w)20(a)18(v)14(elengths)-318(at)-323(the)-318(moment)-311(of)-320(instability)-320(is)]TJ
+0 -1.309 TD
+[(r)16(e\224ecte)10(d)-399(in)-404(the)-393(subseq)16(uent)-395<936e6974>13(e)-403(amplitude)-397(folds.)-397(The)-396(analyti)13(cal)]TJ
+0 -1.316 TD
+[(solutions)-216(show)-210(that)-217(the)-222(dominant)-214(w)20(a)24(vele)12(ngth)-219(gro)18(ws)-207(pr)14(efere)11(ntially)47(,)]TJ
+0 -1.309 TD
+[(is)-250(the)-249(onl)14(y)-239(one)-250(preserv)17(ed)-248(af)-9(ter)-242(rel)13(ativ)17(ely)-228(small)-250(strain)13(s)-254(and)-249(depends)]TJ
+0 -1.316 TD
+[(on)-257(the)-263(boundary)-236(conditions)-258(as)-257(we)-247(discussed)-261(in)]TJ
+0 0 0.4 scn
+21.436 0 Td
+[(Hobbs)-257(et)-265(al.)-256(\(20)-31(08\))]TJ
+0 0 0 scn
+8.625 0 Td
+(.)Tj
+-30.06 -1.309 Td
+[(W)42(e)-376(take)-379(the)-386(data)-376(that)-381(show)-347(a)-379(spread)-374(of)-374(w)20(a)18(v)14(elength)-379(to)-360(thickne)11(ss)]TJ
+T*
+[(r)16(atios)-209(in)-206(natur)15(al)-211(folds)-202(to)-196(indicate)-196(that)-203(proce)12(sses)-207(othe)12(r)-210(than)-202(the)-201(strict)]TJ
+0 -1.309 TD
+[(Biot)-290(pr)14(ocess)-298(are)-294(oper)16(ating)-303(in)-295(nature.)]TJ
+/T1_1 1 Tf
+0 -2.632 TD
+[(1)73(.2.)-599(In\224uence)-335(of)-334(non-linearities)]TJ
+0 0 0.4 scn
+
+endstream
+endobj
+
+53 0 obj
+2290
+endobj
+
+%% Contents for page 1
+%% Original object ID: 222 0
+54 0 obj
+<<
+ /Length 55 0 R
+>>
+stream
+/T1_0 1 Tf
+1.443 -2.625 Td
+[(Hunt)-190(et)-210(al.)-208(\(1)67(99)16(7\))]TJ
+0 0 0 scn
+7.961 0 Td
+[(emphasise)-199(that)-210(the)-208(Bio)17(t)-210(theory)-204(is)-209(a)-201(special)-207(case)]TJ
+-9.405 -1.309 Td
+[(of)-593(a)-598(g)14(ener)12(al)-601(appr)16(oach)-599(t)15(o)-601(folding)-592(in)-569(which)-592(non-linearities)-590(are)]TJ
+ET
+562.564 646.583 -520.044 3.005 re
+B*
+0.902 0.902 0.902 scn
+116.674 655.483 375.194 65.424 re
+f
+q
+60.7899933 0 0 66.5010071 41.7259979 654.9160004 cm
+/Im0 Do
+Q
+BT
+0 0 0 scn
+/T1_5 1 Tf
+8.2888 0 0 7.9702 226.9417 713.9337 Tm
+[(Contents)-292(lists)-299(available)-299(at)]TJ
+0 0 0.4 scn
+12.277 0 Td
+(ScienceDirect)Tj
+0 0 0 scn
+/T1_0 1 Tf
+14.5054 0 0 13.9476 207.0425 684.9636 Tm
+[(Journal)-339(of)-335(Structural)-343(Geolog)-8(y)]TJ
+/T1_5 1 Tf
+0.1116 Tc 8.2888 0 0 7.9702 190.9984 657.9778 Tm
+[(journal)-337(h)-3(omepage:)-337(www.el)]TJ
+0.1119 Tc 15.259 0 Td
+(sevier.com/locate/jsg)Tj
+ET
+q
+506.041 726.916 m
+562.734 726.916 l
+562.734 655.37 l
+506.041 655.37 l
+W n
+q
+56.8370056 0 0 71.5460052 506.0410004 655.3699951 cm
+/Im1 Do
+Q
+Q
+BT
+/T1_0 1 Tf
+0 Tc 6.6308 0 0 6.376 42.5197 60.2079 Tm
+[(0)33(1)59(9)33(1-81)62(4)51(1/$)-335<85>-334(see)-335(front)-324(matter)-323(Crow)21(n)-336(Cop)21(yright)]TJ
+/T1_3 1 Tf
+22.794 0 Td
+<02>Tj
+/T1_0 1 Tf
+1.12 0 Td
+[(20)-36(09)-335(Published)-333(by)-323(Elsevier)-339(Ltd.)-334(All)-335(rights)-332(reser)15(ved.)]TJ
+-23.914 -1.351 Td
+[(doi:1)61(0.)74(1)59(0)33(1)59(6/j.jsg.20)-30(09.)65(1)68(0.0)-38(05)]TJ
+ET
+491.754 726.86 -449.234 0.284 re
+B*
+BT
+/T1_0 1 Tf
+6.376 0 0 6.376 231.4771 740.8062 Tm
+[(Journal)-342(of)-334(S)22(tructural)-326(Geology)-341(32)-341(\(20)32(1)56(0\))-335(1)65(3)39<318531>62(34)]TJ
+ET
+
+endstream
+endobj
+
+55 0 obj
+1701
+endobj
+
+%% Original object ID: 223 0
+56 0 obj
+<<
+ /Alternate /DeviceRGB
+ /N 3
+ /Length 57 0 R
+>>
+stream
+
+
+
+'
+=
+T
+j
+
+
+
+
+
+ " 9 Q i  * C \ u & @ Z t .Id %A^z &Ca~1Om&Ed#Cc'Ij4Vx&IlAe@e Ek*Qw;c*R{Gp@j>i  A l !!H!u!!!"'"U"""#
+#8#f###$$M$|$$% %8%h%%%&'&W&&&''I'z''( (?(q(())8)k))**5*h**++6+i++,,9,n,,- -A-v--..L.../$/Z///050l0011J1112*2c223 3F3334+4e4455M555676r667$7`7788P8899B999:6:t::;-;k;;<'<e<<="=a==> >`>>?!?a??@#@d@@A)AjAAB0BrBBC:C}CDDGDDEEUEEF"FgFFG5G{GHHKHHIIcIIJ7J}JK KSKKL*LrLMMJMMN%NnNO
+k͂0WGrׇ;iΉ3dʋ0cʍ1fΏ6n֑?zM _ɖ4
+uL$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-
+zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)Km
+endstream
+endobj
+
+%QDF: ignore_newline
+57 0 obj
+3144
+endobj
+
+%% Original object ID: 207 0
+58 0 obj
+<<
+ /OP false
+ /OPM 1
+ /SA false
+ /SM 0.02
+ /Type /ExtGState
+ /op false
+>>
+endobj
+
+%% Original object ID: 196 0
+59 0 obj
+<<
+ /BaseFont /IKFFDE+AdvOT863180fb
+ /Encoding 82 0 R
+ /FirstChar 36
+ /FontDescriptor 83 0 R
+ /LastChar 168
+ /Subtype /Type1
+ /ToUnicode 84 0 R
+ /Type /Font
+ /Widths [
+ 520
+ 614
+ 0
+ 0
+ 364
+ 364
+ 0
+ 0
+ 229
+ 406
+ 229
+ 343
+ 572
+ 572
+ 572
+ 572
+ 572
+ 572
+ 572
+ 572
+ 572
+ 572
+ 343
+ 343
+ 0
+ 0
+ 0
+ 531
+ 781
+ 656
+ 593
+ 593
+ 708
+ 562
+ 500
+ 697
+ 739
+ 302
+ 302
+ 645
+ 489
+ 927
+ 729
+ 708
+ 562
+ 0
+ 614
+ 520
+ 552
+ 708
+ 656
+ 1041
+ 0
+ 614
+ 562
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 510
+ 572
+ 468
+ 593
+ 520
+ 322
+ 541
+ 604
+ 291
+ 302
+ 552
+ 291
+ 916
+ 604
+ 562
+ 593
+ 583
+ 406
+ 437
+ 364
+ 593
+ 541
+ 854
+ 552
+ 541
+ 489
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 572
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 229
+ 229
+ 0
+ 0
+ 614
+ 614
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 302
+ ]
+>>
+endobj
+
+%% Original object ID: 197 0
+60 0 obj
+<<
+ /BaseFont /IKFFDF+AdvOTb92eb7df.I
+ /Encoding 86 0 R
+ /FirstChar 40
+ /FontDescriptor 87 0 R
+ /LastChar 148
+ /Subtype /Type1
+ /ToUnicode 88 0 R
+ /Type /Font
+ /Widths [
+ 364
+ 375
+ 0
+ 0
+ 218
+ 406
+ 218
+ 312
+ 552
+ 552
+ 552
+ 552
+ 552
+ 0
+ 552
+ 0
+ 0
+ 0
+ 312
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 604
+ 572
+ 572
+ 0
+ 531
+ 479
+ 656
+ 0
+ 291
+ 291
+ 614
+ 0
+ 885
+ 0
+ 677
+ 531
+ 0
+ 583
+ 489
+ 0
+ 0
+ 0
+ 979
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 531
+ 0
+ 447
+ 552
+ 479
+ 291
+ 510
+ 562
+ 281
+ 0
+ 0
+ 270
+ 854
+ 572
+ 531
+ 552
+ 0
+ 395
+ 406
+ 343
+ 572
+ 510
+ 802
+ 489
+ 520
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 572
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 562
+ ]
+>>
+endobj
+
+%% Original object ID: 198 0
+61 0 obj
+<<
+ /BaseFont /IKFFDG+AdvOTc4d0b532
+ /Encoding 90 0 R
+ /FirstChar 97
+ /FontDescriptor 91 0 R
+ /LastChar 116
+ /Subtype /Type1
+ /ToUnicode 92 0 R
+ /Type /Font
+ /Widths [
+ 541
+ 531
+ 520
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 552
+ 458
+ 468
+ ]
+>>
+endobj
+
+%% Original object ID: 209 0
+62 0 obj
+<<
+ /BaseFont /IKFFDH+AdvPSSym
+ /Encoding 94 0 R
+ /FirstChar 2
+ /FontDescriptor 95 0 R
+ /LastChar 2
+ /Subtype /Type1
+ /Type /Font
+ /Widths [
+ 791
+ ]
+>>
+endobj
+
+%% Original object ID: 210 0
+63 0 obj
+<<
+ /BaseFont /IKFFDI+AdvOTb83ee1dd.B
+ /Encoding 96 0 R
+ /FirstChar 46
+ /FontDescriptor 97 0 R
+ /LastChar 148
+ /Subtype /Type1
+ /ToUnicode 98 0 R
+ /Type /Font
+ /Widths [
+ 250
+ 0
+ 0
+ 572
+ 572
+ 572
+ 572
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 531
+ 0
+ 666
+ 635
+ 593
+ 0
+ 0
+ 541
+ 0
+ 0
+ 343
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 656
+ 0
+ 562
+ 0
+ 0
+ 1031
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 541
+ 604
+ 489
+ 614
+ 531
+ 375
+ 562
+ 645
+ 322
+ 0
+ 625
+ 322
+ 968
+ 645
+ 604
+ 614
+ 0
+ 447
+ 447
+ 395
+ 635
+ 0
+ 854
+ 0
+ 541
+ 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
+ 645
+ ]
+>>
+endobj
+
+%% Original object ID: 220 0
+64 0 obj
+<<
+ /BaseFont /IKFFHH+AdvP2A83
+ /Encoding /WinAnsiEncoding
+ /FirstChar 46
+ /FontDescriptor 100 0 R
+ /LastChar 119
+ /Subtype /Type1
+ /Type /Font
+ /Widths [
+ 270
+ 270
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 270
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 666
+ 718
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 666
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 552
+ 604
+ 500
+ 0
+ 552
+ 0
+ 604
+ 604
+ 270
+ 270
+ 0
+ 270
+ 937
+ 604
+ 604
+ 604
+ 0
+ 385
+ 500
+ 322
+ 604
+ 552
+ 822
+ ]
+>>
+endobj
+
+%% Original object ID: 224 0
+65 0 obj
+<<
+ /BitsPerComponent 8
+ /ColorSpace [
+ /ICCBased
+ 56 0 R
+ ]
+ /Filter /DCTDecode
+ /Height 185
+ /Subtype /Image
+ /Type /XObject
+ /Width 169
+ /Length 66 0 R
+>>
+stream
+
+
+     
+ 
+ 
+EFVU(eufv7GWgw8HXhx)9IYiy*:JZjz
+&6E'dtU7()󄔤euFVfvGWgw8HXhx9IYiy*:JZjz
+D?{~``kbMFcskأ@#d#'2S5
+-BO.?T7e!"Ꞝs]cԬv!%(pW*\U<K6zf,1^/,!%U om/m>1_~Ȅ1y=ɞ[ytS PZXɫ,+TV|59U~dZݯBiW<+o-gU4hW*NjyX>mŽum/KH%6btIl7""^>5<S5-S͞|$ ޛ@nh$VKYj6*U<X۝=ou,?dH2>f6
+U~\yZo2=4l$A}kB\+()Arr+
+ҴRv*_>~jJtb]N̚ăOVw6vFRŲiT8UW?0|'FKRYodVɭVKi/yvl!ۖ42ȿE"Sd͞^SL켽h3i
+sܵ ѠN*t7zt-OM}k]67B%t9ӊ#+ߡ~aIrVG!aT2[M fK^fI'B } EqyHm4{imln.} --\Zok4o+!54sWՏ|R\7I/-o'a, 05*|=銼;X|s{FjZjъ`Umbr6!^dȞbH׮0өyK|ۥݢWwg7_Q5D98PIC'"<ͧѴ0^;_Dд}jXlnutM5 
+HŻ2X*N7G<mΡOu.4X2M92E"Ѷ5ד˖>@Ҡ7˩ ,W\iymis|mt"d{ah1d<ؖk
++43j޹+}O(B` aq8$ęfC
+F6U7%rjZ<Vh,^Ocp,彎;ns qލ
+qpȵ4y̍L|ɯ\[J-G__W0o©žIaqmi #67
+%^D/f+Lְ]m~Oծ`llnS+<maZ`uyj@*zd[ZSZ}[?A~yessZiBI$vi;XPR;?<ϡhoo$K hf6:qW4cN%TY~c@ƥ~[ty$kUoQ4tH%YZѫ*U皎\m"_iچ|ֳ,f(V랜eQL[L5+7~m m:ח i?^䷖fOS#E Y P|í:+kևsohAA,x#XtHHhe^wQZj7QiMTvht:ݓ\3^]]^]ahX4"̦ޭy6+|*kZ{yoDqG1
+̤^?muiϜ<ͦk~[ _PtMis5K& cK]ܙP*%wughqgAelD`v؃I;Yྥ8\Us7Sּcw*ckkH.k$SOĖ%QF]W>i/cx+]^կDZ Ճځeq{ eXLk35[ZV.P(~_X/ M5޴f)*mZ򗞵4Vk|jyn=0Z&h-Ynѽ`G-IrU_|ׯGp[ƀ.iijY9ww]TD^9ؽaNTziPt5}ZOXݦ`R.[̪ZHx,_I-elXС5'D\JȷGmwh׈㿲[k[z]YT_FB&~fLn!$]m^-6s=I)AR(2HUaiڎ`޵-~R1Wu5"IadcIahزrUS Fɚ ߒ/|*jW^:krxU{.IITU$޽?7[Rޱ6hۤ厥dlHc
+UTĖ~UVBXI[ߖKLodm> %X"eBטt_4>al#o(<yyIqk{n-Ħ#=x& 6S 7Qt=/VЧ&V3ey%Πg +<ڄj gcOU{>W򎋦B~`JCRCKk]}KOcb%<*җv/Ag^JI'畖].+V/ 5EfixJb
+!Ubq (~[UWJbkQFwi? #'%Y|k{&FY2y] W-iծE 3CoHQZ'
+"_F4ľZX+wdk1ZݯeyD,#%H`UUմ;)~af.3iMU𭩆x>1DdWZSOMk^WWzLp^ ;+Sm`1GI!++4*g[ޗNҵ;h|kqY.NJ4V_N5- ,yF+51z;_Fj..iZg-_JiY8?*ӵh'og: /Zx- ЂAcRFh{F*8~Vs]>w} m'4{q릟=ׯVI#V{Dϗm[_*Yj3K,
+Z2P-C\JE[Vw.@U㚶'&kvյo2Ckg{ZSq}"}fu k_X"I=UHSZ5mFt}C~hצrSE%ru[bGmy$n
+/&yp5k]Aʖ<CKMA%ԞQJ (UP>j}w^uȃM[ʩ~>oFoZ_RL*hyL[VΞyS|Ԗ[iZj*ʖİzգueZך.,
+[$,QRweU^guK[5R
+kט䰳J_]\$rY0
+LUZHN*|ݨ^4<N:ۂfEӝg/y5תky6
+3*Y'%
+5 ;YBX4fj* JuL6yYi:ʹ^WxYjPA^i}yGJд4k}+ewI-V$f_ #\U?wK&{&&o6_IX1OĀpZX,HJ oּ3R΃kK,49m$fDZ|j}e ,O
+yXFc,
+M3_T-<5nޯjzޫKhlٕG/)ځVT3Ҡż>b?eE+Azcզ:Hΰq*n"nqDe¯f {q4>f# ״-aah #DDX,ӄXՂ̄24
+銽uk Lzu+T՝t
+Uu韮zYKm P
+t-HfM\ 'Mzo-,?9ANj(O_'fq?4qzdF_mi$$I#_Z#Z>es<v_&Q{+fY&i u^/ʄ-LIq}s~fjgn?5EV;d1rn
+z4&kmj
+k>W_){$
+OBI鲊"^bσ~[}>
+
+re^]kr/ JDF"N\,YEx&XOzF*]
+ Kb=mͧ?<uƍyi>y#XKuE)s< ⯊o%7&ynW J=u=2Uzo5|ߗ?]Id0̖Vdw.=Qb=<U⾬uɭ" k157}:8(_LUN*UثWb]|5
+ijbahUIx6AiqWb:)
+bvR°*xE1WMj 8_6~eӵ6Mpv#^K@sԏnB7˿wm塦zϙ4F/s+ΰ֘!*3q^]`i/n/m„tz/
++G:vjMXixdy!vR}H)S)
+_ZlCWzrG`+l- [a+JN~.9љ*&\ pƏ凱|ӤZXo"HdxW4OnK1
+b
+$q<
+gUDtv
+;2?xxH(
+oVui^c MIRg $V|w.L^(q@TlF2ve٬>[Ǡ0/۬?MƝ/YAQ> ʇA̎WzҜJS<VLJoW n+M;N3: `8hΫno|74!z@]X٦
+?CU R㸄@
+ņ􉹟|鶓jp[D4Ψ(݈NQ3<rit2f8youm5Ζr_Aռ;rPN$V_+aS0%)D{_4HD"A5<P/-&Ye}[WMH H{C?s%f' ؛<AZykl5$"#=]a\6^׉d+z,z$hlIQZ׶`KSK䙹p! qD!<r{?ǧɨBPE e9m>{u<#Z?$t v8-n.ĪbIZ Vz~_~$x@I@k=E $(X޾_]yLFFV X9a> .
+endstream
+endobj
+
+66 0 obj
+22886
+endobj
+
+%% Original object ID: 225 0
+67 0 obj
+<<
+ /BitsPerComponent 8
+ /ColorSpace [
+ /ICCBased
+ 56 0 R
+ ]
+ /Filter /DCTDecode
+ /Height 199
+ /Subtype /Image
+ /Type /XObject
+ /Width 158
+ /Length 68 0 R
+>>
+stream
+
+
+     
+ 
+ 
+EFVU(eufv7GWgw8HXhx)9IYiy*:JZjz
+&6E'dtU7()󄔤euFVfvGWgw8HXhx9IYiy*:JZjz
+l*]y Dor?GCq G$ UUثWb]v*׆*b]+8
+b@ʡPr
+5 <s.3xV1Wov*U/
+GVi_o
+]EiXyOݨ]mRi!QP)N<3Q3ve[5b,_Z4(GH-$iW %v)cm'1(JQ]@|ex?+o'EJiqɪhzoRKieH޽3OW sKP.a
+.G;[WL2K}=
+|* ۺLግaY !Ym4jR^҆#ۗ*lҨ'E/4??>Oy:uݍ4FEΝq%f ,lFln<2E&y0-oW˟^僧@{Zd,ܣ4|F Iǐ}&2~_O4qcʶwЭt<}7)%(׃lDu2.R$qv#dϪ W#3Y4I?0M)|kn˛`^B"J$ZWKG8uw{(sxfv*
+
+;mGm0 F{ ]
+!hQԧ3K}*Im:, JUӗM;Gt3cĎYcǐ [9
+Ch D[҄QO>3,p1Dק_{)a#c
+M.8~ܧGv* GMW L碢JEHB>dοz6ykâGgOv鈓6g4RI#$ W=1jN1@=9:~fcr'~Fyz/6i+a/ٷ[eKK~f/Côr* O*k=ҷq~m
+
+i' v
+R)V%+(sw+pj:?6q\: UUثTGƟsZSWJҏ[
+G(KoGtey9
+GT@tN\}̏2bO_ɕ_<#/P у(8xѩ@@ '+m)X,$q_zվFBWx{7B?RA/0;pi:nE:ab״/4l*p $%"E
+\&h6~
+rH򡉂8e$N\:X*1R
+ jҘtIZjwi*JW5
+dujo^Xz# |AG&
+P?܂
+ROf$$TRG3dܯ^
+hB^d_I$[̴T6[CjzW+>
+!_o1Q~Mڬ*;$dT"te{^2C d(|/yGFF)ykO)hMcTheGE3 "A5fs
+3p
+orA&L֎ʐ{r?O8~Ѯ ]sE<CpA㸳HZɟg@aZ8ˇky{
+zdl
+5ֻ
+
+LŌ`{TL.1|~t1bsg3š~`-WUA
+鲎fL#رȂdlzr
+'|0)ycS9?~X+ZN._|;o(ji#,bR(è&t;NT
+ { ͥ1!WcT%rw5 sb%ukk؉UKXrP~,Q؀9Qck+y+͚";fkY. d
+Y'$n+Z)niskumbKJI4칢v0Hwk2NZҢ[.
+>gu>ܾDԭ5MV 3D+UN)&p[jPLva{1~ڿැ
+0 ÓFr~fhDO_{r,-uo-^3>Vs^/Y#70nE&P%{
+؟~DubԅƤ5)߯3sY%⤵F:ǔIma*/Zoa$\BTSU"mQiDEjtҪۼ~9<5%|u8d5KժR}#CSDlBSwQօeP#PxJ8
+F皝>L7 ƹݵacBzwg
+??@&%sc>mk7՝}+EN`4lZRH1!NȮ, G~.:cRї_4[˚ϔ&^7]Ÿ2
+PyHyƪbfXy}F$Dt-.ƕqeyB=3ll:n\>%x
+|:.xMƬyՙ^ ?uSK5괷vQ2$Bbh0rT/ĉE~Ǔ~!(;o&\0~Dw}s{_-iZd27xQqM<X=>&Yn\Є}E^]
+o<8d!{ !#O?>
+ah9_Zv׺:-}:]< wkhҠz%5K$__((vCgz"ȱiS<!@3A$efG^AtqHVü
+˥wbFCn41G#U0v̹۱E+ Kiݘ/
+\h4y$WhE;=C)#;Jq!ϗk8"MXCX%=҃8F
+R]GbkFM?scViR! F
+Cj||rM$szCwӕMW. f0Q
+
+*#6=q>$$
+U+)r :g t<5Ɵms=HnS}.ldKOQ,-_<qyLcu 2?W <xՉZ
+E7Ө{yuK)[&xx3+")Ph S#ٱ,%iw]`9bRE&B9 A=|Ȟǒ>cA=
+ CdsG*PV%+ưGVg-]iLQ߸};ƣl~>
+"q#qr{~cH4[Lu{jAmi;JYHM*?R0Oz]:{gP[};3hZMu_>-Q*U-7 }F
+
+wx'+k}FYj!Qqf$P95ީ櫽;yͨYѭ4
+zd¼J&
+r`4d$Wlu)y[[‡D;I$v0RC*,|"
+endstream
+endobj
+
+68 0 obj
+21628
+endobj
+
+%% Original object ID: 109 0
+69 0 obj
+<<
+ /BitsPerComponent 8
+ /ColorSpace [
+ /Indexed
+ /DeviceRGB
+ 255
+ 101 0 R
+ ]
+ /Height 99
+ /Width 74
+ /Length 70 0 R
+>>
+stream
+
+endstream
+endobj
+
+%QDF: ignore_newline
+70 0 obj
+7326
+endobj
+
+%% Original object ID: 238 0
+71 0 obj
+<<
+ /Count 8
+ /Dest (titlink1)
+ /First 103 0 R
+ /Last 104 0 R
+ /Parent 7 0 R
+ /Title (Folding with thermal mechanical feedback: Another reply)
+>>
+endobj
+
+%% Original object ID: 149 0
+72 0 obj
+<<
+ /S /D
+ /St 131
+>>
+endobj
+
+%% Page 2
+%% Original object ID: 1 0
+73 0 obj
+<<
+ /Annots [
+ 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
+ ]
+ /B [
+ 81 0 R
+ 135 0 R
+ ]
+ /Contents 136 0 R
+ /CropBox [
+ 0
+ 0
+ 595.276
+ 793.701
+ ]
+ /MediaBox [
+ 0
+ 0
+ 595.276
+ 793.701
+ ]
+ /Parent 9 0 R
+ /Resources <<
+ /ColorSpace <<
+ /CS0 [
+ /ICCBased
+ 56 0 R
+ ]
+ >>
+ /ExtGState <<
+ /GS0 58 0 R
+ /GS1 138 0 R
+ >>
+ /Font <<
+ /T1_0 59 0 R
+ /T1_1 60 0 R
+ /T1_2 139 0 R
+ /T1_3 63 0 R
+ /T1_4 140 0 R
+ >>
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+ /Properties <<
+ /MC0 141 0 R
+ /MC1 142 0 R
+ >>
+ >>
+ /Rotate 0
+ /Thumb 143 0 R
+ /Type /Page
+>>
+endobj
+
+%% Page 3
+%% Original object ID: 40 0
+74 0 obj
+<<
+ /Annots [
+ 145 0 R
+ 146 0 R
+ 147 0 R
+ 148 0 R
+ 149 0 R
+ 150 0 R
+ 151 0 R
+ 152 0 R
+ 153 0 R
+ 154 0 R
+ 155 0 R
+ 156 0 R
+ 157 0 R
+ 158 0 R
+ 159 0 R
+ 160 0 R
+ 161 0 R
+ 162 0 R
+ 163 0 R
+ 164 0 R
+ 165 0 R
+ 166 0 R
+ 167 0 R
+ 168 0 R
+ 169 0 R
+ 170 0 R
+ 171 0 R
+ 172 0 R
+ ]
+ /B [
+ 173 0 R
+ 174 0 R
+ 175 0 R
+ 176 0 R
+ ]
+ /Contents 177 0 R
+ /CropBox [
+ 0
+ 0
+ 595.276
+ 793.701
+ ]
+ /MediaBox [
+ 0
+ 0
+ 595.276
+ 793.701
+ ]
+ /Parent 9 0 R
+ /Resources <<
+ /ColorSpace <<
+ /CS0 [
+ /ICCBased
+ 56 0 R
+ ]
+ >>
+ /ExtGState <<
+ /GS0 58 0 R
+ >>
+ /Font <<
+ /T1_0 59 0 R
+ /T1_1 63 0 R
+ /T1_2 179 0 R
+ /T1_3 60 0 R
+ /T1_4 139 0 R
+ /T1_5 180 0 R
+ /T1_6 181 0 R
+ /T1_7 182 0 R
+ /T1_8 183 0 R
+ /T1_9 184 0 R
+ >>
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+ >>
+ /Rotate 0
+ /Thumb 185 0 R
+ /Type /Page
+>>
+endobj
+
+%% Page 4
+%% Original object ID: 80 0
+75 0 obj
+<<
+ /Annots [
+ 187 0 R
+ 188 0 R
+ 189 0 R
+ 190 0 R
+ ]
+ /B [
+ 191 0 R
+ 192 0 R
+ 193 0 R
+ 80 0 R
+ ]
+ /Contents 194 0 R
+ /CropBox [
+ 0
+ 0
+ 595.276
+ 793.701
+ ]
+ /MediaBox [
+ 0
+ 0
+ 595.276
+ 793.701
+ ]
+ /Parent 9 0 R
+ /Resources <<
+ /ColorSpace <<
+ /CS0 [
+ /ICCBased
+ 56 0 R
+ ]
+ >>
+ /ExtGState <<
+ /GS0 58 0 R
+ >>
+ /Font <<
+ /T1_0 59 0 R
+ /T1_1 63 0 R
+ /T1_2 184 0 R
+ /T1_3 60 0 R
+ /T1_4 180 0 R
+ >>
+ /ProcSet [
+ /PDF
+ /Text
+ ]
+ >>
+ /Rotate 0
+ /Thumb 196 0 R
+ /Type /Page
+>>
+endobj
+
+%% Original object ID: 108 0
+76 0 obj
+<<
+ /Title (tx1)
+>>
+endobj
+
+%% Original object ID: 114 0
+77 0 obj
+<<
+ /Limits [
+ (aclink1)
+ (titlink1)
+ ]
+ /Names [
+ (aclink1)
+ 198 0 R
+ (acoll1)
+ 198 0 R
+ (acoll2)
+ 198 0 R
+ (bib1)
+ 199 0 R
+ (bib10)
+ 200 0 R
+ (bib11)
+ 201 0 R
+ (bib12)
+ 202 0 R
+ (bib13)
+ 203 0 R
+ (bib14)
+ 204 0 R
+ (bib15)
+ 205 0 R
+ (bib16)
+ 206 0 R
+ (bib17)
+ 207 0 R
+ (bib18)
+ 208 0 R
+ (bib19)
+ 209 0 R
+ (bib2)
+ 210 0 R
+ (bib20)
+ 211 0 R
+ (bib21)
+ 212 0 R
+ (bib3)
+ 213 0 R
+ (bib4)
+ 214 0 R
+ (bib5)
+ 215 0 R
+ (bib6)
+ 216 0 R
+ (bib7)
+ 217 0 R
+ (bib8)
+ 218 0 R
+ (bib9)
+ 219 0 R
+ (blink1)
+ 198 0 R
+ (fig1)
+ 220 0 R
+ (flink1)
+ 221 0 R
+ (flink2)
+ 222 0 R
+ (flink3)
+ 223 0 R
+ (flink4)
+ 223 0 R
+ (sec1)
+ 224 0 R
+ (sec1.1)
+ 225 0 R
+ (sec1.2)
+ 226 0 R
+ (sec2)
+ 227 0 R
+ (sec3)
+ 228 0 R
+ (sec4)
+ 229 0 R
+ (slink1)
+ 221 0 R
+ (slink2)
+ 221 0 R
+ (tbl1)
+ 230 0 R
+ (titlink1)
+ 221 0 R
+ ]
+>>
+endobj
+
+%% Original object ID: 235 0
+78 0 obj
+<<
+ /S /URI
+ /URI (www.sciencedirect.com/science/journal/01918141)
+>>
+endobj
+
+%% Original object ID: 236 0
+79 0 obj
+<<
+ /S /URI
+ /URI (http://www.elsevier.com/locate/jsg)
+>>
+endobj
+
+%% Original object ID: 177 0
+80 0 obj
+<<
+ /N 29 0 R
+ /P 75 0 R
+ /R [
+ 299
+ 281
+ 556
+ 731
+ ]
+ /T 10 0 R
+ /V 193 0 R
+>>
+endobj
+
+%% Original object ID: 186 0
+81 0 obj
+<<
+ /N 135 0 R
+ /P 73 0 R
+ /R [
+ 30
+ 245
+ 287
+ 732
+ ]
+ /T 10 0 R
+ /V 39 0 R
+>>
+endobj
+
+%% Original object ID: 202 0
+82 0 obj
+<<
+ /Differences [
+ 36
+ /dollar
+ /percent
+ 40
+ /parenleft
+ /parenright
+ 44
+ /comma
+ /hyphen
+ /period
+ /slash
+ /zero
+ /one
+ /two
+ /three
+ /four
+ /five
+ /six
+ /seven
+ /eight
+ /nine
+ /colon
+ /semicolon
+ 63
+ /question
+ /at
+ /A
+ /B
+ /C
+ /D
+ /E
+ /F
+ /G
+ /H
+ /I
+ /J
+ /K
+ /L
+ /M
+ /N
+ /O
+ /P
+ 82
+ /R
+ /S
+ /T
+ /U
+ /V
+ /W
+ 89
+ /Y
+ /Z
+ 97
+ /a
+ /b
+ /c
+ /d
+ /e
+ /f
+ /g
+ /h
+ /i
+ /j
+ /k
+ /l
+ /m
+ /n
+ /o
+ /p
+ /q
+ /r
+ /s
+ /t
+ /u
+ /v
+ /w
+ /x
+ /y
+ /z
+ 133
+ /endash
+ 143
+ /quoteleft
+ /quoteright
+ 147
+ /fi
+ /fl
+ 168
+ /dieresis
+ ]
+ /Type /Encoding
+>>
+endobj
+
+%% Original object ID: 200 0
+83 0 obj
+<<
+ /Ascent 789
+ /CapHeight 735
+ /CharSet (/space/R/e/p/l/y/F/o/d/i/n/g/w/t/h/r/m/a/c/f/b/k/colon/A/C/u/s/S/hyphen/I/period/parenleft/two/zero/one/parenright/T/B/v/semicolon/quoteleft/quoteright/fi/N/endash/nine/P/E/L/q/H/seven/M/four/comma/eight/x/fl/six/five/W/z/question/J/G/slash/dollar/j/three/O/K/U/percent/V/Y/D/Z/dieresis/at)
+ /Descent -211
+ /Flags 6
+ /FontBBox [
+ -114
+ -250
+ 1041
+ 937
+ ]
+ /FontFile3 231 0 R
+ /FontName /IKFFDE+AdvOT863180fb
+ /ItalicAngle 0
+ /StemV 0
+ /Type /FontDescriptor
+ /XHeight 542
+>>
+endobj
+
+%% Original object ID: 201 0
+84 0 obj
+<<
+ /Length 85 0 R
+>>
+stream
+/CIDInit /ProcSet findresource begin 12 dict begin begincmap /CIDSystemInfo <<
+/Registry (F1+0) /Ordering (T1UV) /Supplement 0 >> def
+/CMapName /F1+0 def
+/CMapType 2 def
+1 begincodespacerange <24> <a8> endcodespacerange
+2 beginbfchar
+<85> <2013>
+<a8> <00A8>
+endbfchar
+9 beginbfrange
+<24> <25> <0024>
+<28> <29> <0028>
+<2c> <3b> <002C>
+<3f> <50> <003F>
+<52> <57> <0052>
+<59> <5a> <0059>
+<61> <7a> <0061>
+<8f> <90> <2018>
+<93> <94> <FB01>
+endbfrange
+endcmap CMapName currentdict /CMap defineresource pop end end
+endstream
+endobj
+
+85 0 obj
+509
+endobj
+
+%% Original object ID: 206 0
+86 0 obj
+<<
+ /Differences [
+ 40
+ /parenleft
+ /parenright
+ 44
+ /comma
+ /hyphen
+ /period
+ /slash
+ /zero
+ /one
+ /two
+ /three
+ /four
+ 54
+ /six
+ 58
+ /colon
+ 65
+ /A
+ /B
+ /C
+ 69
+ /E
+ /F
+ /G
+ 73
+ /I
+ /J
+ /K
+ 77
+ /M
+ 79
+ /O
+ /P
+ 82
+ /R
+ /S
+ 87
+ /W
+ 97
+ /a
+ 99
+ /c
+ /d
+ /e
+ /f
+ /g
+ /h
+ /i
+ 108
+ /l
+ /m
+ /n
+ /o
+ /p
+ 114
+ /r
+ /s
+ /t
+ /u
+ /v
+ /w
+ /x
+ /y
+ 133
+ /endash
+ 148
+ /fl
+ ]
+ /Type /Encoding
+>>
+endobj
+
+%% Original object ID: 204 0
+87 0 obj
+<<
+ /Ascent 789
+ /CapHeight 735
+ /CharSet (/space/K/e/y/w/o/r/d/s/colon/n/l/one/period/F/i/t/a/m/p/u/f/g/v/h/two/I/fl/c/hyphen/x/R/slash/J/S/G/three/parenleft/zero/parenright/endash/four/C/O/E/M/comma/P/B/W/A/six)
+ /Descent -211
+ /Flags 6
+ /FontBBox [
+ -135
+ -229
+ 1052
+ 937
+ ]
+ /FontFile3 233 0 R
+ /FontName /IKFFDF+AdvOTb92eb7df.I
+ /ItalicAngle 0
+ /StemV 0
+ /Type /FontDescriptor
+ /XHeight 551
+>>
+endobj
+
+%% Original object ID: 205 0
+88 0 obj
+<<
+ /Length 89 0 R
+>>
+stream
+/CIDInit /ProcSet findresource begin 12 dict begin begincmap /CIDSystemInfo <<
+/Registry (F2+0) /Ordering (T1UV) /Supplement 0 >> def
+/CMapName /F2+0 def
+/CMapType 2 def
+1 begincodespacerange <28> <94> endcodespacerange
+7 beginbfchar
+<36> <0036>
+<3a> <003A>
+<4d> <004D>
+<57> <0057>
+<61> <0061>
+<85> <2013>
+<94> <FB02>
+endbfchar
+10 beginbfrange
+<28> <29> <0028>
+<2c> <34> <002C>
+<41> <43> <0041>
+<45> <47> <0045>
+<49> <4b> <0049>
+<4f> <50> <004F>
+<52> <53> <0052>
+<63> <69> <0063>
+<6c> <70> <006C>
+<72> <79> <0072>
+endbfrange
+endcmap CMapName currentdict /CMap defineresource pop end end
+endstream
+endobj
+
+89 0 obj
+587
+endobj
+
+%% Original object ID: 229 0
+90 0 obj
+<<
+ /Differences [
+ 97
+ /a
+ /b
+ /c
+ 114
+ /r
+ /s
+ /t
+ ]
+ /Type /Encoding
+>>
+endobj
+
+%% Original object ID: 227 0
+91 0 obj
+<<
+ /Ascent 566
+ /CapHeight 735
+ /CharSet (/space/a/b/s/t/r/c)
+ /Descent -7
+ /Flags 6
+ /FontBBox [
+ -114
+ -250
+ 1406
+ 937
+ ]
+ /FontFile3 235 0 R
+ /FontName /IKFFDG+AdvOTc4d0b532
+ /ItalicAngle 0
+ /StemV 0
+ /Type /FontDescriptor
+ /XHeight 566
+>>
+endobj
+
+%% Original object ID: 228 0
+92 0 obj
+<<
+ /Length 93 0 R
+>>
+stream
+/CIDInit /ProcSet findresource begin 12 dict begin begincmap /CIDSystemInfo <<
+/Registry (F3+0) /Ordering (T1UV) /Supplement 0 >> def
+/CMapName /F3+0 def
+/CMapType 2 def
+1 begincodespacerange <61> <74> endcodespacerange
+2 beginbfrange
+<61> <63> <0061>
+<72> <74> <0072>
+endbfrange
+endcmap CMapName currentdict /CMap defineresource pop end end
+endstream
+endobj
+
+93 0 obj
+342
+endobj
+
+%% Original object ID: 232 0
+94 0 obj
+<<
+ /Differences [
+ 2
+ /C211
+ ]
+ /Type /Encoding
+>>
+endobj
+
+%% Original object ID: 231 0
+95 0 obj
+<<
+ /Ascent 754
+ /CapHeight 673
+ /CharSet (/space/C211)
+ /Descent -226
+ /Flags 6
+ /FontBBox [
+ -177
+ -291
+ 1083
+ 1010
+ ]
+ /FontFile3 237 0 R
+ /FontName /IKFFDH+AdvPSSym
+ /ItalicAngle 0
+ /StemV 0
+ /Type /FontDescriptor
+ /XHeight 772
+>>
+endobj
+
+%% Original object ID: 214 0
+96 0 obj
+<<
+ /Differences [
+ 46
+ /period
+ 49
+ /one
+ /two
+ /three
+ /four
+ 63
+ /question
+ 65
+ /A
+ /B
+ /C
+ 70
+ /F
+ 73
+ /I
+ 82
+ /R
+ 84
+ /T
+ 87
+ /W
+ 97
+ /a
+ /b
+ /c
+ /d
+ /e
+ /f
+ /g
+ /h
+ /i
+ 107
+ /k
+ /l
+ /m
+ /n
+ /o
+ /p
+ 114
+ /r
+ /s
+ /t
+ /u
+ 119
+ /w
+ 121
+ /y
+ 148
+ /fl
+ ]
+ /Type /Encoding
+>>
+endobj
+
+%% Original object ID: 212 0
+97 0 obj
+<<
+ /Ascent 789
+ /CapHeight 735
+ /CharSet (/space/one/period/W/h/a/t/i/s/n/d/o/p/r/f/e/B/y/question/two/I/fl/u/c/b/F/g/three/T/l/four/C/m/k/A/w/R)
+ /Descent -211
+ /Flags 6
+ /FontBBox [
+ -145
+ -250
+ 1125
+ 947
+ ]
+ /FontFile3 239 0 R
+ /FontName /IKFFDI+AdvOTb83ee1dd.B
+ /ItalicAngle 0
+ /StemV 0
+ /Type /FontDescriptor
+ /XHeight 554
+>>
+endobj
+
+%% Original object ID: 213 0
+98 0 obj
+<<
+ /Length 99 0 R
+>>
+stream
+/CIDInit /ProcSet findresource begin 12 dict begin begincmap /CIDSystemInfo <<
+/Registry (F5+0) /Ordering (T1UV) /Supplement 0 >> def
+/CMapName /F5+0 def
+/CMapType 2 def
+1 begincodespacerange <2e> <94> endcodespacerange
+10 beginbfchar
+<2e> <002E>
+<3f> <003F>
+<46> <0046>
+<49> <0049>
+<52> <0052>
+<54> <0054>
+<57> <0057>
+<77> <0077>
+<79> <0079>
+<94> <FB02>
+endbfchar
+5 beginbfrange
+<31> <34> <0031>
+<41> <43> <0041>
+<61> <69> <0061>
+<6b> <70> <006B>
+<72> <75> <0072>
+endbfrange
+endcmap CMapName currentdict /CMap defineresource pop end end
+endstream
+endobj
+
+99 0 obj
+538
+endobj
+
+%% Original object ID: 234 0
+100 0 obj
+<<
+ /Ascent 722
+ /CapHeight 722
+ /CharSet (/space/C/o/n/t/e/s/l/i/a/v/b/S/c/D/r/j/u/h/m/p/g/colon/w/period/slash)
+ /Descent -199
+ /Flags 32
+ /FontBBox [
+ -156
+ -229
+ 1000
+ 791
+ ]
+ /FontFile3 241 0 R
+ /FontName /IKFFHH+AdvP2A83
+ /ItalicAngle 0
+ /StemV 0
+ /Type /FontDescriptor
+ /XHeight 502
+>>
+endobj
+
+%% Original object ID: 87 0
+101 0 obj
+<<
+ /Length 102 0 R
+>>
+stream
+
+endstream
+endobj
+
+%QDF: ignore_newline
+102 0 obj
+768
+endobj
+
+%% Original object ID: 239 0
+103 0 obj
+<<
+ /Count 2
+ /Dest (flink1)
+ /First 243 0 R
+ /Last 244 0 R
+ /Next 245 0 R
+ /Parent 71 0 R
+ /Title (What is and is not part of the Biot theory?)
+>>
+endobj
+
+%% Original object ID: 240 0
+104 0 obj
+<<
+ /Dest (blink1)
+ /Parent 71 0 R
+ /Prev 246 0 R
+ /Title (References)
+>>
+endobj
+
+%% Original object ID: 2 0
+105 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib10)
+ /F 4
+ /Rect [
+ 248.031
+ 677.253
+ 283.861
+ 685.247
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 3 0
+106 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib10)
+ /F 4
+ /Rect [
+ 32.825
+ 666.822
+ 80.391
+ 674.759
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 4 0
+107 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib7)
+ /F 4
+ /Rect [
+ 88.554
+ 604.063
+ 200.183
+ 612
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 5 0
+108 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib17)
+ /F 4
+ /Rect [
+ 225.694
+ 604.063
+ 283.861
+ 612
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 6 0
+109 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib17)
+ /F 4
+ /Rect [
+ 32.825
+ 593.575
+ 78.917
+ 601.568
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 7 0
+110 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib21)
+ /F 4
+ /Rect [
+ 89.178
+ 562.167
+ 253.247
+ 570.161
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 8 0
+111 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib2)
+ /F 4
+ /Rect [
+ 104.939
+ 468.057
+ 146.551
+ 475.994
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 9 0
+112 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib7)
+ /F 4
+ /Rect [
+ 44.787
+ 405.298
+ 115.597
+ 413.235
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 10 0
+113 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib4)
+ /F 4
+ /Rect [
+ 141.165
+ 342.539
+ 250.526
+ 350.476
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 11 0
+114 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib9)
+ /F 4
+ /Rect [
+ 259.994
+ 321.619
+ 283.861
+ 329.556
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 12 0
+115 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib9)
+ /F 4
+ /Rect [
+ 32.825
+ 311.131
+ 90.539
+ 319.124
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 13 0
+116 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib17)
+ /F 4
+ /Rect [
+ 241.172
+ 311.131
+ 283.861
+ 319.124
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 14 0
+117 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib17)
+ /F 4
+ /Rect [
+ 32.825
+ 300.699
+ 96.265
+ 308.636
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 15 0
+118 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib1)
+ /F 4
+ /Rect [
+ 89.235
+ 248.372
+ 167.471
+ 256.365
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 16 0
+119 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib15)
+ /F 4
+ /Rect [
+ 190.431
+ 248.372
+ 262.375
+ 256.365
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 17 0
+120 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib7)
+ /F 4
+ /Rect [
+ 460.006
+ 656.334
+ 537.392
+ 664.327
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 18 0
+121 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib6)
+ /F 4
+ /Rect [
+ 359.376
+ 614.494
+ 425.877
+ 622.488
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 19 0
+122 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib18)
+ /F 4
+ /Rect [
+ 368.504
+ 604.063
+ 444.019
+ 612
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 20 0
+123 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib7)
+ /F 4
+ /Rect [
+ 505.927
+ 509.896
+ 552.869
+ 517.833
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 21 0
+124 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib7)
+ /F 4
+ /Rect [
+ 301.833
+ 499.408
+ 327.061
+ 507.401
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 22 0
+125 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (fig1)
+ /F 4
+ /Rect [
+ 301.833
+ 478.488
+ 322.809
+ 486.482
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 23 0
+126 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (fig1)
+ /F 4
+ /Rect [
+ 342.765
+ 457.568
+ 362.608
+ 465.562
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 24 0
+127 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (fig1)
+ /F 4
+ /Rect [
+ 441.071
+ 447.137
+ 460.006
+ 455.074
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 25 0
+128 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib7)
+ /F 4
+ /Rect [
+ 429.279
+ 436.649
+ 500.315
+ 444.642
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 26 0
+129 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib19)
+ /F 4
+ /Rect [
+ 501.222
+ 363.288
+ 552.869
+ 371.282
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 27 0
+130 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib19)
+ /F 4
+ /Rect [
+ 301.833
+ 352.857
+ 429.959
+ 360.794
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 28 0
+131 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib13)
+ /F 4
+ /Rect [
+ 397.814
+ 300.529
+ 500.485
+ 308.523
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 29 0
+132 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib18)
+ /F 4
+ /Rect [
+ 471.005
+ 258.69
+ 552.869
+ 266.627
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 30 0
+133 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib9)
+ /F 4
+ /Rect [
+ 301.039
+ 58.62
+ 364.195
+ 64.97
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 31 0
+134 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (tbl1)
+ /F 4
+ /Rect [
+ 343.899
+ 50.06
+ 364.989
+ 56.409
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 185 0
+135 0 obj
+<<
+ /N 173 0 R
+ /P 73 0 R
+ /R [
+ 299
+ 245
+ 556
+ 732
+ ]
+ /T 10 0 R
+ /V 81 0 R
+>>
+endobj
+
+%% Contents for page 2
+%% Original object ID: 32 0
+136 0 obj
+<<
+ /Length 137 0 R
+>>
+stream
+BT
+/CS0 cs 0 0 0 scn
+/GS0 gs
+/T1_0 1 Tf
+8.2888 0 0 7.9702 32.8252 721.077 Tm
+[(rel)13(ev)21(ant.)-406(The)-396(gener)19(al)-403(outcome)-406(of)-402(such)-401(consider)10(ations)-399(is)-400(that)-408(the)]TJ
+0 -1.309 TD
+[(w)20(a)24(vele)12(ngths)-439(that)-436(gro)18(w)-411(ar)13(e)-444(no)17(t)-443(independent)-425(of)-436(each)-435(othe)12(r)50(,)-434(with)]TJ
+0 -1.316 TD
+[(int)14(erferenc)11(e)-342(betw)12(een)-333(modes,)-340(and)-331(the)-338(result)-330(can)-333(be)-337(localisation)-338(of)]TJ
+0 -1.309 TD
+[(the)-359(folding)-366(beha)24(viour)13(;)]TJ
+/T1_1 1 Tf
+10.691 0 Td
+[(the)-360(concept)-350(of)-354(a)-358(dominant)-360(wav)31(elength)-362(need)]TJ
+-10.691 -1.316 Td
+[(no)-320(longer)-307(exist)]TJ
+/T1_0 1 Tf
+6.806 0 Td
+[(and)-324(complicat)11(ed)-316(w)20(a)18(v)14(e)-321(packet)11(s)-322(can)-319(form)-325(\()]TJ
+0 0 0.4 scn
+19.158 0 Td
+[(Hunt)-319(and)]TJ
+-25.963 -1.309 Td
+[(W)42(adee,)-172(1)66(99)29(1)]TJ
+0 0 0 scn
+5.738 0 Td
+[(\).)-241(This)-243(beha)17(viour)-240(is)-250(bey)26(ond)-245(the)-249(r)16(each)-251(of)-244(linear)-244(theories)]TJ
+-5.738 -1.316 Td
+[(such)-401(as)-394(those)-399(consider)10(ed)-399(by)-392(Biot.)-389(A)-363(v)21(ast)-399(liter)25(ature)-391(on)-400(non-linear)]TJ
+T*
+[(bifurc)12(ation)-336(theory)-327(has)-337(appear)13(ed)-337(since)-327(Biot\220s)-328(important)-328(1)59(965)-329(book)]TJ
+0 -1.316 TD
+[(allo)13(wing)-329(one)-332(to)-326(analy)21(se)-336(some)-342(forms)-332(of)-340(non-linear)-332(beha)17(viour)54(.)-339(One)]TJ
+0 -1.309 TD
+[(w)20(ay)-481(of)-498(establishing)-502(the)-502(nature)-491(of)-504(such)-497(non-linear)-503(beha)24(viour)-507(is)]TJ
+0 -1.316 TD
+[(thr)13(ough)-490(modern)-489(continuum)-483(thermodynamics)-489(which)-489(we)-479(start)16(ed)]TJ
+0 -1.309 TD
+[(to)-490(e)21(xplore)-489(in)]TJ
+0 0 0.4 scn
+6.723 0 Td
+[(Hobbs)-503(et)-498(al.)-502(\(20)-31(08,)-501(in)-480(press)]TJ
+0 0 0 scn
+13.467 0 Td
+[(\))-505(and)]TJ
+0 0 0.4 scn
+3.078 0 Td
+[(R)26(egenau)12(er)51(-Lieb)]TJ
+-23.269 -1.316 Td
+[(et)-299(al.)-297(\(20)-31(09\))]TJ
+0 0 0 scn
+5.561 0 Td
+(.)Tj
+-4.117 -1.309 Td
+[(An)-210(important)-205(e)21(xample)-216(of)-217(non-Biot)-207(folding)-216(is)-216(the)-215(dev)13(elopment)-206(of)]TJ
+-1.443 -1.316 Td
+[(kink,)-460(chevron)-440(and)-447(concentric)-457(folds)-449(in)-452(a)-454(multila)14(y)21(er)-456(stac)14(k)-453(of)-463(thin)]TJ
+T*
+[(elastic)-436(lay)29(ers)-443(\()]TJ
+0 0 0.4 scn
+6.799 0 Td
+[(W)42(adee)-435(et)-443(al.,)-437(20)-32(0)-9(4;)-439(Edmunds)-442(et)-436(al.,)-444(20)-26(05)]TJ
+0 0 0 scn
+19.794 0 Td
+[(\))-436(where)]TJ
+-26.593 -1.316 Td
+[(the)-605(non-linearity)-599(stems)-602(from)-598(g)14(eometrical)-610(sof)-13(teni)14(ng)-613(associat)16(ed)]TJ
+T*
+[(with)-342(large)-338(ro)24(tations.)-346(The)-348(critical)-344(load)-349(r)16(eq)16(uired)-333(to)-332(initiate)-342(instabil-)]TJ
+0 -1.316 TD
+[(ities)-238(is)-243(modelled)-235(using)-236(the)-242(Maxwel)15(l)-242(stability)-217(crite)11(rion;)-236(folding)-243(initi-)]TJ
+0 -1.309 TD
+[(ate)12(s)]TJ
+/T1_1 1 Tf
+2.066 0 Td
+[(af)-19(ter)]TJ
+/T1_0 1 Tf
+2.305 0 Td
+[(the)-242(stor)18(ed)-241(elastic)-245(energy)-247(matches)-244(the)-242(energy)-247(req)32(uired)-237(for)]TJ
+-4.371 -1.316 Td
+[(slip)-269(on)-270(the)-270(lay)29(ers.)-268(Such)-270(beha)17(viour)-268(is)-271(non-linear)-263(and)-270(r)16(elies)-273(on)-270(bifur)50(-)]TJ
+0 -1.316 TD
+[(cation)-422(theory)-423(to)-415(de\223ne)-418(the)-427(initial)-422(and)-420(subseq)16(uent)-422(initiation)-424(and)]TJ
+0 -1.309 TD
+[(gro)25(wth)-394(of)-388(instabilities.)-390(The)-389(concep)14(t)-381(of)-388(a)-393(dominant)-385(w)20(a)18(v)14(elength)-393(is)]TJ
+0 -1.316 TD
+[(meaningless)-683(here)12(.)-687(The)-684(differ)12(ence)-692(betw)12(een)-681(this)-684(and)-687(the)-687(Biot)]TJ
+0 -1.309 TD
+[(approa)14(ch)-631(is)-633(that)]TJ
+0 0 0.4 scn
+8.7 0 Td
+[(Biot)-625(\(1)61(965)]TJ
+0 0 0 scn
+5.02 0 Td
+[(,)-633(p20)-14(4;)-631(and)-632(othe)12(rs\))-633(regar)17(ded)-633(the)]TJ
+-13.721 -1.316 Td
+[(Maxwel)15(l)-372(stability)-354(crite)11(rion)-373(as)-373(de\223ning)-371(the)-372(initiation)-369(of)-374(kink)-374(folds)]TJ
+T*
+[(in)-322(anisot)12(ropic)-320(mate)12(rials)-322(whereas)-314(bifurcat)11(ion)-328(theory)-327(rega)14(rds)-315(insta-)]TJ
+0 -1.316 TD
+[(bility)-304(as)-325(dev)13(eloping)]TJ
+/T1_1 1 Tf
+9.295 0 Td
+[(af)-19(ter)]TJ
+/T1_0 1 Tf
+2.38 0 Td
+[(the)-324(energy)-322(minimum)-322(is)-325(passed.)-326(The)-321(Biot)]TJ
+-11.675 -1.309 Td
+[(theory)-320(giv)19(es)-342(no)-339(information)-340(on)-311(when)-338(folds)-346(nucleat)12(e)-342(and)-345(how)-333(the)]TJ
+T*
+[(sy)14(stem)-294(ev)15(olv)19(es.)]TJ
+0 0 0.4 scn
+1.443 -1.309 Td
+[(Hobbs)-230(et)-238(al.)-235(\(20)-31(08\))]TJ
+0 0 0 scn
+8.782 0 Td
+[(pr)14(esent)-236(ano)14(ther)-226(e)21(xample)-236(of)-231(non-linear)52(,)-229(non-)]TJ
+-10.225 -1.316 Td
+[(Biot)-597(beha)24(viour)-603(during)-604(buc)12(kling.)-611(The)-608(constituti)16(ve)-601(beha)24(viour)-603(of)]TJ
+0 -1.309 TD
+[(a)-324(temp)13(eratur)22(e)-328(dependent)-328(Ne)25(wtonia)12(n)-326(or)-325(pow)19(er)57(-la)17(w)-322(viscous)-330(mate)12(-)]TJ
+0 -1.316 TD
+[(rial,)-318(with)-315(thermal\205mechanical)-320(feedbac)10(k)-9(,)-318(is)-318(modi\223ed)-322(such)-319(that)-319(the)]TJ
+0 -1.309 TD
+[(effecti)10(ve)-478(viscosity)-486(becomes)-492(a)-489(decre)11(asing)-483(function)-487(of)-491(strain)13(-rat)17(e.)]TJ
+0 -1.316 TD
+[(F)14(or)-434(a)-441(N)18(ewt)21(onian)-438(materi)11(al,)-440(the)-441(effecti)10(ve)-430(viscosity)-445(decre)11(ases)-435(with)]TJ
+0 -1.309 TD
+[(the)-208(sq)21(uare)-194(of)-217(the)-208(str)17(ain-ra)12(te)-197(\()]TJ
+0 0 0.4 scn
+13.071 0 Td
+[(Fleit)17(out)-211(and)-201(F)21(roidev)27(aux,)-127(1)59(980)]TJ
+0 0 0 scn
+13.194 0 Td
+[(\).)-207(Similar)]TJ
+-26.265 -1.316 Td
+[(stra)14(in-rat)23(e)-752(sof)-13(tening)-742(rel)13(ationships)-751(arise)-750(from)-742(othe)12(r)-750(feedbac)10(k)]TJ
+T*
+[(pr)14(ocesses)-326(including)-327(miner)15(al)-327(react)11(ion-mechanical)-321(coupling)-332(\()]TJ
+0 0 0.4 scn
+(Hobbs)Tj
+0 -1.316 TD
+[(et)-525(al.,)-519(in)-500(press)]TJ
+0 0 0 scn
+-0.0001 Tc 6.963 0 Td
+[(\))-525(and)-523(diffusion-mechanical)-523(feedbac)10(k)-522(\()]TJ
+0 0 0.4 scn
+0 Tc 18.173 0 Td
+[(R)19(egena)14(uer)49(-)]TJ
+-25.136 -1.309 Td
+[(Lieb)-440(et)-436(al.,)-437(20)-32(09)]TJ
+0 0 0 scn
+7.654 0 Td
+[(\).)-433(S)21(train-r)19(ate)-425(perturbations)-440(ar)13(e)-444(ampli\223ed)-432(during)]TJ
+-7.654 -1.316 Td
+[(deformation)-608(leading)-610(to)-599(grea)14(ter)-591(localised)-613(stra)14(in-rat)23(es)-609(and)-612(self-)]TJ
+0 -1.309 TD
+[(enhancing)-295(feedbac)10(k)-9(.)]TJ
+1.443 -1.316 Td
+[(The)-301(gener)19(al)-300(theory)-306(for)-304(instabilities)-304(in)-302(rat)22(e)-308(dependent)-301(mate)12(rials)]TJ
+-1.443 -1.309 Td
+[(with)-301(strain)-295(and)-304(stra)14(in-rat)23(e)-308(sof)-13(t)15(ening)-306(is)-305(pres)14(ented)-299(in)-302(man)33(y)-307(papers;)]TJ
+0 -1.316 TD
+[(e)21(xamples)-531(ar)13(e)]TJ
+0 0 0.4 scn
+6.806 0 Td
+[(Anand)-535(et)-532(al.)-536(\(1)61(987\))]TJ
+0 0 0 scn
+9.972 0 Td
+(and)Tj
+0 0 0.4 scn
+2.237 0 Td
+[(Needl)13(eman)-535(\(1)61(988\))]TJ
+0 0 0 scn
+[(.)-530(One)]TJ
+13.44 59.06 Td
+[(conclusion)-284(is)-291(that)-292(instability)-293(is)-291(sensiti)10(v)14(e)-294(to)-278(geomet)10(rical)-291(or)-290(ph)34(ysical)]TJ
+0 -1.309 TD
+[(heter)27(ogene)11(ities.)-700(With)-696(refer)20(ence)-699(to)-688(folding,)-698(heter)27(ogene)11(ities)-703(in)]TJ
+0 -1.316 TD
+[(str)17(ain-ra)12(te)-231(introd)16(uced)-240(by)-228(incipient)-235(buc)12(kling)-224(of)-238(a)-235(lay)29(er)-223(are)-226(ampli\223ed)]TJ
+0 -1.309 TD
+[(by)-330(stra)14(in-rat)23(e)-355(sof)-13(teni)14(ng.)-356(These)-349(heter)20(ogene)11(ities)-354(may)-345(be)-351(those)-351(pre-)]TJ
+0 -1.316 TD
+[(dict)13(ed)-323(by)-310(the)-318(Biot)-310(theory)-320(but)-318(from)-311(the)-318(moment)-317(instabilities)-318(gro)18(w)47(,)]TJ
+0 -1.309 TD
+[(the)-605(proce)12(ss)-610(is)-613(not)-583(one)-612(of)-607(Biot-type)-595(w)26(a)18(v)14(elength)-612(selection)-607(but)]TJ
+0 -1.316 TD
+[(inv)27(olv)19(es)-500(localisation)-496(of)-504(deformation.)-495(In)]TJ
+0 0 0.4 scn
+19.083 0 Td
+[(Hobbs)-497(et)-498(al.)-502(\(20)-31(08\))]TJ
+0 0 0 scn
+9.836 0 Td
+(we)Tj
+-28.918 -1.309 Td
+[(select)15(ed)-207(constituti)16(ve)-191(relatio)10(ns)-204(for)-187(q)15(uartz)-196(and)-201(feldspar)-206(that)-196(giv)19(e)-205(r)16(eal-)]TJ
+T*
+[(istic)-283(but)-290(small)-291(\()]TJ
+/T1_2 1 Tf
+7.052 0 Td
+(<)Tj
+/T1_0 1 Tf
+0.766 0 Td
+[(20\))-291(viscosity)-288(ra)13(tios)-288(betw)12(een)-292(la)14(y)21(ers)-292(under)-286(mid-)-284(to)]TJ
+-7.818 -1.309 Td
+[(low)25(er)51(-crustal)-225(conditions.)-227(This)-223(selection)-231(is)-223(based)-227(on)-229(careful)-214(and)-229(crit-)]TJ
+T*
+[(ical)-225(anal)14(ysis)-223(by)]TJ
+0 0 0.4 scn
+6.942 0 Td
+[(Hirth)-229(et)-231(al.)-228(\(20)-31(0)32(1\))]TJ
+0 0 0 scn
+8.023 0 Td
+[(.)-229(Of)-228(course)-228(o)15(ther)-219(constituti)9(v)14(e)-232(rel)13(a-)]TJ
+-14.965 -1.309 Td
+[(tions)-286(e)21(xist)-298(but)-290(as)]TJ
+0 0 0.4 scn
+8.044 0 Td
+[(Schmid)-294(et)-292(al.)-297(\(20)31(1)66(0\))]TJ
+0 0 0 scn
+9.405 0 Td
+[(point)-281(out)-293(they)-262(can)-292(giv)19(e)-294(very)]TJ
+-17.448 -1.316 Td
+[(large)-324(viscosity)-343(ratios)12(,)-345(so)-342(large)-331(in)-336(fact)-340(that)-333(one)-338(has)-343(to)-332(q)22(uestion)-336(the)]TJ
+0 -1.309 TD
+[(v)21(alidity)-238(of)-251(e)21(xtra)13(polating)-252(the)-249(e)21(xperimental)-246(data)-253(to)-237(geologi)11(cal)-256(condi-)]TJ
+0 -1.316 TD
+[(tions.)-297(A)-254(viscosity)-302(ra)13(tio)-301(of)-299(1)66(0)]TJ
+6.2164 0 0 5.978 406.3747 578.2109 Tm
+(3)Tj
+8.2888 0 0 7.9702 412.4408 574.6393 Tm
+[(at)-296(1)59(0)-30(0)-30(0)-242(K)-299(in)-295(a)-304(homog)12(eneousl)12(y)-287(short-)]TJ
+-13.344 -1.309 Td
+[(ening)-306(lay)29(ered)-300(mate)12(rial)-314(implies)-306(magnitudes)-315(of)-313(differ)12(ential)-313(stres)16(s)-315(in)]TJ
+T*
+[(the)-318(crust)-310(of)-320(Gigapascals)-316(if)-331(the)-318(stren)12(gth)-324(of)-320(we)13(ak)-320(la)14(y)21(ers)-319(is)-318(as)-325(low)-283(as)]TJ
+0 -1.309 TD
+[(1)-235(MPa.)-309(Such)-318(high)-320(v)21(alues)-323(seem)-315(unlikely)51(.)-318(An)-320(additional)-315(issue)-321(is)-325(that)]TJ
+0 -1.316 TD
+[(the)-420(higher)-426(the)-420(viscosity)-425(ratio,)-415(the)-427(higher)-419(the)-427(viscous)-426(dissipation)]TJ
+-0.0001 Tc 0 -1.309 TD
+[(in)-275(the)-277(compet)10(ent)-277(la)14(y)14(er\(s\))-276(leading)-275(to)-257(thermal\205mechanical)-277(feedbac)10(k)]TJ
+0 Tc 0 -1.316 TD
+[(effects)-432(ev)15(en)-435(more)-421(dramati)13(c)-435(than)-435(ar)13(e)-438(consider)17(ed)-433(by)]TJ
+0 0 0.4 scn
+24.623 0 Td
+[(Hobbs)-435(et)-429(al.)]TJ
+-24.623 -1.316 Td
+[(\(20)-31(08\))]TJ
+0 0 0 scn
+3.044 0 Td
+[(.)-250(In)-243(the)-242(presenc)12(e)-246(of)-251(stra)14(in-ra)15(te)-238(sof)-13(teni)14(ng)-250(feedbac)10(k)-9(,)-243(the)-249(large)11(r)]TJ
+-3.044 -1.309 Td
+[(the)-468(initial)-463(viscosity)-473(ra)13(tio)-465(the)-468(more)-462(intense)-463(the)-468(fold)-475(localisation.)]TJ
+0 0 0.4 scn
+T*
+[(Fig.)-402(1)]TJ
+0 0 0 scn
+3.01 0 Td
+[(show)22(s)-473(shorteni)13(ng)-469(of)-477(a)-475(single)-476(la)14(y)21(er)-476(with)-479(a)-475(rel)13(ativ)17(ely)-467(high)]TJ
+-3.01 -1.309 Td
+[(\(20)-31(0\))-302(viscosity)-295(ratio)-281(to)-285(the)-297(embedding)-301(matrix.)-302(With)-299(no)-298(stra)14(in-rat)16(e)]TJ
+T*
+[(softening)-331(\()]TJ
+0 0 0.4 scn
+4.938 0 Td
+[(Fig.)-265(1)]TJ
+0 0 0 scn
+2.394 0 Td
+[(a)-338(and)-331(b\))-336(the)-331(Biot)-324(resu)14(lt)-330(of)-333(a)-331(sinusoidal)-336(w)20(a)24(ve)-321(form)]TJ
+-7.332 -1.309 Td
+[(dev)13(elops;)-222(with)-226(strain)13(-rat)17(e)-225(sof)-13(t)15(ening)-230(\()]TJ
+0 0 0.4 scn
+[(Fig.)-149(1)]TJ
+0 0 0 scn
+19.083 0 Td
+[(c)-230(and)-222(d\))-226(localised)-230(folding)]TJ
+-19.083 -1.316 Td
+[(dev)13(elops.)-241(The)-239(effects)-248(discussed)-241(in)]TJ
+0 0 0.4 scn
+15.376 0 Td
+[(Hobbs)-244(et)-238(al.)-242(\(20)-31(08\))]TJ
+0 0 0 scn
+8.81 0 Td
+[(are)-233(conserv)23(a-)]TJ
+-24.185 -1.309 Td
+[(tiv)26(e)-424(compared)-418(t)15(o)-416(what)-424(is)-421(e)21(xpected)-412(at)-425(large)11(r)-422(viscosity)-425(ratio)13(s)-425(and)]TJ
+T*
+[(t)15(end)-294(t)15(o)-293(support)-289(conclusions)-284(that)-292(these)-291(feedbac)10(k)-289(effects)-289(ar)13(e)-294(impor)53(-)]TJ
+0 -1.309 TD
+[(tant)-299(in)-295(natura)12(l)-304(deformations)-294(rather)-288(than)-298(detract)-290(from)-290(them.)]TJ
+/T1_3 1 Tf
+0 -2.646 TD
+[(2.)-601(In\224uence)-330(of)-327(boundary)-314(conditions)]TJ
+/T1_0 1 Tf
+1.436 -2.625 Td
+[(One)-199(outcome)-201(from)-188(the)-201(v)21(ast)-200(liter)19(atur)13(e)-198(\(for)-199(instance)]TJ
+0 0 0.4 scn
+22.619 0 Td
+[(Sha)27(wki,)-126(1)59(986;)]TJ
+-24.055 -1.309 Td
+[(F)21(r)16(essengea)13(s)-705(and)-700(Molinari,)-629(1)66(987)]TJ
+0 0 0 scn
+15.458 0 Td
+[(\))-703(concerning)-704(the)-701(in\224uence)-697(of)]TJ
+-15.458 -1.316 Td
+[(boundary)-236(conditions)-265(on)-263(deformation)-266(is)-264(that)-265(if)-276(the)-263(boundary)-242(condi-)]TJ
+0 -1.309 TD
+[(tions)-307(comprise)-307(constant)-307(imposed)-315(v)14(elocity)-314(then)-309(the)-311(acceler)10(ation)-309(of)]TJ
+0 -1.316 TD
+[(the)-489(boundaries)-493(is)-496(zero)-485(and)-495(the)-495(forc)14(e)-485(within)-494(a)-475(viscous)-494(mate)12(rial)]TJ
+0 -1.309 TD
+[(must)-316(deca)12(y)-328(with)-315(time.)-327(This)-318(is)-325(ob)26(vious)-325(from)-311(Ne)25(wton\220)14(s)-322(Second)-324(La)21(w)]TJ
+0 -1.316 TD
+[(of)-286(Mot)13(ion.)-284(The)-287(outcome)-290(\()]TJ
+0 0 0.4 scn
+11.58 0 Td
+[(Muhlhaus)-283(et)-286(al.,)-218(1)66(994,)-216(1)59(998)]TJ
+0 0 0 scn
+12.387 0 Td
+[(\))-286(for)-276(a)-263(viscous)]TJ
+-23.966 -1.309 Td
+[(mate)12(rial)-362(is)-359(that)-367(the)-359(ampli\223cation)-367(of)-361(de\224ections)-362(in)-363(the)-365(la)14(y)14(er)-360(must)]TJ
+T*
+[(decre)11(ase)-687(with)-698(time.)-696(Ultimat)11(ely)-686(buckli)11(ng)-702(ceases)-699(even)-688(though)]TJ
+0 -1.309 TD
+[(short)13(ening)-716(continues;)-720(the)-721(onl)14(y)-724(deformation)-717(is)-722(homog)12(eneous)]TJ
+0 -1.316 TD
+[(ampli\223cation)-545(of)-552(ear)13(ly)-536(formed)-552(de\224ections.)]TJ
+0 0 0.4 scn
+20.41 0 Td
+[(Schmid)-547(et)-545(al.)-550(\(20)31(1)59(0\))]TJ
+0 0 0 scn
+-20.41 -1.309 Td
+[(understandabl)18(y)-375(neglect)-372(these)-373(analy)21(ses)-377(because)-374(it)-371(means)-378(that)-367(the)]TJ
+ET
+/EmbeddedDocument /MC0 BDC
+/Document /MC1 BDC
+/CS0 CS 0.137 0.122 0.125 SCN
+0.5 w 22.926 M
+/GS1 gs
+128.773 223.346 162.133 -66.316 re
+S
+q
+128.523 223.596 328.592 -139.634 re
+W n
+q
+1 0 0 1 306.9019928 223.345993 cm
+0 0 150.069 -66.316 re
+S
+Q
+q
+1 0 0 1 306.9019928 144.0769958 cm
+0 0 150.069 -59.897 re
+S
+Q
+Q
+128.773 144.077 162.133 -50.332 re
+S
+BT
+0 g
+/T1_4 1 Tf
+14.4959 Tc 12.0046 0 0 12.0047 132.8436 211.6814 Tm
+(ab)Tj
+0 -6.528 TD
+(cd)Tj
+ET
+q
+1 0 0 1 290.9060059 190.3580017 cm
+0 0 m
+-3.065 -0.376 -9.056 10.959 -19.087 2.782 c
+-22.848 0.188 -28.514 -15.676 -35.852 -7.876 c
+-37.431 -3.346 -33.158 8.064 -42.864 7.312 c
+-44.071 7.237 -45.836 7.068 -47.183 6.109 c
+-52.477 2.012 -50.155 -6.691 -56.982 -8.759 c
+-64.319 -10.978 -63.901 -4.041 -66.827 0.301 c
+-68.08 2.162 -70.124 3.045 -71.702 3.252 c
+-73.142 3.44 -76.533 2.951 -78.994 -1.052 c
+-79.551 -1.992 -82.895 -5.864 -85.589 -3.59 c
+-88.142 -1.485 -91.532 4.981 -96.78 2.406 c
+-98.081 1.786 -99.66 1.222 -100.867 -1.804 c
+-103.375 -8.402 -107.276 -8.195 -108.576 -5.489 c
+-110.387 -1.71 -112.059 3.27 -115.449 5.169 c
+-122.183 8.421 -126.13 4.869 -128.081 1.579 c
+-130.774 -2.989 -130.124 -9.83 -134.49 -9.549 c
+-143.963 -8.665 -134.025 2.499 -142.849 5.827 c
+-150.14 7.857 -153.158 -0.47 -161.564 -0.489 c
+S
+Q
+q
+1 0 0 1 129.3419952 187.3320007 cm
+0 0 m
+5.294 0.789 7.709 1.86 10.217 3.797 c
+12.26 5.394 15.093 8.59 18.669 6.316 c
+22.338 3.703 18.622 -1.598 21.269 -5.508 c
+23.824 -9.192 28.05 -9.512 31.161 -7.181 c
+36.269 -2.876 33.948 8.327 42.91 7.199 c
+47.833 6.316 48.018 0.62 50.109 -2.989 c
+51.316 -5.076 53.406 -7.087 57.771 -5.978 c
+62.787 -4.586 62.74 0.225 64.319 2.274 c
+67.523 6.466 71.471 -0.187 73.189 -1.636 c
+75 -3.158 76.904 -3.421 78.251 -3.421 c
+82.338 -3.421 84.66 1.203 87.26 3.496 c
+88.328 4.435 90.836 4.267 92.415 2.462 c
+93.808 1.183 93.669 -4.549 97.663 -6.617 c
+100.449 -8.064 103.978 -9.474 108.576 -6.278 c
+112.941 -3.271 113.638 12.406 121.811 6.522 c
+124.458 3.609 119.35 -5.282 126.641 -9.136 c
+132.539 -11.654 135.836 -6.711 138.901 -3.064 c
+142.337 1.034 143.267 5.451 149.583 6.146 c
+154.691 6.691 156.131 0.77 161.564 0.225 c
+S
+Q
+q
+1 0 0 1 306.9019928 190.4589996 cm
+0 0 m
+5.616 -0.172 7.056 3.999 10.826 6.261 c
+18.084 10.616 23.215 4.798 21.502 -1.795 c
+21.024 -3.635 20.439 -6.045 21.27 -7.754 c
+21.953 -9.158 24.308 -10.299 25.818 -9.905 c
+30.136 -8.777 30.122 -1.043 31.241 2.293 c
+34.036 10.632 45.977 8.842 47.605 0.278 c
+48.036 -1.992 47.648 -8.222 51.819 -8.175 c
+57.474 -8.111 54.075 3.55 61.973 3.023 c
+69.387 2.529 68.102 -5.711 72.668 -4.96 c
+77.558 -4.157 76.058 3.159 83.059 3.264 c
+84.915 3.292 86.932 2.773 88.152 1.375 c
+90.92 -1.793 87.721 -10.527 94.691 -10.609 c
+96.507 -10.63 98.583 -9.468 99.596 -7.962 c
+102.242 -4.032 101.25 2.023 104.962 5.536 c
+108.08 8.491 113.577 8.054 115.723 4.439 c
+118.201 0.269 115.494 -5.785 117.019 -9.799 c
+117.619 -11.379 118.78 -12.289 120.469 -12.259 c
+122.367 -12.226 124.411 -10.428 125.487 -8.866 c
+128.62 -4.317 128.653 2.1 133.581 5.556 c
+135.155 6.659 137.46 7.098 139.372 6.894 c
+144.868 6.309 146.137 -0.21 150.069 -0.27 c
+S
+Q
+q
+1 0 0 1 306.9019928 187.7359924 cm
+0 0 m
+5.992 0.203 8.442 3.282 11.201 5.928 c
+17.89 12.343 20.134 5.163 18.362 -1.329 c
+16.988 -6.358 21.71 -10.145 26.665 -9.178 c
+32.698 -7.999 32.153 -0.224 33.271 3.112 c
+36.065 11.45 45.341 8.252 45.059 -0.843 c
+44.975 -3.542 47.924 -7.75 52.091 -7.569 c
+60.473 -7.203 56.676 4.324 62.245 3.629 c
+66.654 3.08 65.924 -4.384 72.153 -4.627 c
+79.137 -4.9 78.601 3.892 83.301 3.932 c
+90.129 3.989 83.03 -10.605 94.691 -10.457 c
+96.507 -10.434 99.559 -9.733 100.808 -8.416 c
+105.999 -2.942 104.123 3.121 105.901 5.537 c
+108.57 9.167 113.452 8.118 114.026 3.955 c
+114.503 0.513 112.564 -4.65 114.474 -8.496 c
+115.709 -10.985 118.781 -11.842 120.469 -11.774 c
+133.222 -11.257 129.444 9.813 139.735 7.137 c
+144.752 5.833 143.378 1.123 150.069 -0.271 c
+S
+Q
+q
+1 0 0 1 128.8619995 122.7440033 cm
+0 0 m
+1.094 -0.316 2.127 -0.802 3.283 -0.952 c
+4.438 -1.103 5.555 -1.103 6.856 -0.892 c
+9.268 -0.503 11.955 1.177 14.361 1.132 c
+17.353 1.077 18.215 -0.636 19.722 -2.857 c
+20.329 -3.752 20.732 -4.728 21.092 -5.181 c
+21.452 -5.634 21.863 -6.355 21.998 -5.671 c
+22.387 -3.693 22.064 0.076 22.7 1.967 c
+23.804 5.246 28.278 6.075 30.443 3.336 c
+31.992 1.378 31.807 -1.789 32.647 -4.049 c
+33.161 -5.435 34.415 -4.722 35.327 -3.99 c
+37.351 -2.366 38.542 -0.346 40.926 0.954 c
+42.724 1.935 44.848 2.206 46.823 2.622 c
+48.143 2.9 50.061 3.534 51.409 3.575 c
+52.758 3.616 53.617 3.331 54.506 2.812 c
+55.395 2.294 55.857 1.446 56.245 0.392 c
+56.634 -0.661 56.83 -2.213 57.009 -3.275 c
+57.187 -4.337 57.384 -5.684 57.557 -6.221 c
+58.072 -7.83 58.865 -5.76 59.272 -4.824 c
+59.734 -3.757 60.315 -1.368 60.928 -0.214 c
+61.684 1.21 63.591 2.833 65.288 2.562 c
+68.061 2.12 68.575 0.631 69.754 -1.453 c
+70.194 -2.229 71.366 -4.901 72.59 -4.312 c
+74.306 -3.485 75.105 -1.332 76.807 -0.405 c
+78.295 0.405 80.445 0.352 81.786 -0.834 c
+82.612 -1.565 83.27 -3.197 83.812 -3.93 c
+84.353 -4.663 84.578 -5.39 85.122 -5.062 c
+86.853 -4.017 84.274 4.904 90.863 4.264 c
+94.915 3.871 94.258 -1.221 95.319 -4.004 c
+96.015 -5.829 98.742 -1.184 99.644 -0.561 c
+100.708 0.174 101.553 0.439 103.479 0.56 c
+105.405 0.681 109.119 0.461 110.936 0.323 c
+112.755 0.183 113.491 0.15 114.546 -0.059 c
+116.604 -0.466 117.888 -1.466 120.095 -0.965 c
+122.588 -0.398 124.701 1.314 127.53 1.49 c
+130.236 1.659 131.609 0.14 133.963 -0.714 c
+135.9 -1.416 136.911 -0.215 138.728 0.18 c
+139.741 0.4 140.986 0.481 141.837 0.346 c
+143.648 0.059 144.387 -1.805 145.28 -3.156 c
+145.647 -3.712 146.085 -5.197 146.246 -4.674 c
+146.862 -2.681 146.071 0.057 147.055 2.025 c
+147.515 2.945 148.095 3.443 148.96 3.692 c
+151.14 4.319 152.689 3.467 153.69 1.466 c
+154.383 0.08 154.056 -1.797 155.013 -3.086 c
+155.789 -4.132 156.425 -3.142 157.252 -2.501 c
+157.74 -2.123 158.139 -1.676 158.753 -1.358 c
+159.367 -1.041 160.26 -0.864 160.826 -0.654 c
+161.391 -0.444 161.638 -0.177 162.044 0.06 c
+S
+Q
+q
+1 0 0 1 290.9060059 116.7290039 cm
+0 0 m
+-0.366 0.039 -0.591 0.372 -1.147 0.24 c
+-2.811 -0.158 -3.527 -1.5 -5.231 -1.81 c
+-6.138 -1.974 -7.756 -2.028 -8.58 -1.464 c
+-9.406 -0.898 -9.986 0.02 -10.451 1.073 c
+-10.916 2.124 -11.045 3.758 -11.225 4.468 c
+-11.421 5.242 -12.178 5.717 -12.392 4.442 c
+-12.549 3.512 -12.35 1.141 -12.595 -0.059 c
+-12.839 -1.261 -13.142 -1.793 -13.845 -2.322 c
+-14.55 -2.853 -15.523 -3.139 -16.467 -2.978 c
+-19.179 -2.516 -18.904 -0.685 -20.219 0.893 c
+-20.64 1.399 -20.938 1.603 -21.47 1.43 c
+-24.504 0.438 -27.654 -1.119 -32.215 1.86 c
+-34.289 3.214 -34.685 2.568 -37.053 1.583 c
+-40.16 0.291 -40.796 -0.278 -45.296 0.133 c
+-46.559 0.249 -46.999 0.802 -48.392 1.073 c
+-49.786 1.343 -51.578 1.35 -53.336 1.43 c
+-55.093 1.509 -57.645 1.66 -58.935 1.549 c
+-60.595 1.406 -61.225 0.523 -62.271 -0.595 c
+-63.647 -2.069 -64.944 -3.759 -67.25 -2.751 c
+-69.505 -1.764 -69.804 0.27 -70.43 2.442 c
+-70.674 3.289 -70.549 5.956 -71.86 5.956 c
+-73.369 5.956 -72.662 1.129 -73.349 -0.595 c
+-74.234 -2.821 -75.096 -3.654 -77.565 -3.513 c
+-80.07 -3.369 -80.231 -1.677 -81.497 -0.071 c
+-82.016 0.588 -82.426 1.117 -82.998 1.251 c
+-84.115 1.512 -85.124 -0.602 -85.797 -1.191 c
+-86.439 -1.754 -87.395 -2.473 -88.18 -2.8 c
+-89.634 -3.404 -91.234 -3.18 -92.469 -2.203 c
+-94.453 -0.633 -94.58 1.018 -95.804 2.918 c
+-96.24 3.596 -97.205 4.288 -97.889 3.514 c
+-99.023 2.229 -99.085 -0.057 -99.675 -1.608 c
+-100.82 -4.615 -104.426 -5.809 -107.288 -3.084 c
+-109.099 -1.358 -107.999 4.84 -109.586 4.992 c
+-110.321 5.062 -112.161 4.597 -113.315 4.288 c
+-114.469 3.98 -115.795 3.385 -116.829 3.097 c
+-117.864 2.808 -118.68 2.961 -119.51 2.561 c
+-122.255 1.239 -123.442 -1.984 -126.633 -2.989 c
+-130.445 -4.189 -132.14 -1.878 -133.209 1.49 c
+-133.609 2.749 -133.726 4.184 -133.864 5.063 c
+-134.273 7.66 -135.955 7.061 -136.365 4.85 c
+-136.574 3.727 -136.167 1.221 -136.628 -0.178 c
+-139.375 -8.524 -144.41 -1.393 -146.11 1.477 c
+-147.235 3.377 -152.873 0.348 -155.504 0.168 c
+-157.895 0.004 -160.09 0.573 -162.044 -0.119 c
+S
+Q
+q
+1 0 0 1 456.970993 109.8190002 cm
+0 0 m
+-0.4 0.206 -0.742 0.588 -1.199 0.619 c
+-2.518 0.712 -3.354 -0.827 -4.209 -1.595 c
+-5.408 -2.669 -5.948 -4.133 -7.132 -2.392 c
+-7.277 -2.178 -7.911 -0.366 -8.284 -0.753 c
+-8.513 -0.994 -8.565 -1.462 -8.771 -2.081 c
+-8.977 -2.702 -9.242 -3.719 -9.524 -4.473 c
+-9.805 -5.227 -10.209 -5.888 -10.453 -6.598 c
+-10.698 -7.31 -10.782 -8.219 -10.985 -8.724 c
+-11.212 -9.288 -11.875 -10.073 -12.534 -9.566 c
+-13.472 -8.844 -14.506 -6.921 -14.97 -5.846 c
+-15.388 -4.878 -15.316 -3.312 -16.299 -2.658 c
+-17.629 -1.771 -18.883 -2.842 -20.196 -3.012 c
+-22.173 -3.267 -22.864 -2.974 -24.402 -1.905 c
+-25.103 -1.417 -26.171 -0.71 -26.97 -0.045 c
+-27.769 0.62 -28.519 1.587 -29.185 2.081 c
+-30.286 2.898 -31.657 3.196 -32.992 2.788 c
+-34.457 2.342 -36.03 1.113 -37.509 0.485 c
+-38.241 0.176 -39.035 -0.118 -39.752 -0.266 c
+-43.357 -1.017 -44.103 0.632 -46.906 1.732 c
+-48.086 2.195 -49.595 2.464 -50.881 2.7 c
+-52.168 2.937 -53.211 3.003 -54.201 3.055 c
+-56.013 3.15 -57.179 3.193 -58.63 1.992 c
+-60.019 0.845 -60.696 -0.651 -61.198 -2.347 c
+-61.592 -3.673 -61.285 -5.858 -62.04 -6.953 c
+-62.52 -7.649 -63.313 -8.434 -64.21 -8.371 c
+-65.108 -8.307 -65.842 -7.635 -66.424 -6.642 c
+-67.006 -5.65 -67.227 -4.032 -67.532 -2.702 c
+-67.833 -1.371 -68.07 0.205 -68.24 1.328 c
+-68.408 2.45 -68.454 2.974 -68.549 4.029 c
+-68.645 5.085 -68.748 6.427 -68.815 7.66 c
+-68.881 8.892 -68.897 10.567 -68.948 11.423 c
+-68.999 12.28 -69.041 12.481 -69.125 12.796 c
+-69.207 13.112 -69.216 13.371 -69.435 13.283 c
+-69.653 13.196 -69.692 13.225 -69.789 12.53 c
+-69.885 11.836 -70.115 10.38 -70.011 9.165 c
+-69.907 7.951 -69.376 6.436 -69.169 5.313 c
+-68.962 4.191 -68.844 3.491 -68.771 2.434 c
+-68.697 1.377 -68.645 0.326 -68.726 -1.019 c
+-68.808 -2.366 -69.073 -4.325 -69.257 -5.624 c
+-69.442 -6.923 -69.617 -8.052 -69.832 -8.813 c
+-69.925 -9.134 -70.628 -10.782 -71.074 -10.628 c
+-71.489 -10.483 -72.043 -10.02 -72.578 -9.432 c
+-73.115 -8.845 -73.816 -7.895 -74.262 -7.13 c
+-74.846 -6.127 -75.218 -3.84 -76.564 -3.499 c
+-77.712 -3.206 -78.879 -5.769 -79.398 -6.466 c
+-80.231 -7.585 -81.147 -8.763 -82.586 -9.123 c
+-83.293 -9.3 -83.991 -9.378 -84.756 -9.035 c
+-87.046 -8.005 -87.635 -5.809 -88.254 -3.587 c
+-88.883 -1.332 -88.905 1.518 -89.893 3.631 c
+-90.473 4.87 -91.024 3.266 -91.132 2.744 c
+-91.333 1.777 -91.434 -0.285 -91.752 -1.772 c
+-92.267 -4.178 -93.081 -7.221 -94.452 -9.3 c
+-95.22 -10.464 -96.524 -11.28 -97.951 -10.849 c
+-98.6 -10.654 -99.278 -10.257 -99.721 -9.61 c
+-100.167 -8.963 -100.355 -8.375 -100.475 -7.174 c
+-100.594 -5.973 -100.356 -3.864 -100.43 -2.48 c
+-100.504 -1.096 -100.909 0.025 -100.917 1.107 c
+-100.924 2.187 -100.741 2.844 -100.475 3.941 c
+-100.147 5.285 -98.547 8.034 -99.367 9.375 c
+-100.782 11.686 -106.675 9.198 -108.198 8.167 c
+-110.354 6.707 -110.623 3.854 -111.456 1.593 c
+-111.95 0.25 -112.346 -0.947 -112.917 -2.037 c
+-113.489 -3.128 -114.198 -4.131 -114.834 -4.79 c
+-115.47 -5.449 -116.187 -5.544 -116.637 -5.795 c
+-117.086 -6.046 -117.103 -6.49 -117.567 -6.422 c
+-118.942 -6.222 -120.642 -4.064 -121.154 -2.924 c
+-122.122 -0.764 -122.21 2.343 -122.304 4.693 c
+-122.386 6.73 -122.048 8.973 -122.394 10.981 c
+-122.517 11.695 -122.65 13.382 -123.901 12.84 c
+-125.141 12.302 -124.301 9.599 -124.075 8.633 c
+-123.524 6.273 -123.193 4.536 -123.297 2.024 c
+-123.385 -0.085 -123.668 -2.539 -124.784 -4.384 c
+-125.504 -5.573 -126.941 -7.008 -128.459 -6.598 c
+-130.857 -5.952 -131.513 -4.018 -132.134 -1.817 c
+-132.633 -0.05 -132.288 2.695 -133.552 4.162 c
+-134.457 5.213 -136.038 4.848 -137.094 4.295 c
+-139.198 3.193 -140.263 1.93 -142.762 1.416 c
+-144.254 1.11 -146.532 1.271 -147.935 1.17 c
+-148.806 1.107 -149.491 -0.193 -150.069 -0.842 c
+S
+Q
+q
+1 0 0 1 306.9019928 119.5160065 cm
+0 0 m
+0.444 -0.473 0.764 -1.101 1.329 -1.418 c
+1.894 -1.735 2.395 -1.823 3.233 -1.816 c
+5.087 -1.799 6.757 -1.368 8.326 -0.399 c
+10.288 0.815 11.894 2.232 14.17 2.877 c
+15.494 3.253 16.452 2.797 17.579 2.036 c
+18.413 1.474 19.726 0.122 20.129 -0.835 c
+20.825 -2.482 21.237 -4.436 21.787 -6.155 c
+22.023 -6.894 22.134 -7.513 22.318 -7.882 c
+22.502 -8.251 22.649 -8.466 22.849 -8.281 c
+23.05 -8.094 22.982 -7.958 22.938 -7.306 c
+22.799 -5.267 22.263 -3.24 22.23 -1.196 c
+22.207 0.144 22.355 1.993 22.452 3.631 c
+22.547 5.27 22.55 7.415 22.805 8.634 c
+23.062 9.858 24.093 11.681 25.594 11.512 c
+27.622 11.285 28.699 8.644 29.403 7.04 c
+30.245 5.12 31.095 2.145 31.428 0.088 c
+31.831 -2.401 31.323 -4.995 31.705 -7.483 c
+31.893 -8.7 32.999 -8.224 33.521 -7.483 c
+34.851 -5.595 35.128 -2.815 36.045 -0.709 c
+37.009 1.51 38.289 3.944 40.095 5.599 c
+41.096 6.517 42.984 6.725 44.238 7.084 c
+46.088 7.616 47.538 8.259 49.55 8.102 c
+51.98 7.915 52.623 6.7 53.624 4.561 c
+54.71 2.236 54.809 0.381 54.421 -2.126 c
+54.111 -4.129 53.271 -6.104 52.739 -8.059 c
+52.488 -8.982 52.245 -9.802 52.162 -10.494 c
+52.081 -11.188 52.169 -11.722 52.251 -12.177 c
+52.308 -12.491 52.853 -14.094 53.314 -13.151 c
+53.543 -12.685 53.602 -11.898 53.846 -10.761 c
+54.349 -8.416 54.616 -5.696 55.618 -3.499 c
+56.034 -2.583 56.724 -1.891 57.224 -1.264 c
+57.793 -0.55 59.145 0.861 59.912 1.372 c
+62.083 2.821 62.658 0.898 63.405 -1.019 c
+64.282 -3.271 64.736 -5.391 65.181 -7.749 c
+65.359 -8.687 65.424 -9.573 65.624 -10.097 c
+66.021 -11.136 66.71 -10.783 67.262 -10.097 c
+67.63 -9.639 68.091 -8.852 68.566 -8.312 c
+69.038 -7.77 69.595 -7.277 70.052 -6.909 c
+71.297 -5.904 71.975 -5.404 73.824 -5.653 c
+74.684 -5.77 75.456 -5.945 76.163 -6.509 c
+76.87 -7.074 77.704 -8.228 78.111 -8.723 c
+78.323 -8.981 79.04 -10.159 78.864 -8.901 c
+78.787 -8.357 78.451 -7.27 78.157 -6.332 c
+77.86 -5.395 77.28 -4.354 77.093 -3.277 c
+76.906 -2.2 76.945 -1.004 77.049 0.044 c
+77.153 1.092 77.55 1.932 77.712 2.966 c
+77.875 4.001 77.798 5.302 78.023 6.243 c
+78.246 7.184 78.723 7.741 79.041 8.545 c
+79.359 9.351 79.662 10.369 79.926 11.07 c
+80.192 11.771 80.247 12.333 80.635 12.752 c
+81.487 13.674 82.755 13.489 83.779 13.018 c
+84.988 12.464 85.014 11.684 84.931 10.449 c
+84.803 8.564 84.294 6.828 84.355 4.871 c
+84.417 2.837 85.228 0.972 85.064 -1.107 c
+85.012 -1.757 84.915 -2.561 84.842 -3.233 c
+84.736 -4.196 84.392 -5.508 84.532 -6.466 c
+84.578 -6.784 84.61 -7.136 84.886 -6.953 c
+85.761 -6.37 86.137 -4.127 86.745 -3.233 c
+87.785 -1.708 89.581 -0.418 91.395 -0.045 c
+92.441 0.17 93.768 0.339 95.159 0.398 c
+96.549 0.457 98.497 0.406 99.719 0.31 c
+100.94 0.213 101.566 0.09 102.464 -0.178 c
+104.182 -0.689 105.743 -1.917 107.462 -2.322 c
+108.349 -2.53 109.391 -2.7 110.346 -2.524 c
+112.436 -2.14 114.43 -0.262 116.412 0.531 c
+118.14 1.222 119.856 1.439 121.57 0.475 c
+122.357 0.033 123.092 -0.621 123.852 -1.329 c
+124.612 -2.037 125.566 -3.044 126.286 -3.587 c
+127.008 -4.13 127.536 -4.408 128.148 -4.561 c
+128.759 -4.714 129.175 -4.607 129.829 -4.473 c
+131.146 -4.203 132.107 -3.575 133.505 -3.676 c
+134.018 -3.712 134.668 -3.941 135.099 -3.985 c
+136.834 -4.165 135.466 -2.128 135.427 -0.912 c
+135.405 -0.207 135.467 0.218 135.674 0.974 c
+135.882 1.73 136.455 2.522 136.605 3.542 c
+136.93 5.751 136.369 8.158 136.516 10.406 c
+136.562 11.112 136.799 12.316 137.756 12.265 c
+138.9 12.204 140.801 10.798 141.475 9.963 c
+142.073 9.222 142.535 8.156 142.848 7.262 c
+143.388 5.718 143.507 3.712 143.557 2.081 c
+143.585 1.098 143.549 -0.457 143.513 -1.24 c
+143.415 -3.311 143.617 -3.719 145.638 -2.746 c
+146.728 -2.221 148.373 -1.915 150.069 -0.886 c
+S
+Q
+EMC
+EMC
+BT
+/CS0 cs 0 0 0 scn
+/GS0 gs
+/T1_3 1 Tf
+0 Tc 6.376 0 0 6.376 32.8252 68.7685 Tm
+[(Fig.)-210(1)47(.)]TJ
+/T1_0 1 Tf
+3.157 0 Td
+[(R)18(esults)-283(of)-281(shortening)-278(a)-281(single)-286(lay)26(er)-283(without)-289(\(a\),)-285(\(b\))-283(and)-276(with)-288(\(c\),)-282(\(d\))-288(strain-r)18(ate)-269(sof)-13(tening.)-279(Constant)-283(velocity)-281(boundary)-269(conditions.)-286(Maxwell)-279(mater)2(ials)-281(in)-279(both)-272(cases.)-289(Elasticity)]TJ
+-3.157 -1.343 Td
+[(homogeneous)-275(throughout.)-278(Initial)-272(viscosity)-283(ratio)-277(20)-30(0.)-284(For)-257(details)-284(of)-281(constitutiv)15(e)-280(relations)-274(see)]TJ
+0 0 0.4 scn
+42.066 0 Td
+[(Hobbs)-283(et)-281(al.)-277(\(in)-261(press\))]TJ
+0 0 0 scn
+9.905 0 Td
+[(.)-278(The)-280(size)-290(of)-290(these)-276(folds)-285(is)-277(independent)-285(of)-281(a)-272(length)-286(scale)-281(but)-267(once)]TJ
+-51.972 -1.343 Td
+[(the)-335(process)-329(operating)-331(to)-328(produce)-329(strain-r)18(ate)-322(sof)-13(tening)-330(in)-332(\(c\))-342(and)-329(\(d\))-342(is)-330(speci\223ed)-348(a)-326(length)-339(scale)-344(is)-330(set)-333(\(see)]TJ
+0 0 0.4 scn
+48.789 0 Td
+[(T)45(able)-339(1)]TJ
+0 0 0 scn
+3.308 0 Td
+[(\).)-332(4)-24(4%)-334(Shortening)-337(in)-332(\(a\))-336(and)-329(\(c\),)-344(50%)-332(shortening)-331(in)-332(\(b\))-336(and)-338(\(d\).)]TJ
+/T1_1 1 Tf
+-23.75 108.087 Td
+[(Reply)-326(/)-328(Journal)-341(of)-334(Structur)17(al)-328(Geology)-344(32)-328(\(20)36(1)54(0\))-336(1)63(3)54<318531>58(34)]TJ
+/T1_0 1 Tf
+-0.0652 Tc -28.347 0 Td
+[(13)-65(2)]TJ
+ET
+endstream
+endobj
+
+137 0 obj
+31124
+endobj
+
+%% Original object ID: 39 0
+138 0 obj
+<<
+ /OP false
+ /OPM 1
+ /SA true
+ /SM 0.0200043
+ /Type /ExtGState
+ /op false
+>>
+endobj
+
+%% Original object ID: 88 0
+139 0 obj
+<<
+ /BaseFont /IKFFKH+AdvP4C4E51
+ /Encoding 247 0 R
+ /FirstChar 60
+ /FontDescriptor 248 0 R
+ /LastChar 62
+ /Subtype /Type1
+ /ToUnicode 249 0 R
+ /Type /Font
+ /Widths [
+ 770
+ 500
+ 770
+ ]
+>>
+endobj
+
+%% Original object ID: 93 0
+140 0 obj
+<<
+ /BaseFont /IKFFPG+Arial-BoldMT
+ /Encoding /WinAnsiEncoding
+ /FirstChar 97
+ /FontDescriptor 251 0 R
+ /LastChar 100
+ /Subtype /Type1
+ /Type /Font
+ /Widths [
+ 556
+ 611
+ 556
+ 611
+ ]
+>>
+endobj
+
+%% Original object ID: 36 0
+141 0 obj
+<<
+ /Author (TNQ)
+ /Creator (Adobe Illustrator\(R\) 11)
+ /Metadata 252 0 R
+ /Title (sg_2378_gr1_bw.eps)
+>>
+endobj
+
+%% Original object ID: 38 0
+142 0 obj
+<<
+ /Metadata 254 0 R
+>>
+endobj
+
+%% Original object ID: 110 0
+143 0 obj
+<<
+ /BitsPerComponent 8
+ /ColorSpace [
+ /Indexed
+ /DeviceRGB
+ 255
+ 101 0 R
+ ]
+ /Height 99
+ /Width 74
+ /Length 144 0 R
+>>
+stream
+
+endstream
+endobj
+
+%QDF: ignore_newline
+144 0 obj
+7326
+endobj
+
+%% Original object ID: 41 0
+145 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib7)
+ /F 4
+ /Rect [
+ 269.688
+ 483.761
+ 293.556
+ 491.698
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 42 0
+146 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib7)
+ /F 4
+ /Rect [
+ 42.52
+ 473.272
+ 86.23
+ 481.266
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 43 0
+147 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib18)
+ /F 4
+ /Rect [
+ 107.887
+ 452.353
+ 180.113
+ 460.346
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 44 0
+148 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib7)
+ /F 4
+ /Rect [
+ 238.847
+ 410.513
+ 293.556
+ 418.507
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 45 0
+149 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib7)
+ /F 4
+ /Rect [
+ 42.52
+ 400.025
+ 61.739
+ 408.019
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 46 0
+150 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib18)
+ /F 4
+ /Rect [
+ 210.954
+ 389.594
+ 293.556
+ 397.587
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 47 0
+151 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib7)
+ /F 4
+ /Rect [
+ 54.312
+ 347.754
+ 132.605
+ 355.691
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 48 0
+152 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib7)
+ /F 4
+ /Rect [
+ 167.528
+ 326.835
+ 247.918
+ 334.772
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 49 0
+153 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib18)
+ /F 4
+ /Rect [
+ 128.239
+ 305.915
+ 197.688
+ 313.852
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 50 0
+154 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (tbl1)
+ /F 4
+ /Rect [
+ 129.203
+ 133.285
+ 156.756
+ 141.279
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 51 0
+155 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib16)
+ /F 4
+ /Rect [
+ 235.389
+ 70.526
+ 293.556
+ 78.52
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 52 0
+156 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib16)
+ /F 4
+ /Rect [
+ 42.52
+ 60.095
+ 100.517
+ 68.032
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 53 0
+157 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib17)
+ /F 4
+ /Rect [
+ 504.34
+ 525.6
+ 562.564
+ 533.537
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 54 0
+158 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib17)
+ /F 4
+ /Rect [
+ 311.527
+ 515.112
+ 359.887
+ 523.105
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 55 0
+159 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib9)
+ /F 4
+ /Rect [
+ 381.26
+ 515.112
+ 468.51
+ 523.105
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 56 0
+160 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib18)
+ /F 4
+ /Rect [
+ 363.231
+ 452.353
+ 438.236
+ 460.346
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 57 0
+161 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib18)
+ /F 4
+ /Rect [
+ 513.297
+ 420.945
+ 562.564
+ 428.939
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 58 0
+162 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib18)
+ /F 4
+ /Rect [
+ 311.527
+ 410.513
+ 335.735
+ 418.507
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 59 0
+163 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib15)
+ /F 4
+ /Rect [
+ 413.235
+ 379.105
+ 480.869
+ 387.099
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 60 0
+164 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib16)
+ /F 4
+ /Rect [
+ 432.397
+ 337.266
+ 562.564
+ 345.26
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 61 0
+165 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib7)
+ /F 4
+ /Rect [
+ 415.842
+ 316.346
+ 491.527
+ 324.34
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 62 0
+166 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib7)
+ /F 4
+ /Rect [
+ 468.453
+ 686.438
+ 526.28
+ 692.844
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 63 0
+167 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib20)
+ /F 4
+ /Rect [
+ 468.453
+ 669.316
+ 542.494
+ 675.666
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 64 0
+168 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib17)
+ /F 4
+ /Rect [
+ 468.453
+ 652.195
+ 554.286
+ 658.545
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 65 0
+169 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib20)
+ /F 4
+ /Rect [
+ 468.453
+ 635.017
+ 542.494
+ 641.423
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 66 0
+170 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib8)
+ /F 4
+ /Rect [
+ 468.453
+ 587.225
+ 530.532
+ 593.575
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 67 0
+171 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib8)
+ /F 4
+ /Rect [
+ 468.453
+ 578.664
+ 558.595
+ 585.014
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 68 0
+172 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib8)
+ /F 4
+ /Rect [
+ 468.453
+ 570.104
+ 542.494
+ 576.453
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 184 0
+173 0 obj
+<<
+ /N 174 0 R
+ /P 74 0 R
+ /R [
+ 40
+ 282
+ 296
+ 549
+ ]
+ /T 10 0 R
+ /V 135 0 R
+>>
+endobj
+
+%% Original object ID: 183 0
+174 0 obj
+<<
+ /N 175 0 R
+ /P 74 0 R
+ /R [
+ 40
+ 46
+ 296
+ 272
+ ]
+ /T 10 0 R
+ /V 173 0 R
+>>
+endobj
+
+%% Original object ID: 182 0
+175 0 obj
+<<
+ /N 176 0 R
+ /P 74 0 R
+ /R [
+ 309
+ 292
+ 565
+ 549
+ ]
+ /T 10 0 R
+ /V 174 0 R
+>>
+endobj
+
+%% Original object ID: 181 0
+176 0 obj
+<<
+ /N 191 0 R
+ /P 74 0 R
+ /R [
+ 309
+ 46
+ 565
+ 272
+ ]
+ /T 10 0 R
+ /V 175 0 R
+>>
+endobj
+
+%% Contents for page 3
+%% Original object ID: 69 0
+177 0 obj
+<<
+ /Length 178 0 R
+>>
+stream
+BT
+/CS0 cs 0 0 0 scn
+/GS0 gs
+/T1_0 1 Tf
+8.2888 0 0 7.9702 42.5197 538.0156 Tm
+[(dominant)-364(w)20(a)24(vele)12(ngth)-370(in)-363(a)-365(natura)12(l)-372(fold)-366(sy)14(stem)-355(canno)12(t)-368(be)-372(used)-367(t)15(o)]TJ
+0 -1.309 TD
+[(say)-591(an)33(ything)-625(about)-627(the)-625(viscosity)-623(ra)13(tio)-623(unless)-627(one)-626(kno)15(ws)-617(the)]TJ
+0 -1.316 TD
+[(boundary)-386(conditions.)-405(Although)-408(the)-413(ar)13(c)-407(length)-407(may)-399(be)-413(important)]TJ
+0 -1.309 TD
+[(in)-322(discussions)-315(of)-320(w)20(a)24(velength)-310(to)-298(thickne)11(ss)-316(ratios)-309(for)-310(constant)-321(forc)14(e)]TJ
+0 -1.316 TD
+[(boundary)-448(conditions,)-460(for)-461(constant)-464(velo)13(city)-470(boundary)-448(conditions,)]TJ
+0 -1.309 TD
+[(thicken)11(ing)-445(occurs)-451(late)-442(in)-452(the)-454(folding)-455(hist)14(ory)-454(\(Figure)-444(3)-454(of)]TJ
+0 0 0.4 scn
+27.407 0 Td
+(Hobbs)Tj
+-27.407 -1.316 Td
+[(et)-409(al.,)-403(20)-32(08)]TJ
+0 0 0 scn
+5.273 0 Td
+[(\))-409(and)-406(hence)-403(the)-407(ar)13(c)-407(length)-407(is)-407(not)-392(the)-407(rel)13(ev)15(ant)-403(length)]TJ
+-5.273 -1.309 Td
+(scale.)Tj
+1.443 -1.316 Td
+[(The)-280(resu)14(lts)-290(of)]TJ
+0 0 0.4 scn
+6.443 0 Td
+[(Schmid)-281(et)-286(al.)-283(\(20)31(1)66(0)]TJ
+0 0 0 scn
+8.714 0 Td
+[(;)-286(Figur)12(e)-280(3\))-281(illustra)10(te)-272(this)-287(point)]TJ
+-16.6 -1.309 Td
+[(perfectl)10(y;)-238(they)-235(sho)16(w)-254(that)-244(af)-16(t)15(er)-250(50%)-253(short)13(ening)-251(the)-249(fold)-250(amplitudes,)]TJ
+0 -1.316 TD
+[(for)-454(small)-448(viscosity)-452(ra)13(tios,)-456(are)-445(very)-434(small.)-458(This)-455(is)-455(entirel)21(y)-451(due)-455(to)]TJ
+0 -1.309 TD
+[(boundary)-578(conditions)-593(of)-600(constant)-594(v)14(elocity)-602(which)-592(result)-590(in)-596(low)]TJ
+0 -1.316 TD
+[(ampli\223cation)-784(rat)22(es.)-791(Our)-776(analy)21(sis)-791(\(repor)13(ted)-780(in)]TJ
+0 0 0.4 scn
+23.686 0 Td
+[(Hobbs)-791(et)-785(al.,)]TJ
+-23.686 -1.309 Td
+[(20)-32(08)]TJ
+0 0 0 scn
+2.674 0 Td
+[(and)-358(illustr)13(ate)12(d)-358(in)-357(their)-352(Figs.)-355(2)-358(and)-358(3\))-350(indicate)9(s)-356(that)-353(most)-347(of)]TJ
+-2.674 -1.316 Td
+[(the)-577(deformation)-581(r)16(eporte)10(d)-583(in)-575(Figur)12(e)-581(3)-577(of)]TJ
+0 0 0.4 scn
+20.321 0 Td
+[(Schmid)-582(et)-580(al.)-577(\(20)31(1)66(0\))]TJ
+0 0 0 scn
+-20.321 -1.309 Td
+[(comprises)-219(homog)12(eneous)-218(shorteni)13(ng)-209(of)-224(ear)13(ly)-214(formed)-217(low)-194(amplitude)]TJ
+T*
+[(de\224ections)-457(and)-454(that)-463(buc)12(kling)-457(pla)12(ys)-451(v)14(ery)-448(little)-464(r)16(ole)-460(in)-439(pr)14(oducing)]TJ
+0 -1.309 TD
+[(their)-387<8f8f666f6c647390902e>-384(The)-389(same)-387(r)16(esults)-388(can)-388(be)-385(read)-378(from)-379(Figur)12(es)-384(2)-392(and)-386(3)]TJ
+0 -1.316 TD
+(of)Tj
+0 0 0.4 scn
+1.423 0 Td
+[(Hobbs)-531(et)-539(al.)-536(\(20)-31(08\))]TJ
+0 0 0 scn
+9.986 0 Td
+[(where)-523(the)-536(dominance)-533(of)-532(homog)12(eneous)]TJ
+-11.409 -1.309 Td
+[(short)13(ening)-600(is)-599(clear)13(ly)-591(illustr)13(ate)12(d.)-601(W)42(e)-595(con\223rm)-595(that)-600(the)-598(v)14(elocity)]TJ
+T*
+[(arro)24(ws)-610(sho)16(wn)-614(in)-617(Figure)-610(2)-618(of)]TJ
+0 0 0.4 scn
+15.082 0 Td
+[(Hobbs)-620(et)-614(al.)-618(\(20)-31(08\))]TJ
+0 0 0 scn
+10.314 0 Td
+[(do)-616(indeed)]TJ
+-25.396 -1.316 Td
+[(repr)24(esent)-530(perturbation)-521(v)14(elocities)-531(and)-529(not)-522(the)-530(t)15(otal)-509(velocity)-519(\(as)]TJ
+0 -1.309 TD
+[(mistakenl)12(y)-198(claimed)-221(by)]TJ
+0 0 0.4 scn
+10.342 0 Td
+[(Schmid)-212(et)-224(al.,)-211(20)29(1)59(0)]TJ
+0 0 0 scn
+8.379 0 Td
+[(\))-224(so)-205(that)-217(the)-215(degener)18(ation)]TJ
+-18.72 -1.316 Td
+[(of)-545(the)-530(deformation)-526(to)-524(near)-518(homog)12(eneous)-532(short)13(ening)-531(is)-530(clear)13(ly)]TJ
+T*
+[(illustr)13(ated.)]TJ
+/T1_1 1 Tf
+0 -3.279 TD
+[(3.)-601(The)-334(scale)-331(issue)]TJ
+/T1_0 1 Tf
+1.443 -2.625 Td
+[(Man)37(y)-225(pr)14(ocesses)-223(that)-210(opera)13(te)-217(during)-221(deformation)-218(of)-224(roc)20(k)-9(s)-220(can)-224(be)]TJ
+-1.443 -1.316 Td
+[(e)21(xpre)12(ssed)-208(as)-202(diffusion)-205(eq)22(uations.)-206(Thus)-208(diffusion)-205(of)-203(heat,)-201(of)-210(chemical)]TJ
+0 -1.309 TD
+[(components)-320(and)-317(of)-320<94756964>-316(pressu)11(re)-312(is)-318(go)22(verned)-311(by)-289(eq)22(uations)-319(of)-333(the)]TJ
+0 -1.316 TD
+(form:)Tj
+/T1_2 1 Tf
+2.955 0 Td
+(v)Tj
+/T1_3 1 Tf
+0.492 0 Td
+(c)Tj
+/T1_4 1 Tf
+0.445 0 Td
+(=)Tj
+/T1_2 1 Tf
+0.499 0 Td
+(v)Tj
+/T1_3 1 Tf
+0.486 0 Td
+(t)Tj
+/T1_5 1 Tf
+0.834 0 Td
+<bc>Tj
+/T1_6 1 Tf
+8.2888 0 0 9.1657 99.8929 208.6299 Tm
+(k)Tj
+/T1_0 1 Tf
+6.2164 0 0 5.9774 103.8614 211.4079 Tm
+(process)Tj
+/T1_5 1 Tf
+8.2888 0 0 7.9702 125.6315 208.5165 Tm
+<f0>Tj
+/T1_2 1 Tf
+0.383 0 Td
+(v)Tj
+/T1_0 1 Tf
+6.2164 0 0 5.9774 132.8882 211.6913 Tm
+(2)Tj
+/T1_3 1 Tf
+8.2888 0 0 7.9702 136.9133 208.5165 Tm
+(c)Tj
+/T1_4 1 Tf
+0.451 0 Td
+(=)Tj
+/T1_2 1 Tf
+0.499 0 Td
+(v)Tj
+/T1_3 1 Tf
+0.486 0 Td
+(x)Tj
+/T1_0 1 Tf
+6.2164 0 0 5.9774 152.9007 211.4079 Tm
+(2)Tj
+/T1_5 1 Tf
+8.2888 0 0 7.9702 156.9259 208.5165 Tm
+<de>Tj
+/T1_0 1 Tf
+0.793 0 Td
+[(inv)20(olv)12(ing)-404(a)-406(diffusivi)8(ty)43(,)]TJ
+/T1_6 1 Tf
+8.2888 0 0 9.1655 252.3968 208.5165 Tm
+(k)Tj
+/T1_0 1 Tf
+6.2164 0 0 5.978 256.3653 212.0882 Tm
+(process)Tj
+8.2888 0 0 7.9702 277.6251 208.5165 Tm
+[(,)-407(for)]TJ
+-28.364 -1.309 Td
+[(the)-379(proce)12(ss.)]TJ
+/T1_3 1 Tf
+5.889 0 Td
+(c)Tj
+/T1_0 1 Tf
+0.834 0 Td
+[(r)16(epresent)11(s)-384(tem)15(peratu)11(re,)-377(chemical)-378(concentr)16(ation)-384(or)]TJ
+-6.723 -1.316 Td
+[<94756964>-460(pr)14(essure.)-449(If)-470(this)-458(proces)11(s)-466(is)-455(coupled)-463(with)-459(deformation)-458(then)]TJ
+0 -1.309 TD
+[(the)-297(length)-291(scale,)]TJ
+/T1_3 1 Tf
+7.749 0 Td
+(l)Tj
+/T1_0 1 Tf
+6.2164 0 0 5.978 109.0204 180.6803 Tm
+(process)Tj
+8.2888 0 0 7.9702 130.2236 177.1653 Tm
+[(,)-298(o)15(ver)-284(which)-298(feedbac)10(k)-289(is)-298(important)-294(is)-291(giv)19(en)]TJ
+-10.581 -1.316 Td
+[(by)-241(the)-242(standar)11(d)-248(diffusion)-253(r)16(elationship,)]TJ
+/T1_3 1 Tf
+17.544 0 Td
+(l)Tj
+/T1_0 1 Tf
+6.2164 0 0 5.9774 190.148 169.5685 Tm
+(process)Tj
+/T1_5 1 Tf
+8.2888 0 0 7.9702 215.6031 166.6771 Tm
+<bc>Tj
+/T1_7 1 Tf
+2.038 0.846 Td
+[<0202020202020202020202020202020202>198<02>]TJ
+/T1_6 1 Tf
+8.2888 0 0 9.1657 232.4976 166.7905 Tm
+(k)Tj
+/T1_0 1 Tf
+6.2164 0 0 5.9774 236.4661 169.0016 Tm
+(process)Tj
+/T1_8 1 Tf
+8.2888 0 0 9.1657 258.2361 166.7905 Tm
+(s)Tj
+/T1_5 1 Tf
+8.2888 0 0 7.9702 225.6944 173.4236 Tm
+(p)Tj
+/T1_0 1 Tf
+4.61 -0.846 Td
+(where)Tj
+/T1_8 1 Tf
+8.2888 0 0 9.1655 289.9842 166.6771 Tm
+(s)Tj
+/T1_0 1 Tf
+8.2888 0 0 7.9702 42.5197 156.189 Tm
+[(is)-312(a)-304(timescale)-306(associate)9(d)-310(with)-308(the)-304(deformation.)-304(W)42(e)-314(take)]TJ
+/T1_8 1 Tf
+8.2888 0 0 9.1657 257.6125 156.359 Tm
+(s)Tj
+/T1_5 1 Tf
+0.4406 Tc 8.2888 0 0 7.9702 264.9259 156.189 Tm
+<bcf0>Tj
+/T1_9 1 Tf
+0 Tc 1.669 0.085 Td
+(_)Tj
+/T1_6 1 Tf
+8.2888 0 0 9.1657 278.192 156.359 Tm
+(3)Tj
+/T1_5 1 Tf
+8.2888 0 0 7.9702 281.5369 156.189 Tm
+<de>Tj
+6.2164 0 0 5.9774 284.7117 159.874 Tm
+<02>Tj
+/T1_0 1 Tf
+0.775 0 Td
+(1)Tj
+8.2888 0 0 7.9702 42.5197 145.7575 Tm
+(where)Tj
+/T1_9 1 Tf
+3.639 0.085 Td
+(_)Tj
+/T1_6 1 Tf
+8.2888 0 0 9.1657 72.1134 145.8708 Tm
+(3)Tj
+/T1_0 1 Tf
+8.2888 0 0 7.9702 81.1275 145.7575 Tm
+[(is)-681(the)-673(strain-r)18(ate)12(;)-683(then)]TJ
+/T1_3 1 Tf
+12.154 0 Td
+(l)Tj
+/T1_0 1 Tf
+6.2164 0 0 5.9774 184.0818 148.6488 Tm
+(process)Tj
+/T1_5 1 Tf
+8.2888 0 0 7.9702 209.537 145.7575 Tm
+<bc>Tj
+/T1_7 1 Tf
+2.216 0.854 Td
+[<02020202020202020202020202020202020202>
+149<02>]TJ
+/T1_6 1 Tf
+8.2888 0 0 9.1657 227.9055 145.8708 Tm
+(k)Tj
+/T1_0 1 Tf
+6.2164 0 0 5.9774 231.874 148.0819 Tm
+(process)Tj
+/T1_4 1 Tf
+8.2888 0 0 7.9702 253.644 145.7575 Tm
+(=)Tj
+/T1_9 1 Tf
+0.568 0.085 Td
+(_)Tj
+/T1_6 1 Tf
+8.2888 0 0 9.1657 257.7826 145.8708 Tm
+(3)Tj
+/T1_7 1 Tf
+8.2888 0 0 7.9702 219.6283 152.5606 Tm
+(p)Tj
+/T1_0 1 Tf
+5.007 -0.854 Td
+[(.)-681(Values)]TJ
+-26.374 -1.316 Td
+(of)Tj
+/T1_3 1 Tf
+1.272 0 Td
+(l)Tj
+/T1_0 1 Tf
+6.2164 0 0 5.978 55.3323 138.8409 Tm
+(process)Tj
+8.2888 0 0 7.9702 79.7669 135.2693 Tm
+[(are)-383(giv)26(en)-394(in)]TJ
+0 0 0.4 scn
+5.937 0 Td
+[(T)53(able)-385(1)]TJ
+0 0 0 scn
+3.741 0 Td
+[(which)-387(show)22(s)-391(that)-388(the)-393(length)-386(scale)]TJ
+-14.172 -1.309 Td
+[(likely)-263(to)-264(charac)11(terise)-266(a)-277(particular)-260(coupled)-278(pr)14(ocess)-278(v)21(aries)-271(from)-263(kilo-)]TJ
+0 -1.316 TD
+[(metre)11(s)-274(to)-264(micron)12(s)-274(depending)-264(on)-277(the)-270(proce)12(ss)-275(and)-276(the)-277(r)16(ate)-268(of)-272(defor)50(-)]TJ
+-0.0001 Tc 0 -1.309 TD
+[(mation.)-299(W)42(e)-301(chose)-295(thermal\205mechanical)-304(coupling)-298(as)-305(a)-297<93727374>-299(study)-297(in)]TJ
+0 Tc 0 -1.316 TD
+[(this)-328(spectrum)-326(of)-327(coupled)-326(beha)24(viour)-329(because)-326(it)-323(is)-325(conceptua)11(lly)-320(the)]TJ
+0 -1.309 TD
+[(easiest)-327(form)-325(of)-327(coupling)-325(to)-319(gr)17(asp)-327(and)-324(the)-331(comput)15(er)-319(codes)-320(needed)]TJ
+0 -1.316 TD
+[(to)-483(perform)-495(the)-495(analy)21(sis)-497(ar)13(e)-499(full)13(y)-499(benchmar)11(ked)-489(\()]TJ
+0 0 0.4 scn
+23.269 0 Td
+[(R)26(egenau)12(er)51(-Lieb)]TJ
+-23.269 -1.309 Td
+[(and)-215(Y)33(uen,)-215(20)-32(0)-9(4)]TJ
+0 0 0 scn
+-0.0001 Tc 6.997 0 Td
+[(\).)-214(For)-208(thermal\205mechanical)-222(coupling)-215(the)-215(length)-215(scale)]TJ
+0 Tc -6.997 -1.316 Td
+[(is)-277(the)-283(kilometr)17(e)-280(scale.)-281(The)-273(only)-273(point)-274(we)-261(w)20(ant)14(ed)-275(to)-271(make)-265(w)20(as)-277(that)]TJ
+-0.0001 Tc 32.454 61.031 Td
+[(r)16(egional-scale)-984(folds)-989(can)-983(form)-988(thr)13(ough)-983(thermal\205mechanical)]TJ
+0 Tc 0 -1.309 TD
+[(coupling.)-513(Other)-510(scales)-510(ha)20(ve)-505(been)-513(consider)10(ed)-508(in)]TJ
+0 0 0.4 scn
+23.262 0 Td
+[(R)19(egena)14(uer)49(-Lieb)]TJ
+-23.262 -1.316 Td
+[(et)-436(al.)-434(\(20)-31(09\))]TJ
+0 0 0 scn
+6.272 0 Td
+(and)Tj
+0 0 0.4 scn
+2.141 0 Td
+[(Hobbs)-435(et)-436(al.)-440(\(in)-410(press\))]TJ
+0 0 0 scn
+10.964 0 Td
+[(where)-420(it)-439(is)-435(shown)-427(that)]TJ
+-19.377 -1.309 Td
+[(the)-311(same)-312(fold)-311(mechanism)-308(\(namel)11(y)42(,)-311(stra)14(in-rat)23(e)-314(sof)-13(t)15(ening\))-311(opera)13(tes)]TJ
+0 -1.316 TD
+[(at)-617(outcrop)-624(and)-632(thin-section)-634(scales)-634(as)-633(does)-631(at)-631(regional)-625(scales)]TJ
+0 -1.309 TD
+[(although)-445(differ)12(ent)-448(ph)34(ysical)-437(and)-447(chemical)-446(pr)14(ocesses)-449(ar)13(e)-451(inv)20(olv)26(ed)]TJ
+0 -1.316 TD
+[(at)-296(the)-304(differ)12(ent)-297(scales.)]TJ
+1.443 -1.309 Td
+[(An)-539(issue)-540(also)-539(inv)20(olvin)12(g)-546(scale)-537(is)-544(ra)13(ised)-546(by)-528(the)-543<8f8f746872>13(ow)-513(a)24(w)20(ay)]TJ
+-1.443 -1.316 Td
+[(comment\220\220)-267(of)]TJ
+0 0 0.4 scn
+6.238 0 Td
+[(Schmid)-274(et)-272(al.)-276(\(20)31(1)66(0\))]TJ
+0 0 0 scn
+9.323 0 Td
+[(that)-271(the)-277(second)-270(order)-262(folds)-278(arise)]TJ
+-15.56 -1.309 Td
+[(from)-201<8f8f6d657368>-211(dependency\220\220.)-213(Mesh)-207(dependency)-196(associat)16(ed)-214(with)-212(insta-)]TJ
+T*
+[(bility)-352(of)-361(deformation)-362(is)-359(commonl)10(y)-341(e)21(xhibit)14(ed)-364(by)-351(ra)13(te)-354(independent)]TJ
+0 -1.309 TD
+[(mate)12(rials)-322(and)-317(has)-316(been)-321(studied)-323(for)-310(at)-316(least)-320(30)-320(y)14(ears.)]TJ
+0 0 0.4 scn
+24.342 0 Td
+[(Schmid)-315(et)-320(al.)]TJ
+-24.342 -1.316 Td
+[(\(20)31(1)66(0\))]TJ
+0 0 0 scn
+3.256 0 Td
+[(appar)13(entl)14(y)-314(ar)13(e)-335(confusing)-331(this)-335(kind)-326(of)-333(beha)17(viour)-329(with)-329(what)]TJ
+-3.256 -1.309 Td
+[(occurs)-622(in)-630(ra)13(te)-621(dependent)-629(mate)12(rials)-623(with)-630(stra)14(in-rat)23(e)-629(sof)-13(tening)]TJ
+0 -1.316 TD
+[(wher)18(e)-513(localisation)-503(is)-510(no)17(t)-498(e)21(xpected)-494(to)-497(be)-508(beset)-507(by)-494(issues)-506(to)-497(do)]TJ
+0 -1.309 TD
+[(with)-589(mesh)-587(dependency)-586(\()]TJ
+0 0 0.4 scn
+12.27 0 Td
+[(Needl)13(eman,)-518(1)66(988)]TJ
+0 0 0 scn
+8.16 0 Td
+[(\).)-590(In)-585(our)-593(models,)-583(in)]TJ
+-20.43 -1.316 Td
+[(common)-342(with)-370(othe)12(r)-374(rat)22(e)-376(sensiti)10(ve)-368(mate)12(rials,)-373(the)-372(thickne)11(ss)-378(of)-381(the)]TJ
+T*
+[(localised)-496(zone)-492(is)-496(scaled)-498(by)-481(the)-495(size)-499(of)-504(the)-495(initial)-497(imperfections)]TJ
+0 -1.316 TD
+[(and)-324(not)-323(by)-316(the)-331(mesh.)-331(Mor)14(eov)23(er)-332(mesh)-327(dependency)-333(for)-331(this)-328(partic-)]TJ
+0 -1.309 TD
+[(ular)-539(pr)14(oblem)-511(w)26(as)-544(studied)-535(by)]TJ
+0 0 0.4 scn
+14.582 0 Td
+[(R)19(egena)14(uer)49(-Lieb)-540(and)-536(Y)33(uen)-540(\(20)-31(0)-9(4\))]TJ
+0 0 0 scn
+-14.582 -1.316 Td
+[(t)15(ogether)-204(with)-212(the)-215(precau)12(tions)-218(needed)-213(t)15(o)-218(ensur)16(e)-219(numerical)-209(stability)36(.)]TJ
+0 -1.316 TD
+[(The)-424(second)-434(ord)15(er)-435(folds)-428(in)]TJ
+0 0 0.4 scn
+12.585 0 Td
+[(Hobbs)-428(et)-429(al.)-434(\(20)-31(08\))]TJ
+0 0 0 scn
+9.562 0 Td
+[(arise)-435(from)-414(a)-434(self-)]TJ
+-22.147 -1.309 Td
+[(enhancing)-274(feedbac)10(k)-276(loop)-276(initiated)-269(from)-263(heter)20(ogene)11(ities)-279(in)-275(thermal)]TJ
+T*
+[(e)21(xpansion,)-296(not)-289(from)-290(mesh)-293(sensiti)10(vity)41(.)]TJ
+/T1_1 1 Tf
+0 -4.588 TD
+[(4.)-601(Concluding)-328(remar)20(k)-11(s)]TJ
+/T1_0 1 Tf
+1.443 -2.625 Td
+[(Our)-222(paper)-223(pr)14(esents)-223(just)-212(one)-222(of)-224(man)33(y)-225(different)-216(theories)-222(that)-223(ha)27(ve)]TJ
+-1.443 -1.316 Td
+[(been)-376(or)-386(might)-375(be)-385(dev)13(eloped)-382(for)-386(folding)-380(that)-381(is)-380(different)-374(to)-373(Biot\220)15(s)]TJ
+0 -1.309 TD
+[(appr)16(oach.)-527(W)42(e)-520(do)-521(not)-515(disagree)-504(with)-520(the)-523(pr)14(oposition)-522(that)-524(some)]TJ
+0 -1.316 TD
+[(natur)15(al)-334(folds)-332(form)-331(by)-303(a)-331(Biot)-324(pr)14(ocess.)-336(W)42(e)-328(do)-336(no)17(t)-334(disagree)-313(with)-329(the)]TJ
+0 -1.309 TD
+[(pr)14(oposition)-693(that)-695(large)-680(\()]TJ
+/T1_4 1 Tf
+11.799 0 Td
+(>)Tj
+/T1_0 1 Tf
+0.766 0 Td
+[(20\))-694(viscosity)-691(ratios)-686(e)21(xist)-695(in)-692(natur)15(e,)]TJ
+-12.565 -1.316 Td
+[(although)-336(in)-336(the)-338(mid-)-338(to)-326(low)25(er)51(-crust)-342(we)-322(think)-334(this)-342(is)-339(unlikel)16(y)42(.)-339(Our)]TJ
+T*
+[(point)-383(is)-380(that)-381(there)-376(is)-380(a)-365(w)20(ay)-358(of)-388(coupling)-379(the)-386(int)14(eresting)-373(proce)12(sses)]TJ
+0 -1.316 TD
+[(observ)15(ed)-241(in)-233(deformed)-232(metamorphic)-238(roc)20(k)-9(s)-233(within)-234(a)-235(unifying)-235(frame-)]TJ
+T*
+[(wo)14(rk)-253(that)-265(is)-271(not)]TJ
+/T1_3 1 Tf
+7.503 0 Td
+[(ad)-264(hoc)]TJ
+/T1_0 1 Tf
+3.153 0 Td
+[(and)-263(that)-265(is)-271(compatible)-255(with)-267(the)-263(second)-263(la)21(w)]TJ
+-10.656 -1.309 Td
+[(of)-224(thermodynamics;)-207(this)-219(leads)-214(to)-202(folding)-216(\(and)-213(boudinag)12(e\))-217(by)-200(mech-)]TJ
+T*
+[(anisms)-293(that)-306(ar)13(e)-301(non-Bio)18(t)-306(in)-295(charac)11(ter)59(.)]TJ
+1.443 -1.309 Td
+[(In)-298(summary)17(:)]TJ
+-0.41 -2.625 Td
+[(\(i\))-513(The)-376(Biot)-365(theory)-375(is)-373(a)-379(linear)-374(theory)-375(where)-365(the)-379(distribution)-377(of)]TJ
+1.532 -1.316 Td
+[(unstable)-349(w)26(a)18(v)14(elengths)-359(at)-364(the)-359(moment)-345(of)-361(instability)-362(is)-359(repr)24(e-)]TJ
+0 -1.309 TD
+[(sented)-286(as)-305(a)-297(Fou)14(rier)-306(series)-296(in)-275(which)-298(the)-297(gro)18(wth)-298(of)-299(each)-299(mode)]TJ
+0 -1.316 TD
+[(is)-298(independent)-288(of)-299(all)-303(o)15(thers.)]TJ
+-1.826 -1.309 Td
+[(\(ii\))-516(At)-389(\223nite)-397(de\224ections,)-399(only)-382(one)-393(w)20(a)18(v)14(elength)-407(survi)11(v)14(es;)-403(natura)12(l)]TJ
+1.826 -1.316 Td
+[(folds)-230(demonstr)11(ating)-227(a)-229(ra)13(nge)-223(of)-231(w)20(a)24(vele)12(ngth)-233(t)15(o)-225(thick)15(ness)-232(ra)13(tios)]TJ
+ET
+0.949 0.949 0.949 scn
+42.52 567.099 520.044 146.608 re
+f
+1 1 1 scn
+/CS0 CS 1 1 1 SCN
+0 w 1 j 1 J
+42.52 713.707 520.044 -4.989 re
+B*
+q
+1 0 0 1 42.5200043 708.7180023 cm
+0 0 0 scn
+0 0 0 SCN
+0 0 m
+520.044 0 l
+520.044 -0.51 l
+0 -0.51 l
+B*
+Q
+562.564 567.099 -520.044 0.113 re
+B*
+q
+1 0 0 1 562.5639954 567.2120056 cm
+0 0 0 scn
+0 0 0 SCN
+0 0 m
+-520.044 0 l
+-520.044 0.454 l
+0 0.454 l
+B*
+Q
+q
+1 0 0 1 183.7420044 694.9980011 cm
+0 0 0 scn
+0 0 0 SCN
+0 0 m
+-141.222 0 l
+-141.222 0.51 l
+0 0.51 l
+B*
+Q
+q
+1 0 0 1 300.9259949 694.9980011 cm
+0 0 0 scn
+0 0 0 SCN
+0 0 m
+-135.099 0 l
+-135.099 0.51 l
+0 0.51 l
+B*
+Q
+q
+1 0 0 1 364.4790039 694.9980011 cm
+0 0 0 scn
+0 0 0 SCN
+0 0 m
+-81.468 0 l
+-81.468 0.51 l
+0 0.51 l
+B*
+Q
+q
+1 0 0 1 468.4530029 694.9980011 cm
+0 0 0 scn
+0 0 0 SCN
+0 0 m
+-121.89 0 l
+-121.89 0.51 l
+0 0.51 l
+B*
+Q
+q
+1 0 0 1 562.5639954 694.9980011 cm
+0 0 0 scn
+0 0 0 SCN
+0 0 m
+-112.025 0 l
+-112.025 0.51 l
+0 0.51 l
+B*
+Q
+BT
+0 0 0 scn
+/T1_1 1 Tf
+6.6308 0 0 6.376 42.5197 722.2676 Tm
+[(T)49(able)-302(1)]TJ
+/T1_0 1 Tf
+0 -1.343 TD
+[(List)-291(of)-304(processes)-288(and)-302(typical)-302(length)-299(scales)-304(at)-297(which)-300(that)-304(process)-287(dominates.)]TJ
+0.898 -2.232 Td
+(Process)Tj
+20.4 0 Td
+[(Diffusivity,)-302(m)]TJ
+4.9731 0 0 4.4603 224.5039 702.3116 Tm
+(2)Tj
+6.6308 0 0 6.376 228.6425 699.4771 Tm
+(s)Tj
+/T1_5 1 Tf
+4.9731 0 0 4.4603 231.5338 702.3116 Tm
+<02>Tj
+/T1_0 1 Tf
+0.775 0 Td
+(1)Tj
+6.6308 0 0 6.376 300.9259 699.4771 Tm
+[(Strain-rate,)-307(s)]TJ
+/T1_5 1 Tf
+4.9731 0 0 4.4603 339.8739 702.3116 Tm
+<02>Tj
+/T1_0 1 Tf
+0.775 0 Td
+(1)Tj
+6.6308 0 0 6.376 364.4786 699.4771 Tm
+[(Length)-298(scale)-305(for)-300(process,)-306(m)-3265(Reference)]TJ
+-47.657 -1.796 Td
+[(Heat)-304(conduction;)-302(slow)-301(deformations)]TJ
+1.205 -1.343 Td
+[(\(tectonic)-304(deformations\))]TJ
+19.195 1.343 Td
+(10)Tj
+/T1_5 1 Tf
+4.9731 0 0 4.4603 191.3385 690.8597 Tm
+<02>Tj
+/T1_0 1 Tf
+0.764 0 Td
+(6)Tj
+6.6308 0 0 6.376 300.9259 688.025 Tm
+(10)Tj
+/T1_5 1 Tf
+4.9731 0 0 4.4603 308.5228 690.8597 Tm
+<02>Tj
+/T1_0 1 Tf
+0.775 0 Td
+(12)Tj
+6.6308 0 0 6.376 364.4786 688.025 Tm
+(1000)Tj
+0 0 0.4 scn
+15.681 0 Td
+[(Hobbs)-307(et)-296(al.)-304(\(2008\))]TJ
+0 0 0 scn
+-63.338 -2.685 Td
+[(Heat)-304(conduction;)-302(fast)-308(deformations)]TJ
+1.205 -1.343 Td
+[(\(slow)-305(to)-297(fast)-299(seismic\))]TJ
+19.195 1.343 Td
+(10)Tj
+/T1_5 1 Tf
+4.9731 0 0 4.4603 191.3385 673.7384 Tm
+<02>Tj
+/T1_0 1 Tf
+0.764 0 Td
+(6)Tj
+6.6308 0 0 6.376 300.9259 670.9038 Tm
+(10)Tj
+/T1_5 1 Tf
+4.9731 0 0 4.4603 308.5228 673.7384 Tm
+<02>Tj
+/T1_0 1 Tf
+0.775 0 Td
+(2)Tj
+6.6308 0 0 6.376 315.2125 670.9038 Tm
+<853130>Tj
+4.9731 0 0 4.4603 326.6078 673.7384 Tm
+(2)Tj
+6.6308 0 0 6.376 364.4786 670.9038 Tm
+(10)Tj
+/T1_5 1 Tf
+4.9731 0 0 4.4603 372.0755 673.7384 Tm
+<02>Tj
+/T1_0 1 Tf
+0.775 0 Td
+(2)Tj
+6.6308 0 0 6.376 378.7653 670.9038 Tm
+<853130>Tj
+/T1_5 1 Tf
+4.9731 0 0 4.4603 390.1605 673.7384 Tm
+<02>Tj
+/T1_0 1 Tf
+0.764 0 Td
+(4)Tj
+0 0 0.4 scn
+6.6308 0 0 6.376 468.4534 670.9038 Tm
+[(Veveakis)-308(et)-296(al.)-304(\(in)-297(press\))]TJ
+0 0 0 scn
+-63.338 -2.685 Td
+[(Chemical)-304(diffusion;)-310(slow)-293(deformations)]TJ
+1.205 -1.343 Td
+[(\(tectonic)-304(deformations\))]TJ
+19.195 1.343 Td
+[(Say)-301(10)]TJ
+/T1_5 1 Tf
+4.9731 0 0 4.4603 203.7543 656.6172 Tm
+<02>Tj
+/T1_0 1 Tf
+0.764 0 Td
+(10)Tj
+6.6308 0 0 6.376 213.2787 653.7825 Tm
+<853130>Tj
+/T1_5 1 Tf
+4.9731 0 0 4.4603 224.674 656.6172 Tm
+<02>Tj
+/T1_0 1 Tf
+0.775 0 Td
+(16)Tj
+6.6308 0 0 6.376 300.9259 653.7825 Tm
+(10)Tj
+/T1_5 1 Tf
+4.9731 0 0 4.4603 308.5228 656.6172 Tm
+<02>Tj
+/T1_0 1 Tf
+0.775 0 Td
+(12)Tj
+6.6308 0 0 6.376 364.4786 653.7825 Tm
+(10\20510)Tj
+/T1_5 1 Tf
+4.9731 0 0 4.4603 383.4708 656.6172 Tm
+<02>Tj
+/T1_0 1 Tf
+0.764 0 Td
+(2)Tj
+0 0 0.4 scn
+6.6308 0 0 6.376 468.4534 653.7825 Tm
+[(Regenauer-Lieb)-306(et)-304(al.)-295(\(2009\))]TJ
+0 0 0 scn
+-63.338 -2.694 Td
+[(Chemical)-304(diffusion;)-310(fast)-299(deformations)]TJ
+1.205 -1.343 Td
+[(\(slow)-305(to)-297(fast)-299(seismic\))]TJ
+19.195 1.343 Td
+[(Say)-301(10)]TJ
+/T1_5 1 Tf
+4.9731 0 0 4.4603 203.7543 639.4392 Tm
+<02>Tj
+/T1_0 1 Tf
+0.764 0 Td
+(10)Tj
+6.6308 0 0 6.376 213.2787 636.6046 Tm
+<853130>Tj
+/T1_5 1 Tf
+4.9731 0 0 4.4603 224.674 639.4392 Tm
+<02>Tj
+/T1_0 1 Tf
+0.775 0 Td
+(16)Tj
+6.6308 0 0 6.376 300.9259 636.6046 Tm
+(10)Tj
+/T1_5 1 Tf
+4.9731 0 0 4.4603 308.5228 639.4392 Tm
+<02>Tj
+/T1_0 1 Tf
+0.775 0 Td
+(2)Tj
+6.6308 0 0 6.376 315.2125 636.6046 Tm
+<853130>Tj
+4.9731 0 0 4.4603 326.6078 639.4392 Tm
+(2)Tj
+6.6308 0 0 6.376 364.4786 636.6046 Tm
+(10)Tj
+/T1_5 1 Tf
+4.9731 0 0 4.4603 372.0755 639.4392 Tm
+<02>Tj
+/T1_0 1 Tf
+0.775 0 Td
+(4)Tj
+6.6308 0 0 6.376 378.7653 636.6046 Tm
+<853130>Tj
+/T1_5 1 Tf
+4.9731 0 0 4.4603 390.1605 639.4392 Tm
+<02>Tj
+/T1_0 1 Tf
+0.764 0 Td
+(7)Tj
+0 0 0.4 scn
+6.6308 0 0 6.376 468.4534 636.6046 Tm
+[(Veveakis)-308(et)-296(al.)-304(\(in)-297(press\))]TJ
+0 0 0 scn
+-63.338 -2.685 Td
+[(Fluid)-305(diffusion)]TJ
+20.4 0 Td
+[(Depends)-300(on)-305(permeability)]TJ
+17.672 0 Td
+(10)Tj
+/T1_5 1 Tf
+4.9731 0 0 4.4603 308.5228 622.318 Tm
+<02>Tj
+/T1_0 1 Tf
+0.775 0 Td
+(12)Tj
+6.6308 0 0 6.376 318.1039 619.4833 Tm
+<853130>Tj
+/T1_5 1 Tf
+4.9731 0 0 4.4603 329.4991 622.318 Tm
+<02>Tj
+/T1_0 1 Tf
+0.764 0 Td
+(2)Tj
+6.6308 0 0 6.376 364.4786 619.4833 Tm
+[(Any)-302(value)-298(from)]TJ
+T*
+[(1000)-302(to)-297(10)]TJ
+/T1_5 1 Tf
+4.9731 0 0 4.4603 397.3605 613.7573 Tm
+<02>Tj
+/T1_0 1 Tf
+0.775 0 Td
+(4)Tj
+6.6308 0 0 6.376 406.0345 610.9227 Tm
+(depending)Tj
+-6.267 -1.343 Td
+[(on)-296(permeability)]TJ
+-47.657 -2.125 Td
+[(Chemical)-304(reactions)]TJ
+20.4 0 Td
+[(No)-299(diffusivity.)-306(Coupling)]TJ
+T*
+[(depends)-304(on)-296(chemical)-301(dissipation)]TJ
+27.257 1.343 Td
+[(All)-301(scales)-304(from)-299(1000)-302(to)-297(10)]TJ
+/T1_5 1 Tf
+4.9731 0 0 4.4603 443.8487 591.6471 Tm
+<02>Tj
+/T1_0 1 Tf
+0.775 0 Td
+(4)Tj
+0 0 0.4 scn
+6.6308 0 0 6.376 468.4534 588.8125 Tm
+[(Hobbs)-307(et)-296(al.)-304(\(2009\);)]TJ
+T*
+[(Regenauer-Lieb)-306(et)-304(al.)-295(\(2009\);)]TJ
+T*
+[(Veveakis)-308(et)-296(al.)-304(\(in)-297(press\))]TJ
+0 0 0 scn
+/T1_3 1 Tf
+6.376 0 0 6.376 223.2566 740.8062 Tm
+[(Reply)-326(/)-328(Journal)-341(of)-334(Structur)17(al)-328(Geology)-344(32)-328(\(20)36(1)54(0\))-336(1)63(3)54<318531>58(34)]TJ
+/T1_0 1 Tf
+-0.0652 Tc 51.572 0 Td
+[(13)-65(3)]TJ
+ET
+endstream
+endobj
+
+178 0 obj
+21844
+endobj
+
+%% Original object ID: 98 0
+179 0 obj
+<<
+ /BaseFont /IKFHLN+AdvPS3F4C13
+ /Encoding /WinAnsiEncoding
+ /FirstChar 118
+ /FontDescriptor 256 0 R
+ /LastChar 118
+ /Subtype /Type1
+ /Type /Font
+ /Widths [
+ 489
+ ]
+>>
+endobj
+
+%% Original object ID: 101 0
+180 0 obj
+<<
+ /BaseFont /IKFHLO+AdvP4C4E74
+ /Encoding 257 0 R
+ /FirstChar 2
+ /FontDescriptor 258 0 R
+ /LastChar 254
+ /Subtype /Type1
+ /ToUnicode 259 0 R
+ /Type /Font
+ /Widths [
+ 770
+ 500
+ 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
+ 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
+ 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
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 822
+ 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
+ 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
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 770
+ 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
+ 385
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 385
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 770
+ ]
+>>
+endobj
+
+%% Original object ID: 105 0
+181 0 obj
+<<
+ /BaseFont /IKFHLP+AdvPS4721B4
+ /Encoding /WinAnsiEncoding
+ /FirstChar 51
+ /FontDescriptor 261 0 R
+ /LastChar 107
+ /Subtype /Type1
+ /Type /Font
+ /Widths [
+ 406
+ 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
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 479
+ ]
+>>
+endobj
+
+%% Original object ID: 102 0
+182 0 obj
+<<
+ /BaseFont /IKFHMA+AdvP4C4E46
+ /Encoding 262 0 R
+ /FirstChar 2
+ /FontDescriptor 263 0 R
+ /LastChar 112
+ /Subtype /Type1
+ /ToUnicode 264 0 R
+ /Type /Font
+ /Widths [
+ 208
+ 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
+ 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
+ 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
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 1000
+ ]
+>>
+endobj
+
+%% Original object ID: 107 0
+183 0 obj
+<<
+ /BaseFont /IKFHMB+AdvPSMP10
+ /Encoding /WinAnsiEncoding
+ /FirstChar 115
+ /FontDescriptor 266 0 R
+ /LastChar 115
+ /Subtype /Type1
+ /Type /Font
+ /Widths [
+ 437
+ ]
+>>
+endobj
+
+%% Original object ID: 106 0
+184 0 obj
+<<
+ /BaseFont /IKFHMC+AdvP4C4E59
+ /Encoding 267 0 R
+ /FirstChar 42
+ /FontDescriptor 268 0 R
+ /LastChar 95
+ /Subtype /Type1
+ /ToUnicode 269 0 R
+ /Type /Font
+ /Widths [
+ 500
+ 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
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 270
+ ]
+>>
+endobj
+
+%% Original object ID: 111 0
+185 0 obj
+<<
+ /BitsPerComponent 8
+ /ColorSpace [
+ /Indexed
+ /DeviceRGB
+ 255
+ 101 0 R
+ ]
+ /Height 99
+ /Width 74
+ /Length 186 0 R
+>>
+stream
+
+endstream
+endobj
+
+%QDF: ignore_newline
+186 0 obj
+7326
+endobj
+
+%% Original object ID: 81 0
+187 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib7)
+ /F 4
+ /Rect [
+ 181.474
+ 541.531
+ 257.102
+ 549.524
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 82 0
+188 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (bib8)
+ /F 4
+ /Rect [
+ 54.085
+ 405.524
+ 156.302
+ 413.518
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 83 0
+189 0 obj
+<<
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /Dest (cor1)
+ /F 4
+ /Rect [
+ 420.264
+ 360.794
+ 423.326
+ 368.787
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 84 0
+190 0 obj
+<<
+ /A 271 0 R
+ /Border [
+ 0
+ 0
+ 0
+ ]
+ /F 4
+ /Rect [
+ 471.628
+ 315.439
+ 552.869
+ 323.376
+ ]
+ /Subtype /Link
+ /Type /Annot
+>>
+endobj
+
+%% Original object ID: 180 0
+191 0 obj
+<<
+ /N 192 0 R
+ /P 75 0 R
+ /R [
+ 30
+ 402
+ 287
+ 732
+ ]
+ /T 10 0 R
+ /V 176 0 R
+>>
+endobj
+
+%% Original object ID: 179 0
+192 0 obj
+<<
+ /N 193 0 R
+ /P 75 0 R
+ /R [
+ 30
+ 346
+ 287
+ 393
+ ]
+ /T 10 0 R
+ /V 191 0 R
+>>
+endobj
+
+%% Original object ID: 178 0
+193 0 obj
+<<
+ /N 80 0 R
+ /P 75 0 R
+ /R [
+ 30
+ 280
+ 287
+ 337
+ ]
+ /T 10 0 R
+ /V 192 0 R
+>>
+endobj
+
+%% Contents for page 4
+%% Original object ID: 85 0
+194 0 obj
+<<
+ /Length 195 0 R
+>>
+stream
+BT
+/CS0 cs 0 0 0 scn
+/GS0 gs
+/T1_0 1 Tf
+8.2888 0 0 7.9702 54.085 721.3605 Tm
+[(ar)13(e)-362(evidence)-354(that)-347(othe)12(r)-360(non-linear)58(,)-359(non-Biot)-350(pr)14(ocesses)-360(ha)20(v)14(e)]TJ
+0 -1.309 TD
+[(opera)13(ted)13(.)]TJ
+-2.114 -1.316 Td
+[(\(iii\))-512(Boundary)-351(conditions)-374(contro)11(l)-379(the)-372(dominant)-378(w)26(a)18(vele)12(ngth)-377(that)]TJ
+2.114 -1.309 Td
+[(gro)25(ws)-453(to)-456<936e6974>13(e)-465(size.)-462(Hence,)-463(mechanical)-460(pr)14(operties)-465(such)-463(as)]TJ
+0 -1.316 TD
+[(viscosity)-336(ratio)13(s)-343(canno)12(t)-334(be)-344(inferr)12(ed)-337(from)-325(natura)12(l)-338(fold)-339(geome-)]TJ
+0 -1.309 TD
+[(tries)-301(unless)-298(the)-297(boundary)-277(conditions)-299(are)-288(known.)]TJ
+-2.066 -1.316 Td
+[(\(iv\))-505(Non)14(-linearities)-260(such)-258(as)-257(g)14(eometrical,)-258(stra)14(in)-261(or)-256(stra)14(in-rat)23(e)-260(sof)-13(t-)]TJ
+2.066 -1.316 Td
+[(ening)-203(can)-203(lead)-206(to)-196(int)14(era)13(ctions)-208(betw)12(een)-203(the)-208(gro)25(wth)-202(of)-203(unstable)]TJ
+T*
+[(modes)-303(so)-294(that)-306(localised)-305(fold)-304(packet)11(s)-308(dev)13(elop.)-308(The)-301(concept)-285(of)]TJ
+0 -1.316 TD
+[(a)-297(dominant)-303(w)26(a)18(v)14(elength)-297(is)-305(irr)16(elev)19(ant)-300(in)-302(such)-299(situations.)]TJ
+-1.785 -1.309 Td
+[(\(v\))-516(S)21(tra)15(in-rat)16(e)-424(sof)-13(teni)14(ng)-428(induced)-428(by)-419(thermal\205mechanical)-429(feed-)]TJ
+1.785 -1.316 Td
+[(back)-319(prod)13(uces)-335(localised)-332(folding)-332(at)-330(the)-331(kilometr)10(e)-328(scale.)-335(Iden-)]TJ
+0 -1.309 TD
+[(tical)-477(folds)-469(are)-465(dev)13(eloped)-477(at)-473<936e6572>-469(scales)-476(depending)-462(on)-475(the)]TJ
+0 -1.316 TD
+[(coupled)-415(pr)14(ocesses)-415(that)-415(lead)-418(t)15(o)-416(strain)13(-rat)17(e)-410(sof)-13(tening)-407(at)-412(that)]TJ
+0 -1.309 TD
+(scale.)Tj
+-2.072 -1.316 Td
+[(\(vi\))-512(The)-301(large)11(r)-305(the)-304(viscosity)-308(ra)13(tio)-294(the)-304(great)22(er)-305(the)-311(viscous)-303(dissipa-)]TJ
+2.072 -1.309 Td
+[(tion)-340(and)-345(the)-345(large)11(r)-346(the)-345(feedbac)10(k)-344(effect.)-340(High)-349(viscosity)-343(ra)13(tios)]TJ
+0 -1.316 TD
+[(int)14(ensify)-431(the)-427(effect)-425(discussed)-432(in)]TJ
+0 0 0.4 scn
+15.369 0 Td
+[(Hobbs)-428(et)-429(al.)-427(\(20)-31(08\))]TJ
+0 0 0 scn
+9.555 0 Td
+[(ra)13(ther)]TJ
+-24.924 -1.309 Td
+[(than)-298(detra)13(ct)-303(from)-284(it.)]TJ
+-2.366 -1.316 Td
+[(\(vii\))-515(The)-328(Biot)-317(pr)14(ocess)-332(undoubt)10(edl)16(y)-321(occurs)-328(in)-329(natur)15(al)-327(deformation)]TJ
+2.366 -1.309 Td
+[(but)-331(othe)12(r)-339(\(non-linear\))-342(pr)14(ocesses)-346(ar)13(e)-342(also)-341(important)-342(and,)-341(we)]TJ
+T*
+[(believ)13(e,)-304(dominat)17(e)-301(in)-302(man)33(y)-300(metamorphic)-300(r)16(ocks.)]TJ
+-1.122 -2.625 Td
+[(Finally)53(,)-434(it)-439(is)-442(dif\223cult)-438(to)-428(understand)-439(how)-429(the)-441(theor)14(etical)-442(basis)]TJ
+-1.443 -1.309 Td
+[(dev)13(eloped)-498(by)-487(Bio)17(t)-498(can)-497(be)-495(advoc)14(ated)-489(as)-496(a)-495(unifying)-494(approa)14(ch)-494(to)]TJ
+T*
+[(roc)20(k)-433(deformation)-410(when)-434(it)-432(predicts)-432(folds)-435(in)-439(a)-434(shorteni)13(ng)-442(la)14(y)21(ered)]TJ
+0 -1.309 TD
+[(mate)12(rial)-212(with)-219(moder)15(ate)-206(viscosity)-213(ratios)-207(and)-215(po)13(wer)63(-la)17(w)-199(stress)-210(e)21(xpo-)]TJ
+0 -1.316 TD
+[(nents)-323(less)-326(than)-325(5)-331(but)-324(fails)-331(t)15(o)-327(pred)12(ict)-334(boudinag)12(e)-321(in)-329(identical)-329(mate)12(-)]TJ
+0 -1.309 TD
+[(rials)-479(in)-487(e)21(xt)13(ension.)-480(These)-479(same)-483(mate)12(rials,)-483(that)-483(in)-487(addition)-480(sho)16(w)]TJ
+0 -1.316 TD
+[(stra)14(in-rat)23(e)-273(softening,)-266(dev)13(elop)-270(bo)12(th)-270(folding)-270(and)-263(boudinag)12(e)-273(instabil-)]TJ
+0 -1.309 TD
+[(ities)-299(\()]TJ
+0 0 0.4 scn
+2.565 0 Td
+[(Hobbs)-298(et)-306(al.,)-294(20)-32(09,)-303(in)-275(press)]TJ
+0 0 0 scn
+12.332 0 Td
+(\).)Tj
+/T1_1 1 Tf
+-14.897 -3.13 Td
+[(Ac)20(kno)14(wl)13(edgem)12(ents)]TJ
+/T1_0 1 Tf
+1.443 -2.625 Td
+[(W)42(e)-219(thank)-211(Giles)-219(Hunt)-217(and)-222(Hans)-213(Muhlhaus)-215(for)-215(helpful)-213(discussions)]TJ
+-1.443 -1.309 Td
+[(during)-296(the)-304(pr)14(eparati)14(on)-304(of)-306(this)-301(response)10(.)]TJ
+/T1_1 1 Tf
+0 -3.13 TD
+[(R)20(efer)17(ences)]TJ
+/T1_0 1 Tf
+6.6308 0 0 6.376 32.8252 308.296 Tm
+[(Anand,)-378(L.,)-378(Kim,)-381(K.H.,)-374(Sha)18(wki,)-374(T)48(.G.,)-300(1)59(987)83(.)-378(Onset)-368(of)-381(shear)-370(localisation)-376(in)-370(viscoplastic)]TJ
+1.804 -1.254 Td
+[(solids.)-332(J.)-332(Mech.)-338(Ph)37(ys.)-323(Solids)-341(3)16(5,)-336(407\205429.)]TJ
+-1.804 -1.245 Td
+[(Biot,)-406(M.A)-18(.,)-346(1)68(965.)-423(Mechanics)-429(of)-416(Incremental)-411(Deformations.)-426(John)-424(Wiley)59(,)-421(Ne)18(w)-420(Y)58(ork,)]TJ
+1.804 -1.254 Td
+[(504)-344(pp.)]TJ
+38.765 68.679 Td
+[(Edmunds,)-286(R.,)-296(Hunt,)-292(G.W)52(.,)-294(W)49(adee,)-295(M.A)-9(.,)-294(20)-36(05.)-294(Par)25(allel)-294(folding)-301(in)-293(multila)16(y)19(ered)-286(struc-)]TJ
+1.796 -1.254 Td
+[(tures.)-332(J.)-332(Mech.)-330(Ph)29(ys.)-323(Solids)-333(54,)-337(384\20540)-31(0.)]TJ
+-1.796 -1.245 Td
+[(Fleit)17(out,)-304(L.,)-301(F)21(roidev)23(aux,)-296(C.,)-231(1)68(980.)-303(Thermal)-305(and)-302(mechanical)-298(evolution)-297(of)-304(shear)-302(zones.)]TJ
+1.796 -1.254 Td
+[(J.)-341(S)24(truct.)-337(Geol.)-334(2,)-259(1)59<35398531>65(64.)]TJ
+-1.796 -1.245 Td
+[(F)21(resseng)20(eas,)-245(C.,)-248(Molinari,)-249(A)-11(.,)-175(1)59(987)83(.)-250(Instability)-229(and)-242(localisation)-256(of)-245(plastic)-252<946f77>-236(in)-251(shear)]TJ
+1.796 -1.254 Td
+[(at)-340(high)-328(strain)-329(rat)23(es.)-336(J.)-332(Mech.)-330(Ph)29(ys.)-323(Solids)-333(35,)-251(1)68<38358532>40(1)102(1)85(.)]TJ
+-1.796 -1.254 Td
+[(Hirth,)-274(G.,)-273(T)56(ey)18(ssier)48(,)-275(C.,)-274(Dunlap,)-268(W)49(.J.,)-276(20)-27(0)33(1)76(.)-267(An)-279(ev)18(aluation)-276(of)-270(q)19(uartzite)-268<946f77>-253(la)23(ws)-265(based)]TJ
+1.796 -1.245 Td
+[(on)-381(comparisons)-378(between)-363(ex)20(perimentally)-351(and)-371(naturall)21(y)-382(deformed)-373(roc)17(k)-12(s.)-377(Int.)-373(J.)]TJ
+0 -1.254 TD
+[(Earth)-341(Sci.)-330(\(Geologische)-341(Rundsch)14(au\))-337(90,)-337(7)16<37853837>74(.)]TJ
+-1.796 -1.245 Td
+[(Hobbs,)-454(B.E.,)-449(Reg)25(enauer)50(-Lieb,)-451(K.,)-453(Ord,)-449(A)-11(.,)-448(20)-36(08.)-457(Folding)-440(with)-460(thermal\205mechanical)]TJ
+1.796 -1.254 Td
+[(feedback.)-339(J.)-332(St)21(ruct.)-334(Geol.)-334(30,)-268(1)68(5)25(7)25<328531>57(592.)]TJ
+-1.796 -1.245 Td
+[(Hobbs,)-454(B.E.,)-449(Reg)25(enauer)50(-Lieb,)-451(K.,)-453(Ord,)-449(A)-11(.,)-448(20)-36(09.)-457(Folding)-440(with)-460(thermal\205mechanical)]TJ
+1.796 -1.254 Td
+[(feedback:)-328(a)-336(repl)23(y)37(.)-335(J.)-332(S)24(truct.)-337(Geol.)-334(3)42(1)85(,)-335(540\205543.)]TJ
+-1.796 -1.254 Td
+[(Hobbs,)-343(B.E.,)-347(Ord,)-338(A)-11(.,)-346(Spalla,)-348(I.,)-343(Gosso,)-350(G.,)-341(Zucalli,)-347(M.)-349(The)-342(intera)19(ction)-353(of)-347(deformation)]TJ
+1.796 -1.245 Td
+[(and)-405(metamorphic)-407(reactions.)-397(Special)-398(Issue)-404(of)-407(Geological)-405(Society)-393(of)-407(London,)-401(in)]TJ
+T*
+(press.)Tj
+-1.796 -1.245 Td
+[(Hunt,)-352(G.W)60(.,)-354(W)41(adee,)-355(M.K.,)-280(1)68(99)24(1)85(.)-352(Comparati)17(ve)-341(Lagrangian)-346(formulations)-357(for)-343(localised)]TJ
+1.796 -1.254 Td
+[(buckling.)-330(Proc.)-321(R.)-337(Soc.)-333(Lond.)-336(A)-327(434,)-338(485\205502.)]TJ
+-1.796 -1.254 Td
+[(Hunt,)-472(G.W)52(.,)-465(Muhlhaus,)-478(H.-B.,)-473(Whiting,)-472(I.M.,)-401(1)68(99)15(7)85(.)-472(Folding)-465(processes)-468(and)-473(solitary)]TJ
+1.796 -1.245 Td
+[(wa)39(ves)-323(in)-336(structural)-321(geology)44(.)-327(Philos.)-341(T)22(rans.)-319(R.)-337(Soc.)-333(Lond.)-336(355,)-321(2)42(1)59(9)16<37853232>40(1)68(3.)]TJ
+-1.796 -1.254 Td
+[(Hunt,)-250(G.W)52(.,)-252(Edmunds,)-252(R.,)-245(Budd,)-254(C.J.,)-256(Cosgr)17(ov)17(e,)-251(J.W)50(.,)-252(20)-27(06.)-260(Serial)-258(parallel)-239(folding)-259(with)]TJ
+1.796 -1.245 Td
+[(friction:)-342(a)-328(primitiv)17(e)-335(model)-333(using)-338(cubic)-335(B-splines.)-335(J.)-332(St)21(ruct.)-334(Geol.)-334(28,)-337(4)-26(4)-18(4\205455.)]TJ
+-1.796 -1.254 Td
+[(Muhlhaus,)-461(H.-B.,)-473(Hobbs,)-463(B.E.,)-475(Ord,)-458(A)-11(.,)-388(1)59(994.)-466(The)-470(role)-461(of)-467(axial)-471(constra)17(ints)-476(on)-467(the)]TJ
+1.796 -1.254 Td
+[(evolution)-477(of)-475(folds)-480(in)-481(single)-479(lay)34(ers.)-486(In:)-478(Siriw)19(ardan)15(e,)-482(Zaman)-480(\(Eds.\),)-479(Computer)]TJ
+0 -1.245 TD
+[(Methods)-336(and)-336(Adv)29(ances)-334(in)-328(Geomechanics.)-338(Balkema,)-333(Ro)30(tterd)16(am,)-337(pp.)-329(223\20523)38(1)85(.)]TJ
+-1.796 -1.254 Td
+(Mu)Tj
+1.069 0.009 Td
+<a8>Tj
+0.445 -0.009 Td
+[(hlhaus,)-400(H.-B.,)-405(Sakaguchi,)-397(H.,)-402(Hobbs,)-403(B.E.,)-330(1)68(998.)-406(Evolution)-392(of)-407(three-dimensional)]TJ
+0.282 -1.245 Td
+[(folds)-454(for)-446(a)-456(non-Ne)22(wtonian)-417(plate)-449(in)-447(a)-430(viscous)-458(medium.)-456(Pro)17(c.)-457(R.)-448(Soc.)-452(Lond.)-455(A)]TJ
+0 -1.254 TD
+[(454,)-338(3)42(1)42(2)42<318533>40(1)59(43.)]TJ
+-1.796 -1.245 Td
+[(Ne)18(edleman,)-288(A)-11(.,)-217(1)59(988.)-286(Materia)14(l)-290(rat)23(e)-284(dependence)-296(and)-285(mesh)-284(sensitivity)-278(in)-293(localisation)]TJ
+1.796 -1.254 Td
+[(problems.)-330(Computer)-326(methods.)-332(Appl.)-331(Mech.)-338(Eng.)-330(67)92(,)-335(69\20585.)]TJ
+-1.796 -1.254 Td
+[(R)24(egenauer)59(-Lieb,)-331(K.,)-325(Y)33(uen,)-328(D.A)-14(.,)-329(20)-27(04.)-345(Positiv)22(e)-326(feedback)-320(of)-330(inter)22(acting)-334(ductile)-325(faults)]TJ
+1.796 -1.245 Td
+[(from)-231(coupling)-229(of)-236(eq)26(uation)-239(of)-236(state,)-226(rheology)-205(and)-234(thermal)-236(mechanics.)-245(Ph)37(ys.)-229(Earth)]TJ
+T*
+[(Planet.)-340(Inter)67(.)-267(1)68(42,)-268(1)110(1)59<338531>57(3)16(5.)]TJ
+-1.796 -1.245 Td
+[(R)24(egenauer)59(-Lieb,)-246(K.,)-256(Hobbs,)-249(B.,)-248(Ord,)-244(A)-11(.,)-243(Gaede,)-257(O.,)-245(Vernon,)-258(R.,)-245(20)-36(09.)-251(Deformation)-220(with)]TJ
+1.796 -1.254 Td
+[(coupled)-338(chemical)-335(diffusion.)-338(Ph)29(ys.)-323(Earth)-333(Planet.)-331(Inter)59(.)-258(1)93(7)16(2,)-328(43\20554.)]TJ
+-1.796 -1.254 Td
+[(Schmid,)-278(D.W)54(.,)-286(Schmalholz,)-287(S.M.,)-285(Manck)17(telo)19(w)42(,)-284(N.S.,)-287(Fletcher)48(,)-284(R.C.,)-278(20)24(1)68(0.)-285(Folding)-277(with)]TJ
+1.796 -1.245 Td
+[(thermal)-339(mechanical)-332(feedback.)-339(A)-319(discussion.)-342(J.)-332(S)24(truct.)-337(Geol.)-334(32)-335(\(1\),)-266(1)42(2)25<378531>57(30.)]TJ
+-1.796 -1.254 Td
+[(Sha)27(wki,)-399(T)48(.G.,)-326(1)59(986.)-398(Analy)20(sis)-400(of)-398(shear)-404(band)-397(formation)-405(at)-400(high)-397(strain)-389(rat)23(es)-402(and)-405(the)]TJ
+1.796 -1.245 Td
+[(visco-plastic)-599(response)-580(of)-595(poly)29(crystals.)-583(PhD)-588(thesis,)-598(Division)-584(of)-587(Engineering,)]TJ
+T*
+[(Brow)21(n)-336(U)24(niv)17(ersity)37(,)-258(1)76(89)-335(pp.)]TJ
+-1.796 -1.245 Td
+[(Vev)16(eakis,)-411(E.,)-408(Alevizos,)-413(S.,)-416(Vardoulak)14(is,)-411(I.)-409(The)-410(critical)-416(chemical)-412(capping)-401(of)-416(thermal)]TJ
+1.796 -1.254 Td
+[(runa)18(wa)30(y)-331(during)-340(shear)-319(of)-339(frictional)-337(faults.)-332(J.)-332(Mech.)-338(Ph)37(ys.)-323(Solids,)-343(in)-310(pres)15(s.)]TJ
+-1.796 -1.254 Td
+[(W)49(adee,)-253(M.A)-9(.,)-243(Hunt,)-250(G.W)52(.,)-252(Peletier)54(,)-250(M.A)-9(.,)-243(20)-36(04.)-260(Kink)-251(band)-243(instability)-257(in)-242(lay)25(ered)-235(struc-)]TJ
+1.796 -1.245 Td
+[(tures.)-332(J.)-332(Mech.)-330(Ph)29(ys.)-323(Solids)-333(52,)-260(1)59(07)41<318531>57(09)33(1)85(.)]TJ
+8.2888 0 0 7.9702 372.1889 359.2629 Tm
+[(Bruce)-334(Hobbs)]TJ
+0 0 0.4 scn
+/T1_2 1 Tf
+6.2164 0 0 5.5755 420.2644 359.3196 Tm
+(*)Tj
+0 0 0 scn
+/T1_0 1 Tf
+8.2888 0 0 7.9702 423.3259 359.2629 Tm
+[(,)-339(Klaus)-328(R)19(egena)14(uer)49(-lieb,)-331(Alison)-332(Ord)]TJ
+/T1_3 1 Tf
+-11.682 -1.316 Td
+[(CSIRO)-322(Explor)19(ation)-327(and)-335(Mining,)-333(PO)-331(Box)-330(1)101(1)66(30,)-333(Bentley)48(,)-329(W)42(estern)]TJ
+16.511 -1.309 Td
+[(Au)13(str)16(alia)-329(6)39(1)53(02,)-333(A)16(ustr)20(alia)]TJ
+/T1_4 1 Tf
+-10.978 -1.017 Td
+<03>Tj
+/T1_0 1 Tf
+0.91 -0.299 Td
+[(Corresp)15(onding)-334(author)57(.)-339(T)53(el.:)]TJ
+/T1_4 1 Tf
+12.797 0 Td
+<fe>Tj
+/T1_0 1 Tf
+0.766 0 Td
+[(6)32(1)-269(4)45(1)73(8)-331(395)-336(545.)]TJ
+/T1_3 1 Tf
+-9.651 -1.309 Td
+[(E-mail)-328(addre)13(ss:)]TJ
+0 0 0.4 scn
+/T1_0 1 Tf
+7.154 0 Td
+[(bruce.hobbs@csir)12(o.au)]TJ
+0 0 0 scn
+4.029 -2.625 Td
+[(1)73(8)-331(July)-325(20)-32(09)]TJ
+-9.507 -1.316 Td
+[(A)47(v)21(ailable)-339(online)-329(1)93(7)-331(October)-326(20)-32(09)]TJ
+/T1_3 1 Tf
+6.376 0 0 6.376 213.5621 740.8062 Tm
+[(Reply)-326(/)-328(Journal)-341(of)-334(Structur)17(al)-328(Geology)-344(32)-328(\(20)36(1)54(0\))-336(1)63(3)54<318531>58(34)]TJ
+/T1_0 1 Tf
+-0.0652 Tc -28.347 0 Td
+[(13)-65(4)]TJ
+ET
+endstream
+endobj
+
+195 0 obj
+12833
+endobj
+
+%% Original object ID: 112 0
+196 0 obj
+<<
+ /BitsPerComponent 8
+ /ColorSpace [
+ /Indexed
+ /DeviceRGB
+ 255
+ 101 0 R
+ ]
+ /Height 99
+ /Width 74
+ /Length 197 0 R
+>>
+stream
+
+endstream
+endobj
+
+%QDF: ignore_newline
+197 0 obj
+7326
+endobj
+
+%% Original object ID: 115 0
+198 0 obj
+<<
+ /D [
+ 75 0 R
+ /FitR
+ 0
+ 794
+ 596
+ 794
+ ]
+>>
+endobj
+
+%% Original object ID: 116 0
+199 0 obj
+<<
+ /D [
+ 75 0 R
+ /FitR
+ 33
+ 323
+ 284
+ 323
+ ]
+>>
+endobj
+
+%% Original object ID: 117 0
+200 0 obj
+<<
+ /D [
+ 75 0 R
+ /FitR
+ 302
+ 601
+ 553
+ 601
+ ]
+>>
+endobj
+
+%% Original object ID: 118 0
+201 0 obj
+<<
+ /D [
+ 75 0 R
+ /FitR
+ 302
+ 585
+ 553
+ 585
+ ]
+>>
+endobj
+
+%% Original object ID: 119 0
+202 0 obj
+<<
+ /D [
+ 75 0 R
+ /FitR
+ 302
+ 569
+ 553
+ 569
+ ]
+>>
+endobj
+
+%% Original object ID: 120 0
+203 0 obj
+<<
+ /D [
+ 75 0 R
+ /FitR
+ 302
+ 553
+ 553
+ 553
+ ]
+>>
+endobj
+
+%% Original object ID: 121 0
+204 0 obj
+<<
+ /D [
+ 75 0 R
+ /FitR
+ 302
+ 529
+ 553
+ 529
+ ]
+>>
+endobj
+
+%% Original object ID: 122 0
+205 0 obj
+<<
+ /D [
+ 75 0 R
+ /FitR
+ 302
+ 506
+ 553
+ 506
+ ]
+>>
+endobj
+
+%% Original object ID: 123 0
+206 0 obj
+<<
+ /D [
+ 75 0 R
+ /FitR
+ 302
+ 490
+ 553
+ 490
+ ]
+>>
+endobj
+
+%% Original object ID: 124 0
+207 0 obj
+<<
+ /D [
+ 75 0 R
+ /FitR
+ 302
+ 466
+ 553
+ 466
+ ]
+>>
+endobj
+
+%% Original object ID: 125 0
+208 0 obj
+<<
+ /D [
+ 75 0 R
+ /FitR
+ 302
+ 450
+ 553
+ 450
+ ]
+>>
+endobj
+
+%% Original object ID: 126 0
+209 0 obj
+<<
+ /D [
+ 75 0 R
+ /FitR
+ 302
+ 434
+ 553
+ 434
+ ]
+>>
+endobj
+
+%% Original object ID: 127 0
+210 0 obj
+<<
+ /D [
+ 75 0 R
+ /FitR
+ 33
+ 307
+ 284
+ 307
+ ]
+>>
+endobj
+
+%% Original object ID: 128 0
+211 0 obj
+<<
+ /D [
+ 75 0 R
+ /FitR
+ 302
+ 410
+ 553
+ 410
+ ]
+>>
+endobj
+
+%% Original object ID: 129 0
+212 0 obj
+<<
+ /D [
+ 75 0 R
+ /FitR
+ 302
+ 394
+ 553
+ 394
+ ]
+>>
+endobj
+
+%% Original object ID: 130 0
+213 0 obj
+<<
+ /D [
+ 75 0 R
+ /FitR
+ 302
+ 729
+ 553
+ 729
+ ]
+>>
+endobj
+
+%% Original object ID: 131 0
+214 0 obj
+<<
+ /D [
+ 75 0 R
+ /FitR
+ 302
+ 713
+ 553
+ 713
+ ]
+>>
+endobj
+
+%% Original object ID: 132 0
+215 0 obj
+<<
+ /D [
+ 75 0 R
+ /FitR
+ 302
+ 697
+ 553
+ 697
+ ]
+>>
+endobj
+
+%% Original object ID: 133 0
+216 0 obj
+<<
+ /D [
+ 75 0 R
+ /FitR
+ 302
+ 681
+ 553
+ 681
+ ]
+>>
+endobj
+
+%% Original object ID: 134 0
+217 0 obj
+<<
+ /D [
+ 75 0 R
+ /FitR
+ 302
+ 657
+ 553
+ 657
+ ]
+>>
+endobj
+
+%% Original object ID: 135 0
+218 0 obj
+<<
+ /D [
+ 75 0 R
+ /FitR
+ 302
+ 641
+ 553
+ 641
+ ]
+>>
+endobj
+
+%% Original object ID: 136 0
+219 0 obj
+<<
+ /D [
+ 75 0 R
+ /FitR
+ 302
+ 625
+ 553
+ 625
+ ]
+>>
+endobj
+
+%% Original object ID: 137 0
+220 0 obj
+<<
+ /D [
+ 73 0 R
+ /FitR
+ 33
+ 245
+ 553
+ 245
+ ]
+>>
+endobj
+
+%% Original object ID: 138 0
+221 0 obj
+<<
+ /D [
+ 6 0 R
+ /FitR
+ 0
+ 794
+ 596
+ 794
+ ]
+>>
+endobj
+
+%% Original object ID: 139 0
+222 0 obj
+<<
+ /D [
+ 73 0 R
+ /FitR
+ 0
+ 794
+ 596
+ 794
+ ]
+>>
+endobj
+
+%% Original object ID: 140 0
+223 0 obj
+<<
+ /D [
+ 74 0 R
+ /FitR
+ 0
+ 794
+ 596
+ 794
+ ]
+>>
+endobj
+
+%% Original object ID: 141 0
+224 0 obj
+<<
+ /D [
+ 6 0 R
+ /FitR
+ 43
+ 422
+ 288
+ 422
+ ]
+>>
+endobj
+
+%% Original object ID: 142 0
+225 0 obj
+<<
+ /D [
+ 6 0 R
+ /FitR
+ 312
+ 338
+ 557
+ 338
+ ]
+>>
+endobj
+
+%% Original object ID: 143 0
+226 0 obj
+<<
+ /D [
+ 6 0 R
+ /FitR
+ 312
+ 119
+ 557
+ 119
+ ]
+>>
+endobj
+
+%% Original object ID: 144 0
+227 0 obj
+<<
+ /D [
+ 73 0 R
+ /FitR
+ 302
+ 395
+ 547
+ 395
+ ]
+>>
+endobj
+
+%% Original object ID: 145 0
+228 0 obj
+<<
+ /D [
+ 74 0 R
+ /FitR
+ 43
+ 274
+ 288
+ 274
+ ]
+>>
+endobj
+
+%% Original object ID: 146 0
+229 0 obj
+<<
+ /D [
+ 74 0 R
+ /FitR
+ 312
+ 285
+ 557
+ 285
+ ]
+>>
+endobj
+
+%% Original object ID: 147 0
+230 0 obj
+<<
+ /D [
+ 74 0 R
+ /FitR
+ 43
+ 731
+ 563
+ 731
+ ]
+>>
+endobj
+
+%% Original object ID: 199 0
+231 0 obj
+<<
+ /Subtype /Type1C
+ /Length 232 0 R
+>>
+stream
+
+This software is licensed, not sold. Unauthorised use strictly prohibited.
+Gulliver is a trademark of Gerard Unger that may be registered in some jurisdictions. ALL RIGHTS RESERVED.AdvOT863180fb
+C
+
+ C
+UPD!ewxu}hrum]rG9=CPrX\_tlFW+=.6"\M.
+A`i_s~vhް(v|z`nk{^u~wzvBsQ|Q|tzv]V}e|nl[N\?jsLv}}~N}N~r}q}vi߰+Y]!Ozwf]Sy_ksullMlr}u^L}YOW
+'qKN}~bˑuv}}~N}N~r}q}v<9vdrq}ȏY\r~l\bv}}~N}N~r}q}vJrrg}jttN~r}Fns ȏKv}}~NO|9v}}~N}N~r}q}vKrr3 ZZ Ya lL*!Koh"k^W)hyArv}}~N}N~r}q}vuhoԨspaQYX y}w{lpxlpKZ㆔^<j|Dv}}~N}N~r}q}vhrr~DQa%[]
+qpq'JY|c_cP' ިtrW.:&M;*%ƣ}rr"+gv~T ckc-.N8+ȾBnih X-
+4g|b__"U5=L+0LA..š׮^/-qiK3KmRlxhi=~TSN~r}q}voho쏝~nIaT |ny>tilb ?A6Ss\nseapw{=ufeR?_;p\xxb*]XG⪴ͪa16j`LIkUzbFHb0]Ʈqrc
+opZ`NUsZ[+`v}TN~r}q}vbrrDZwet|;IN~r}r}vgbuhfuvghvbrr@+`v}TN~r}q}vxbvhfuvghv.+`v}T>U|ypy{s~z}hsvmhy˧ Trr.+`v}TN~r}q}vrw~s-gTv~{x.Zrr.+`v}TN~r}q}vrrcԉ}xod[HPr]Vq]JLVsZZ(`v}TN~r}q}vbrrDZwet|;IN~r}r}vbqrc܇ͱxct|;IN~r}r}vqrc~zl__LVsZZ(`v}TN~r}q}vbrrDZwet|;IN~r}r}v^A6*01"JC)+0K#0aG*-c01I2}8BMXuXZ(`v}TyM~r}r}vnhox,N%~.Q@
+qpq'Jsgqr.pcka..O7*Ǿ+N}r}r}v~nih X-
+]*qb`Xo]](`v}TN~r}q}vohoz>.oF3`zetsKf
+FT-Lbd_tsfTfkJZoivwTz::Xem~v{qtzhynRptq}ºsrrDv}ˣsq4+`v}TЉ~mgeNf+`v}TM8optzuAI/v}~'p~i)Cv}~wc-F<F-v}|;dp/ oj;Bv}~|{Fmn  FTwq~kG;v{A9Uvzzzh-?sjvuw{sxv>z%%z{vI5v}}1рer!Fv}~yaAr|cZyvxg|}{~gsvmgvȰկ,
+b
+sS`~z~{t$<
+9IqrA3}ҐeusV5;<E,rTSN~r}q}vohoBv}wN~r}r}vqr.={hgf @eDlogZrTSN~r}q}voho˒fN~r}r}v~hF;vigvvhivYvigvvhiv
+endstream
+endobj
+
+%QDF: ignore_newline
+232 0 obj
+7924
+endobj
+
+%% Original object ID: 203 0
+233 0 obj
+<<
+ /Subtype /Type1C
+ /Length 234 0 R
+>>
+stream
+
+This software is licensed, not sold. Unauthorised use strictly prohibited.
+Gulliver is a trademark of Gerard Unger that may be registered in some jurisdictions. ALL RIGHTS RESERVED.AdvOTb92eb7df.I
+^
+ + w i("WbGWkq 9b?5Y"UgA$@X<f! = շ+gݴA%NL?__P,! p;U a-LEC[ҭvfdood}l|YwhJ{{vg^pp\gw3@g|G6I%@V"\^(q2; ]NѪb.lMb.OqcmVEm#GǥinNePm]p@lL|oh|vvM>!pagz}sw|xh? @iRp|ܱg=4g?<;QP !2 
+\#P֘ˍYvz}zt{uqp4CB ctH^^vz}ytB}Jr}mzv^q}ˎHsvz}yt,T}ypx{t~}~cqvkiz̧ Ȓ#Hrvxv(|{`v~urz^vz}ytB}N~q}q}v^q}Ȓ2
+svz}ytB}N~q}q}vAqьjuo5тN~q}q}vYq}ȒQ~r~lb̂bMO.9bLO":W/ B/ jR@]i\tRz $Y.ml\]vz}ytB}N~q}q}vjii/PJzzg~*Rupxaih舓 ~sfjhvz}ytB}N~q}q}v^qͰqyskJtVdqwllShXVR.IvZaniz^YC\T][gR2P[
+L¸R^Lo{nYv sgU`|c?k
+Y14&cFոjt_Icf5{pfsH|E!}sm~krtnjxУ7 $v|mP-LgBk~moH}ZVTXwyBtjja:9AXrPfqicux/kXdO@]>b j~çiG!fOJUorvˁ`J>^/ZĮ_>)my}||x$&Ͷ|p~|yWfwʷ~ws{hNMJa8HR~wsz~vf_eqM`~~zrTfwʶ.lzwkeso`]y}||x1~gwȶ~wrz$)mf>xi`bnPb~ysJ-&͸|p{yK&Ļ|q|wVfwʶtrz~gMK?XKUgPJE_:K~wrzgLODc6Ixi`bnPb~ysJ-&͸|p~|yWfwʷz!I( "[#?)"]T7Ψ\AK0Hn.!KRiz2/x]6Rcr?Jxi`bnPb~zr<N}q}p}vetУi6o%\Ylo_y[vsv?e8xi`anPc~ysJ-sgZ_g5RJyzjqrkbtxIQaĤ~fY6EO-Vj]`jxeRdhHom|,+bpPqhsvxtrSxz{Skµ}shuoizR30K&YLUngm{vg^fqM_~~ys_nquUlʴdyjyǴ~vwqb~iL' əxjhqtm}qy]UgASl|zudmoR`"əxiiptm|rxWWnNQÈV9>r~hzHzjdirOc~jL=|{smFV~ʵ}or}{}=N´xjgqwntlgOFK,tkbjhUi~zr3?JZV_Yqlvwq{Q{iSTjspm~}~istlhxï±ϻlxjhqtm}jg=݁Ću|idjsKa}|s~wrz$SjicEh>cyhpJZVE!}sm~krtnjxУ7   ˓)
+endstream
+endobj
+
+%QDF: ignore_newline
+234 0 obj
+5759
+endobj
+
+%% Original object ID: 226 0
+235 0 obj
+<<
+ /Subtype /Type1C
+ /Length 236 0 R
+>>
+stream
+
+This software is licensed, not sold. Unauthorised use strictly prohibited.
+Gulliver is a trademark of Gerard Unger that may be registered in some jurisdictions. ALL RIGHTS RESERVED.AdvOTc4d0b532
+ʃֻ*iJ_K}ni|vzioϓtW
+endstream
+endobj
+
+%QDF: ignore_newline
+236 0 obj
+1016
+endobj
+
+%% Original object ID: 230 0
+237 0 obj
+<<
+ /Subtype /Type1C
+ /Length 238 0 R
+>>
+stream
+
+endstream
+endobj
+
+%QDF: ignore_newline
+238 0 obj
+240
+endobj
+
+%% Original object ID: 211 0
+239 0 obj
+<<
+ /Subtype /Type1C
+ /Length 240 0 R
+>>
+stream
+
+This software is licensed, not sold. Unauthorised use strictly prohibited.
+Gulliver is a trademark of Gerard Unger that may be registered in some jurisdictions. ALL RIGHTS RESERVED.AdvOTb83ee1dd.B
+Y
+
+ T  x  (JjoUVoάkL2sɣio%PdLo \UzNK}o)oZggh||tx{vT̩6?$6bF`sçb7%g>/*sqnnjk^agjo
+PYSnKiB"E[K}oi|sho@H6A@nJtF֝^>e]SLCxR,ŧjEZdtaR"s_w~z_bKiqYYq̭kLRtE]Itzs}wHanSl}pzw}zs 3eY/woY7gqFs}}~NvM~r}r}s"ʙ^2fc<`ڭf<'d_1vwucPzVe]@F\Y Ye,XPPcګ~£`sbsg\ifgss[HL:s}}~NvM~r}r}g[s}}~NvM~r}r}srrvȐ<tqtrxurltV5f|=s}}~NvM~r}r}srrd Tl)ea6T߰g5Z/K}oh|sɣiorH::qss{w_/Nb{o M2Osz,Jj}e9q{`'O~qoD͉{sk^T1CmOZqʰzf|z^mfAWd~Pvl\E-Rȸ^sëE|zxς:t" P=E O\sT\sWp~T=
+ܮT bI5z{JyqVM"TB+0ϧkchY)ÚQ|
+kf`%3R>*ɹû<psr
+sWp~T'
+y{v:ht|k`c SϠ̄{mG(:)QC+3Өľ¾j)GHcg>:Lu_bfcxTATBM~r}r}s`s~Z~cHmbdZ!0@8LvQkri\jr{6zbfR@_%TmUrsV
+ܭTbH7z}| [pmVY^pRgmXo~TM~r}r}s`s|o{ĭ ?Bzk|vp6g}isQea!;O
+endstream
+endobj
+
+%QDF: ignore_newline
+240 0 obj
+4118
+endobj
+
+%% Original object ID: 233 0
+241 0 obj
+<<
+ /Subtype /Type1C
+ /Length 242 0 R
+>>
+stream
+
+#=bE^Ai! ">Ee>1^!)7F]FP&bbMKHHK`MboUb&&'5΍ҐŰλ["QDHg6L+&'8JILQo: #Q16Zp qnE&'s9*PT.v*S`ؠŎ b!)_åʪtut %$(5dX4e-h$ p
+
+ϩ_LT}D*3A'(5 'BfnA*gݺJ7+ک3**e3$m8~lUZ,:%!
+endstream
+endobj
+
+%QDF: ignore_newline
+242 0 obj
+1588
+endobj
+
+%% Original object ID: 245 0
+243 0 obj
+<<
+ /Dest (slink1)
+ /Next 244 0 R
+ /Parent 103 0 R
+ /Title (Finite amplitude folding)
+>>
+endobj
+
+%% Original object ID: 246 0
+244 0 obj
+<<
+ /Dest (slink2)
+ /Parent 103 0 R
+ /Prev 243 0 R
+ /Title (Influence of non-linearities)
+>>
+endobj
+
+%% Original object ID: 244 0
+245 0 obj
+<<
+ /Dest (flink2)
+ /Next 272 0 R
+ /Parent 71 0 R
+ /Prev 103 0 R
+ /Title (Influence of boundary conditions)
+>>
+endobj
+
+%% Original object ID: 241 0
+246 0 obj
+<<
+ /Dest (aclink1)
+ /Next 104 0 R
+ /Parent 71 0 R
+ /Prev 273 0 R
+ /Title (Acknowledgements)
+>>
+endobj
+
+%% Original object ID: 89 0
+247 0 obj
+<<
+ /Differences [
+ 60
+ /less
+ /equal
+ /greater
+ ]
+ /Type /Encoding
+>>
+endobj
+
+%% Original object ID: 90 0
+248 0 obj
+<<
+ /Ascent 693
+ /CapHeight 678
+ /CharSet (/space/less/equal/greater)
+ /Descent -206
+ /Flags 4
+ /FontBBox [
+ -31
+ -239
+ 1041
+ 750
+ ]
+ /FontFile3 274 0 R
+ /FontName /IKFFKH+AdvP4C4E51
+ /ItalicAngle 0
+ /StemV 0
+ /Type /FontDescriptor
+ /XHeight 441
+>>
+endobj
+
+%% Original object ID: 92 0
+249 0 obj
+<<
+ /Length 250 0 R
+>>
+stream
+/CIDInit /ProcSet findresource begin 12 dict begin begincmap /CIDSystemInfo <<
+/Registry (F7+0) /Ordering (T1UV) /Supplement 0 >> def
+/CMapName /F7+0 def
+/CMapType 2 def
+1 begincodespacerange <3c> <3e> endcodespacerange
+1 beginbfrange
+<3c> <3e> <003C>
+endbfrange
+endcmap CMapName currentdict /CMap defineresource pop end end
+endstream
+endobj
+
+250 0 obj
+325
+endobj
+
+%% Original object ID: 34 0
+251 0 obj
+<<
+ /Ascent 715
+ /CapHeight 0
+ /CharSet (/a/b/c/d)
+ /Descent 0
+ /Flags 262176
+ /FontBBox [
+ -307
+ -104
+ 977
+ 442
+ ]
+ /FontFile3 276 0 R
+ /FontName /IKFFPG+Arial-BoldMT
+ /ItalicAngle 0
+ /StemV 0
+ /Type /FontDescriptor
+>>
+endobj
+
+%% Original object ID: 35 0
+252 0 obj
+<<
+ /Length 253 0 R
+>>
+stream
+<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
+<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 4.0-c316 44.253921, Sun Oct 01 2006 17:14:39">
+ <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+ <rdf:Description rdf:about=""
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <dc:creator>
+ <rdf:Seq>
+ <rdf:li>TNQ</rdf:li>
+ </rdf:Seq>
+ </dc:creator>
+ <dc:title>
+ <rdf:Alt>
+ <rdf:li xml:lang="x-default">sg_2378_gr1_bw.eps</rdf:li>
+ </rdf:Alt>
+ </dc:title>
+ </rdf:Description>
+ <rdf:Description rdf:about=""
+ xmlns:xap="http://ns.adobe.com/xap/1.0/">
+ <xap:CreatorTool>Adobe Illustrator(R) 11</xap:CreatorTool>
+ </rdf:Description>
+ </rdf:RDF>
+</x:xmpmeta>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<?xpacket end="w"?>
+endstream
+endobj
+
+%QDF: ignore_newline
+253 0 obj
+2909
+endobj
+
+%% Original object ID: 37 0
+254 0 obj
+<<
+ /Subtype /XML
+ /Type /Metadata
+ /Length 255 0 R
+>>
+stream
+<?xpacket begin='' id='W5M0MpCehiHzreSzNTczkc9d'?><x:xmpmeta xmlns:x='adobe:ns:meta/' x:xmptk='XMP toolkit 3.0-29, framework 1.6'>
+<rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:iX='http://ns.adobe.com/iX/1.0/'>
+
+ <rdf:Description rdf:about='uuid:4ae560a1-5964-4036-8c85-b973407ecb74'
+ xmlns:pdf='http://ns.adobe.com/pdf/1.3/'>
+ <pdf:Producer>Corel PDF Engine Version 14.0.0.701</pdf:Producer>
+ </rdf:Description>
+
+ <rdf:Description rdf:about='uuid:4ae560a1-5964-4036-8c85-b973407ecb74'
+ xmlns:photoshop='http://ns.adobe.com/photoshop/1.0/'>
+ </rdf:Description>
+
+ <rdf:Description rdf:about='uuid:4ae560a1-5964-4036-8c85-b973407ecb74'
+ xmlns:tiff='http://ns.adobe.com/tiff/1.0/'>
+ </rdf:Description>
+
+ <rdf:Description rdf:about='uuid:4ae560a1-5964-4036-8c85-b973407ecb74'
+ xmlns:xap='http://ns.adobe.com/xap/1.0/'
+ xmlns:xapGImg='http://ns.adobe.com/xap/1.0/g/img/'>
+ <xap:ModifyDate>2009-10-15T16:14:48Z</xap:ModifyDate>
+ <xap:CreateDate>2009-07-15T13:43:19+08:00</xap:CreateDate>
+ <xap:CreatorTool>CorelDRAW</xap:CreatorTool>
+ <xap:Thumbnails>
+ <rdf:Alt>
+ <rdf:li rdf:parseType='Resource'>
+ <xapGImg:format>JPEG</xapGImg:format>
+ <xapGImg:width>256</xapGImg:width>
+ <xapGImg:height>112</xapGImg:height>
+ <xapGImg:image>/9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA&#xA;AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK&#xA;DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f&#xA;Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgAcAEAAwER&#xA;AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA&#xA;AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB&#xA;UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE&#xA;1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ&#xA;qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy&#xA;obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp&#xA;0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo&#xA;+DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A6d5l84eX/J+m+X4f8OWm&#xA;pfWLO2mvSqUlihdo4BJxS3mX7cn2pXjU0oG5EDFXpf8Ah3y//wBWy0/5ER/804q7/Dvl/wD6tlp/&#xA;yIj/AOacVd/h3y//ANWy0/5ER/8ANOKu/wAO+X/+rZaf8iI/+acVd/h3y/8A9Wy0/wCREf8AzTir&#xA;v8O+X/8Aq2Wn/IiP/mnFXf4d8v8A/VstP+REf/NOKu/w75f/AOrZaf8AIiP/AJpxV3+HfL//AFbL&#xA;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&#xA;vZr+9jigXTbiH/SLeRpZGtuKrFOkjV4TO32UPQYqnGKoCy/462o/88f+IHFUfirsVdirsVQn6J0z&#xA;6/8AX/qsf1w/7v4jlWnHlX+bj8NetNumKovFVskccsbRyKHjcFXRgCrKRQgg9QcVW29vBbQR29vG&#xA;sUEShIokAVVVRQAAdAMVVMVdirsVdirTojgB1DAEMARXcGoP0HFUB5i/5R/U/wDmEn/5NtiqYYq7&#xA;FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYqljw6tBqFzPaw280VwI/72Z4mBQEEUWKUfjiq/&#xA;1/MH/LFaf9Jcn/ZNirvX8wf8sVp/0lyf9k2Ku9fzB/yxWn/SXJ/2TYq71/MH/LFaf9Jcn/ZNirvX&#xA;8wf8sVp/0lyf9k2Ku9fzB/yxWn/SXJ/2TYq71/MH/LFaf9Jcn/ZNirvX8wf8sVp/0lyf9k2Ku9fz&#xA;B/yxWn/SXJ/2TYq71/MH/LFaf9Jcn/ZNirvX8wf8sVp/0lyf9k2Ku9fzB/yxWn/SXJ/2TYq71/MH&#xA;/LFaf9Jcn/ZNiqG1KPzDeaddWgtLRDcwyRBzdSmnNStafV+1cVf/2Q==</xapGImg:image>
+ </rdf:li>
+ </rdf:Alt>
+ </xap:Thumbnails>
+ </rdf:Description>
+
+ <rdf:Description rdf:about='uuid:4ae560a1-5964-4036-8c85-b973407ecb74'
+ xmlns:xapMM='http://ns.adobe.com/xap/1.0/mm/'>
+ <xapMM:DocumentID>uuid:bc9ed487-880a-4260-9509-154a2ec311a4</xapMM:DocumentID>
+ </rdf:Description>
+
+ <rdf:Description rdf:about='uuid:4ae560a1-5964-4036-8c85-b973407ecb74'
+ xmlns:dc='http://purl.org/dc/elements/1.1/'>
+ <dc:format>application/postscript</dc:format>
+ <dc:title>
+ <rdf:Alt>
+ <rdf:li xml:lang='x-default'>BEf001-09.cdr</rdf:li>
+ </rdf:Alt>
+ </dc:title>
+ <dc:creator>
+ <rdf:Seq>
+ <rdf:li>Vartesi, Angelo (E&amp;M, Kensington)</rdf:li>
+ </rdf:Seq>
+ </dc:creator>
+ </rdf:Description>
+
+</rdf:RDF>
+</x:xmpmeta>
+ <?xpacket end='w'?>
+
+endstream
+endobj
+
+255 0 obj
+15656
+endobj
+
+%% Original object ID: 71 0
+256 0 obj
+<<
+ /Ascent 693
+ /CapHeight 0
+ /CharSet (/space/v)
+ /Descent -189
+ /Flags 32
+ /FontBBox [
+ 0
+ -291
+ 875
+ 697
+ ]
+ /FontFile3 278 0 R
+ /FontName /IKFHLN+AdvPS3F4C13
+ /ItalicAngle 0
+ /StemV 0
+ /Type /FontDescriptor
+ /XHeight 694
+>>
+endobj
+
+%% Original object ID: 104 0
+257 0 obj
+<<
+ /Differences [
+ 2
+ /C0
+ /C3
+ 112
+ /p
+ 188
+ /onequarter
+ 222
+ /Thorn
+ 240
+ /eth
+ 254
+ /thorn
+ ]
+ /Type /Encoding
+>>
+endobj
+
+%% Original object ID: 94 0
+258 0 obj
+<<
+ /Ascent 750
+ /CapHeight 717
+ /CharSet (/space/onequarter/eth/Thorn/p/C0/C3/thorn)
+ /Descent -249
+ /Flags 4
+ /FontBBox [
+ -20
+ -958
+ 1114
+ 770
+ ]
+ /FontFile3 280 0 R
+ /FontName /IKFHLO+AdvP4C4E74
+ /ItalicAngle 0
+ /StemV 0
+ /Type /FontDescriptor
+ /XHeight 705
+>>
+endobj
+
+%% Original object ID: 95 0
+259 0 obj
+<<
+ /Length 260 0 R
+>>
+stream
+/CIDInit /ProcSet findresource begin 12 dict begin begincmap /CIDSystemInfo <<
+/Registry (F10+0) /Ordering (T1UV) /Supplement 0 >> def
+/CMapName /F10+0 def
+/CMapType 2 def
+1 begincodespacerange <70> <fe> endcodespacerange
+5 beginbfchar
+<70> <0070>
+<bc> <00BC>
+<de> <00DE>
+<f0> <00F0>
+<fe> <00FE>
+endbfchar
+endcmap CMapName currentdict /CMap defineresource pop end end
+endstream
+endobj
+
+260 0 obj
+368
+endobj
+
+%% Original object ID: 73 0
+261 0 obj
+<<
+ /Ascent 693
+ /CapHeight 0
+ /CharSet (/space/k/three)
+ /Descent -190
+ /Flags 34
+ /FontBBox [
+ 0
+ -208
+ 843
+ 697
+ ]
+ /FontFile3 282 0 R
+ /FontName /IKFHLP+AdvPS4721B4
+ /ItalicAngle 0
+ /StemV 0
+ /Type /FontDescriptor
+ /XHeight 693
+>>
+endobj
+
+%% Original object ID: 77 0
+262 0 obj
+<<
+ /Differences [
+ 2
+ /ffi
+ 112
+ /p
+ ]
+ /Type /Encoding
+>>
+endobj
+
+%% Original object ID: 75 0
+263 0 obj
+<<
+ /Ascent 772
+ /CapHeight 0
+ /CharSet (/space/ffi/p)
+ /Descent 623
+ /Flags 6
+ /FontBBox [
+ -15
+ -1160
+ 1020
+ 40
+ ]
+ /FontFile3 284 0 R
+ /FontName /IKFHMA+AdvP4C4E46
+ /ItalicAngle 0
+ /StemV 0
+ /Type /FontDescriptor
+ /XHeight 0
+>>
+endobj
+
+%% Original object ID: 76 0
+264 0 obj
+<<
+ /Length 265 0 R
+>>
+stream
+/CIDInit /ProcSet findresource begin 12 dict begin begincmap /CIDSystemInfo <<
+/Registry (F12+0) /Ordering (T1UV) /Supplement 0 >> def
+/CMapName /F12+0 def
+/CMapType 2 def
+1 begincodespacerange <02> <70> endcodespacerange
+2 beginbfchar
+<02> <FB03>
+<70> <0070>
+endbfchar
+endcmap CMapName currentdict /CMap defineresource pop end end
+endstream
+endobj
+
+265 0 obj
+332
+endobj
+
+%% Original object ID: 79 0
+266 0 obj
+<<
+ /Ascent 714
+ /CapHeight 673
+ /CharSet (/space/s)
+ /Descent -208
+ /Flags 34
+ /FontBBox [
+ 0
+ -302
+ 989
+ 802
+ ]
+ /FontFile3 286 0 R
+ /FontName /IKFHMB+AdvPSMP10
+ /ItalicAngle 0
+ /StemV 0
+ /Type /FontDescriptor
+ /XHeight 458
+>>
+endobj
+
+%% Original object ID: 96 0
+267 0 obj
+<<
+ /Differences [
+ 42
+ /asterisk
+ 95
+ /underscore
+ ]
+ /Type /Encoding
+>>
+endobj
+
+%% Original object ID: 103 0
+268 0 obj
+<<
+ /Ascent 694
+ /CapHeight 677
+ /CharSet (/space/underscore/asterisk)
+ /Descent -206
+ /Flags 6
+ /FontBBox [
+ -31
+ -250
+ 1000
+ 750
+ ]
+ /FontFile3 288 0 R
+ /FontName /IKFHMC+AdvP4C4E59
+ /ItalicAngle 0
+ /StemV 0
+ /Type /FontDescriptor
+ /XHeight 431
+>>
+endobj
+
+%% Original object ID: 97 0
+269 0 obj
+<<
+ /Length 270 0 R
+>>
+stream
+/CIDInit /ProcSet findresource begin 12 dict begin begincmap /CIDSystemInfo <<
+/Registry (F14+0) /Ordering (T1UV) /Supplement 0 >> def
+/CMapName /F14+0 def
+/CMapType 2 def
+1 begincodespacerange <2a> <5f> endcodespacerange
+2 beginbfchar
+<2a> <002A>
+<5f> <005F>
+endbfchar
+endcmap CMapName currentdict /CMap defineresource pop end end
+endstream
+endobj
+
+270 0 obj
+332
+endobj
+
+%% Original object ID: 86 0
+271 0 obj
+<<
+ /S /URI
+ /URI (mailto:bruce.hobbs@csiro.au)
+>>
+endobj
+
+%% Original object ID: 243 0
+272 0 obj
+<<
+ /Dest (flink3)
+ /Next 273 0 R
+ /Parent 71 0 R
+ /Prev 245 0 R
+ /Title (The scale issue)
+>>
+endobj
+
+%% Original object ID: 242 0
+273 0 obj
+<<
+ /Dest (flink4)
+ /Next 246 0 R
+ /Parent 71 0 R
+ /Prev 272 0 R
+ /Title (Concluding remarks)
+>>
+endobj
+
+%% Original object ID: 91 0
+274 0 obj
+<<
+ /Subtype /Type1C
+ /Length 275 0 R
+>>
+stream
+
+endstream
+endobj
+
+275 0 obj
+411
+endobj
+
+%% Original object ID: 33 0
+276 0 obj
+<<
+ /Subtype /Type1C
+ /Length 277 0 R
+>>
+stream
+
+endstream
+endobj
+
+%QDF: ignore_newline
+277 0 obj
+838
+endobj
+
+%% Original object ID: 70 0
+278 0 obj
+<<
+ /Subtype /Type1C
+ /Length 279 0 R
+>>
+stream
+
+C4Y[w`pmuщ٣RRckoI =
+ 5t4;}!,vݞȯ;Zqqt
+endstream
+endobj
+
+%QDF: ignore_newline
+279 0 obj
+453
+endobj
+
+%% Original object ID: 100 0
+280 0 obj
+<<
+ /Subtype /Type1C
+ /Length 281 0 R
+>>
+stream
+
+endstream
+endobj
+
+%QDF: ignore_newline
+281 0 obj
+744
+endobj
+
+%% Original object ID: 72 0
+282 0 obj
+<<
+ /Subtype /Type1C
+ /Length 283 0 R
+>>
+stream
+
+endstream
+endobj
+
+%QDF: ignore_newline
+283 0 obj
+532
+endobj
+
+%% Original object ID: 74 0
+284 0 obj
+<<
+ /Subtype /Type1C
+ /Length 285 0 R
+>>
+stream
+
+(
+
+4,#|<xv~i {d|c}
+endstream
+endobj
+
+285 0 obj
+286
+endobj
+
+%% Original object ID: 78 0
+286 0 obj
+<<
+ /Subtype /Type1C
+ /Length 287 0 R
+>>
+stream
+
+AdvPSMP10
+endstream
+endobj
+
+287 0 obj
+156
+endobj
+
+%% Original object ID: 99 0
+288 0 obj
+<<
+ /Subtype /Type1C
+ /Length 289 0 R
+>>
+stream
+
+endstream
+endobj
+
+289 0 obj
+262
+endobj
+
+xref
+0 290
+0000000000 65535 f
+0000000054 00000 n
+0000000335 00000 n
+0000000775 00000 n
+0000006979 00000 n
+0000007029 00000 n
+0000007106 00000 n
+0000008266 00000 n
+0000008359 00000 n
+0000008441 00000 n
+0000008575 00000 n
+0000008651 00000 n
+0000008728 00000 n
+0000008931 00000 n
+0000009133 00000 n
+0000009335 00000 n
+0000009535 00000 n
+0000009737 00000 n
+0000009940 00000 n
+0000010142 00000 n
+0000010341 00000 n
+0000010544 00000 n
+0000010747 00000 n
+0000010949 00000 n
+0000011152 00000 n
+0000011355 00000 n
+0000011557 00000 n
+0000011757 00000 n
+0000011956 00000 n
+0000012153 00000 n
+0000012294 00000 n
+0000012435 00000 n
+0000012576 00000 n
+0000012717 00000 n
+0000012858 00000 n
+0000013000 00000 n
+0000013141 00000 n
+0000013283 00000 n
+0000013424 00000 n
+0000013564 00000 n
+0000013728 00000 n
+0000016188 00000 n
+0000016262 00000 n
+0000018592 00000 n
+0000018666 00000 n
+0000021232 00000 n
+0000021306 00000 n
+0000023804 00000 n
+0000023878 00000 n
+0000026231 00000 n
+0000026305 00000 n
+0000028650 00000 n
+0000028724 00000 n
+0000031071 00000 n
+0000031145 00000 n
+0000032903 00000 n
+0000032954 00000 n
+0000036208 00000 n
+0000036259 00000 n
+0000036386 00000 n
+0000037571 00000 n
+0000038559 00000 n
+0000038921 00000 n
+0000039131 00000 n
+0000040054 00000 n
+0000040764 00000 n
+0000063857 00000 n
+0000063909 00000 n
+0000085744 00000 n
+0000085796 00000 n
+0000093316 00000 n
+0000093367 00000 n
+0000093565 00000 n
+0000093643 00000 n
+0000094688 00000 n
+0000095751 00000 n
+0000096416 00000 n
+0000096483 00000 n
+0000097556 00000 n
+0000097674 00000 n
+0000097780 00000 n
+0000097924 00000 n
+0000098067 00000 n
+0000098912 00000 n
+0000099500 00000 n
+0000100066 00000 n
+0000100116 00000 n
+0000100748 00000 n
+0000101218 00000 n
+0000101862 00000 n
+0000101912 00000 n
+0000102060 00000 n
+0000102375 00000 n
+0000102774 00000 n
+0000102824 00000 n
+0000102931 00000 n
+0000103237 00000 n
+0000103714 00000 n
+0000104117 00000 n
+0000104712 00000 n
+0000104762 00000 n
+0000105126 00000 n
+0000105975 00000 n
+0000106026 00000 n
+0000106228 00000 n
+0000106351 00000 n
+0000106553 00000 n
+0000106753 00000 n
+0000106949 00000 n
+0000107147 00000 n
+0000107347 00000 n
+0000107548 00000 n
+0000107749 00000 n
+0000107950 00000 n
+0000108152 00000 n
+0000108354 00000 n
+0000108554 00000 n
+0000108757 00000 n
+0000108958 00000 n
+0000109159 00000 n
+0000109362 00000 n
+0000109564 00000 n
+0000109766 00000 n
+0000109965 00000 n
+0000110167 00000 n
+0000110369 00000 n
+0000110571 00000 n
+0000110773 00000 n
+0000110975 00000 n
+0000111177 00000 n
+0000111380 00000 n
+0000111583 00000 n
+0000111786 00000 n
+0000111988 00000 n
+0000112186 00000 n
+0000112386 00000 n
+0000112553 00000 n
+0000143736 00000 n
+0000143788 00000 n
+0000143919 00000 n
+0000144172 00000 n
+0000144424 00000 n
+0000144581 00000 n
+0000144654 00000 n
+0000152176 00000 n
+0000152227 00000 n
+0000152429 00000 n
+0000152627 00000 n
+0000152830 00000 n
+0000153032 00000 n
+0000153231 00000 n
+0000153434 00000 n
+0000153635 00000 n
+0000153837 00000 n
+0000154040 00000 n
+0000154242 00000 n
+0000154442 00000 n
+0000154641 00000 n
+0000154841 00000 n
+0000155044 00000 n
+0000155244 00000 n
+0000155447 00000 n
+0000155650 00000 n
+0000155853 00000 n
+0000156056 00000 n
+0000156258 00000 n
+0000156459 00000 n
+0000156660 00000 n
+0000156863 00000 n
+0000157066 00000 n
+0000157269 00000 n
+0000157471 00000 n
+0000157673 00000 n
+0000157876 00000 n
+0000158021 00000 n
+0000158165 00000 n
+0000158311 00000 n
+0000158478 00000 n
+0000180381 00000 n
+0000180433 00000 n
+0000180662 00000 n
+0000182424 00000 n
+0000182990 00000 n
+0000183891 00000 n
+0000184118 00000 n
+0000184676 00000 n
+0000192198 00000 n
+0000192249 00000 n
+0000192451 00000 n
+0000192652 00000 n
+0000192854 00000 n
+0000193055 00000 n
+0000193200 00000 n
+0000193345 00000 n
+0000193511 00000 n
+0000206403 00000 n
+0000206456 00000 n
+0000213978 00000 n
+0000214030 00000 n
+0000214145 00000 n
+0000214261 00000 n
+0000214378 00000 n
+0000214495 00000 n
+0000214612 00000 n
+0000214729 00000 n
+0000214846 00000 n
+0000214963 00000 n
+0000215080 00000 n
+0000215197 00000 n
+0000215314 00000 n
+0000215431 00000 n
+0000215547 00000 n
+0000215664 00000 n
+0000215781 00000 n
+0000215898 00000 n
+0000216015 00000 n
+0000216132 00000 n
+0000216249 00000 n
+0000216366 00000 n
+0000216483 00000 n
+0000216600 00000 n
+0000216716 00000 n
+0000216830 00000 n
+0000216945 00000 n
+0000217060 00000 n
+0000217175 00000 n
+0000217291 00000 n
+0000217407 00000 n
+0000217524 00000 n
+0000217640 00000 n
+0000217757 00000 n
+0000217873 00000 n
+0000225897 00000 n
+0000225949 00000 n
+0000231808 00000 n
+0000231860 00000 n
+0000232976 00000 n
+0000233028 00000 n
+0000233368 00000 n
+0000233419 00000 n
+0000237637 00000 n
+0000237689 00000 n
+0000239377 00000 n
+0000239429 00000 n
+0000239569 00000 n
+0000239713 00000 n
+0000239876 00000 n
+0000240023 00000 n
+0000240155 00000 n
+0000240475 00000 n
+0000240859 00000 n
+0000240909 00000 n
+0000241199 00000 n
+0000244189 00000 n
+0000244240 00000 n
+0000259989 00000 n
+0000260041 00000 n
+0000260342 00000 n
+0000260549 00000 n
+0000260885 00000 n
+0000261312 00000 n
+0000261362 00000 n
+0000261668 00000 n
+0000261789 00000 n
+0000262091 00000 n
+0000262482 00000 n
+0000262532 00000 n
+0000262832 00000 n
+0000262968 00000 n
+0000263289 00000 n
+0000263680 00000 n
+0000263730 00000 n
+0000263830 00000 n
+0000263976 00000 n
+0000264124 00000 n
+0000264613 00000 n
+0000264663 00000 n
+0000265601 00000 n
+0000265651 00000 n
+0000266204 00000 n
+0000266255 00000 n
+0000267099 00000 n
+0000267149 00000 n
+0000267781 00000 n
+0000267831 00000 n
+0000268195 00000 n
+0000268245 00000 n
+0000268479 00000 n
+0000268529 00000 n
+0000268869 00000 n
+trailer <<
+ /Info 2 0 R
+ /Root 1 0 R
+ /Size 290
+ /ID [<58c077ab6e68acb6f6fe5af1520251db><09a0dd85736b17d36a1678744000e63f>]
+>>
+startxref
+268891
+%%EOF