<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[214331] trunk</title>
</head>
<body>
<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; }
#msg dl a { font-weight: bold}
#msg dl a:link { color:#fc3; }
#msg dl a:active { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/214331">214331</a></dd>
<dt>Author</dt> <dd>wenson_hsieh@apple.com</dd>
<dt>Date</dt> <dd>2017-03-23 18:43:02 -0700 (Thu, 23 Mar 2017)</dd>
</dl>
<h3>Log Message</h3>
<pre>Dragging on a large image should not revert to a file icon if data interaction is enabled
https://bugs.webkit.org/show_bug.cgi?id=170018
<rdar://problem/31184508>
Reviewed by Tim Horton.
Source/WebCore:
If data interaction is enabled, don't fall back to showing a file icon when initiating a drag on an image element.
New API tests: DataInteractionTests.LargeImageToTargetDiv
DataInteractionTests.AttachmentElementItemProviders
* page/DragController.cpp:
(WebCore::DragController::doImageDrag):
(WebCore::DragController::shouldUseCachedImageForDragImage):
* page/DragController.h:
Tools:
Add new tests for data interaction. LargeImageToTargetDiv verifies the change made in this patch, while
AttachmentElementItemProviders was a test that was previously removed due to <rdar://problem/31038797>.
* TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
* TestWebKitAPI/Tests/WebKit2Cocoa/large-red-square.png: Added.
* TestWebKitAPI/Tests/ios/DataInteractionTests.mm:
(TestWebKitAPI::TEST):</pre>
<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCorepageDragControllercpp">trunk/Source/WebCore/page/DragController.cpp</a></li>
<li><a href="#trunkSourceWebCorepageDragControllerh">trunk/Source/WebCore/page/DragController.h</a></li>
<li><a href="#trunkToolsChangeLog">trunk/Tools/ChangeLog</a></li>
<li><a href="#trunkToolsTestWebKitAPITestWebKitAPIxcodeprojprojectpbxproj">trunk/Tools/TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj</a></li>
<li><a href="#trunkToolsTestWebKitAPITestsiosDataInteractionTestsmm">trunk/Tools/TestWebKitAPI/Tests/ios/DataInteractionTests.mm</a></li>
</ul>
<h3>Added Paths</h3>
<ul>
<li><a href="#trunkToolsTestWebKitAPITestsWebKit2Cocoalargeredsquarepng">trunk/Tools/TestWebKitAPI/Tests/WebKit2Cocoa/large-red-square.png</a></li>
</ul>
</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (214330 => 214331)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2017-03-24 01:40:50 UTC (rev 214330)
+++ trunk/Source/WebCore/ChangeLog        2017-03-24 01:43:02 UTC (rev 214331)
</span><span class="lines">@@ -1,3 +1,21 @@
</span><ins>+2017-03-23 Wenson Hsieh <wenson_hsieh@apple.com>
+
+ Dragging on a large image should not revert to a file icon if data interaction is enabled
+ https://bugs.webkit.org/show_bug.cgi?id=170018
+ <rdar://problem/31184508>
+
+ Reviewed by Tim Horton.
+
+ If data interaction is enabled, don't fall back to showing a file icon when initiating a drag on an image element.
+
+ New API tests: DataInteractionTests.LargeImageToTargetDiv
+ DataInteractionTests.AttachmentElementItemProviders
+
+ * page/DragController.cpp:
+ (WebCore::DragController::doImageDrag):
+ (WebCore::DragController::shouldUseCachedImageForDragImage):
+ * page/DragController.h:
+
</ins><span class="cx"> 2017-03-23 Youenn Fablet <youenn@apple.com>
</span><span class="cx">
</span><span class="cx"> Rename RTCIceCandidateEvent to RTCPeerConnectionIceEvent
</span></span></pre></div>
<a id="trunkSourceWebCorepageDragControllercpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/page/DragController.cpp (214330 => 214331)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/page/DragController.cpp        2017-03-24 01:40:50 UTC (rev 214330)
+++ trunk/Source/WebCore/page/DragController.cpp        2017-03-24 01:43:02 UTC (rev 214331)
</span><span class="lines">@@ -1068,9 +1068,7 @@
</span><span class="cx"> ImageOrientationDescription orientationDescription(element.renderer()->shouldRespectImageOrientation(), element.renderer()->style().imageOrientation());
</span><span class="cx">
</span><span class="cx"> Image* image = getImage(element);
</span><del>- if (image && image->size().height() * image->size().width() <= MaxOriginalImageArea
- && (dragImage = DragImage { createDragImageFromImage(image, element.renderer() ? orientationDescription : ImageOrientationDescription()) })) {
-
</del><ins>+ if (image && shouldUseCachedImageForDragImage(*image) && (dragImage = DragImage { createDragImageFromImage(image, element.renderer() ? orientationDescription : ImageOrientationDescription()) })) {
</ins><span class="cx"> dragImage = DragImage { fitDragImageToMaxSize(dragImage.get(), layoutRect.size(), maxDragImageSize()) };
</span><span class="cx"> IntSize fittedSize = dragImageSize(dragImage.get());
</span><span class="cx">
</span><span class="lines">@@ -1164,6 +1162,16 @@
</span><span class="cx"> m_page.dragCaretController().setCaretPosition(frame->visiblePositionForPoint(framePoint));
</span><span class="cx"> }
</span><span class="cx">
</span><ins>+bool DragController::shouldUseCachedImageForDragImage(const Image& image) const
+{
+#if ENABLE(DATA_INTERACTION)
+ UNUSED_PARAM(image);
+ return true;
+#else
+ return image.size().height() * image.size().width() <= MaxOriginalImageArea;
+#endif
+}
+
</ins><span class="cx"> #endif // ENABLE(DRAG_SUPPORT)
</span><span class="cx">
</span><span class="cx"> } // namespace WebCore
</span></span></pre></div>
<a id="trunkSourceWebCorepageDragControllerh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/page/DragController.h (214330 => 214331)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/page/DragController.h        2017-03-24 01:40:50 UTC (rev 214330)
+++ trunk/Source/WebCore/page/DragController.h        2017-03-24 01:43:02 UTC (rev 214331)
</span><span class="lines">@@ -111,6 +111,7 @@
</span><span class="cx"> bool isCopyKeyDown(const DragData&);
</span><span class="cx">
</span><span class="cx"> void mouseMovedIntoDocument(Document*);
</span><ins>+ bool shouldUseCachedImageForDragImage(const Image&) const;
</ins><span class="cx">
</span><span class="cx"> void doImageDrag(Element&, const IntPoint&, const IntRect&, DataTransfer&, Frame&, IntPoint&);
</span><span class="cx"> void doSystemDrag(DragImage, const IntPoint&, const IntPoint&, const IntRect& dragImageBounds, DataTransfer&, Frame&, DragSourceAction);
</span></span></pre></div>
<a id="trunkToolsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Tools/ChangeLog (214330 => 214331)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Tools/ChangeLog        2017-03-24 01:40:50 UTC (rev 214330)
+++ trunk/Tools/ChangeLog        2017-03-24 01:43:02 UTC (rev 214331)
</span><span class="lines">@@ -1,3 +1,19 @@
</span><ins>+2017-03-23 Wenson Hsieh <wenson_hsieh@apple.com>
+
+ Dragging on a large image should not revert to a file icon if data interaction is enabled
+ https://bugs.webkit.org/show_bug.cgi?id=170018
+ <rdar://problem/31184508>
+
+ Reviewed by Tim Horton.
+
+ Add new tests for data interaction. LargeImageToTargetDiv verifies the change made in this patch, while
+ AttachmentElementItemProviders was a test that was previously removed due to <rdar://problem/31038797>.
+
+ * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
+ * TestWebKitAPI/Tests/WebKit2Cocoa/large-red-square.png: Added.
+ * TestWebKitAPI/Tests/ios/DataInteractionTests.mm:
+ (TestWebKitAPI::TEST):
+
</ins><span class="cx"> 2017-03-23 Fujii Hironori <Hironori.Fujii@sony.com>
</span><span class="cx">
</span><span class="cx"> Update WinCairoRequirements.zip
</span></span></pre></div>
<a id="trunkToolsTestWebKitAPITestWebKitAPIxcodeprojprojectpbxproj"></a>
<div class="modfile"><h4>Modified: trunk/Tools/TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj (214330 => 214331)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Tools/TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj        2017-03-24 01:40:50 UTC (rev 214330)
+++ trunk/Tools/TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj        2017-03-24 01:43:02 UTC (rev 214331)
</span><span class="lines">@@ -577,6 +577,7 @@
</span><span class="cx">                 ECA680CE1E68CC0900731D20 /* StringUtilities.mm in Sources */ = {isa = PBXBuildFile; fileRef = ECA680CD1E68CC0900731D20 /* StringUtilities.mm */; };
</span><span class="cx">                 F415086D1DA040C50044BE9B /* play-audio-on-click.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = F415086C1DA040C10044BE9B /* play-audio-on-click.html */; };
</span><span class="cx">                 F42DA5161D8CEFE400336F40 /* large-input-field-focus-onload.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = F42DA5151D8CEFDB00336F40 /* large-input-field-focus-onload.html */; };
</span><ins>+                F4538EF71E8473E600B5C953 /* large-red-square.png in Copy Resources */ = {isa = PBXBuildFile; fileRef = F4538EF01E846B4100B5C953 /* large-red-square.png */; };
</ins><span class="cx">                 F47728991E4AE3C1007ABF6A /* full-page-contenteditable.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = F47728981E4AE3AD007ABF6A /* full-page-contenteditable.html */; };
</span><span class="cx">                 F4856CA31E649EA8009D7EE7 /* attachment-element.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = F4856CA21E6498A8009D7EE7 /* attachment-element.html */; };
</span><span class="cx">                 F4BFA68E1E4AD08000154298 /* DragAndDropPasteboardTests.mm in Sources */ = {isa = PBXBuildFile; fileRef = F4BFA68C1E4AD08000154298 /* DragAndDropPasteboardTests.mm */; };
</span><span class="lines">@@ -658,6 +659,7 @@
</span><span class="cx">                         dstSubfolderSpec = 7;
</span><span class="cx">                         files = (
</span><span class="cx">                                 A12DDC001E8373E700CF6CAE /* rendered-image-excluding-overflow.html in Copy Resources */,
</span><ins>+                                F4538EF71E8473E600B5C953 /* large-red-square.png in Copy Resources */,
</ins><span class="cx">                                 C99BDF891E80980400C7170E /* autoplay-zero-volume-check.html in Copy Resources */,
</span><span class="cx">                                 A14AAB651E78DC5400C1ADC2 /* encrypted.pdf in Copy Resources */,
</span><span class="cx">                                 A1409AD91E7254D4004949D9 /* password-protected.pages in Copy Resources */,
</span><span class="lines">@@ -1437,6 +1439,7 @@
</span><span class="cx">                 F3FC3EE213678B7300126A65 /* libgtest.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libgtest.a; sourceTree = BUILT_PRODUCTS_DIR; };
</span><span class="cx">                 F415086C1DA040C10044BE9B /* play-audio-on-click.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "play-audio-on-click.html"; sourceTree = "<group>"; };
</span><span class="cx">                 F42DA5151D8CEFDB00336F40 /* large-input-field-focus-onload.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = "large-input-field-focus-onload.html"; path = "Tests/WebKit2Cocoa/large-input-field-focus-onload.html"; sourceTree = SOURCE_ROOT; };
</span><ins>+                F4538EF01E846B4100B5C953 /* large-red-square.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "large-red-square.png"; sourceTree = "<group>"; };
</ins><span class="cx">                 F47728981E4AE3AD007ABF6A /* full-page-contenteditable.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "full-page-contenteditable.html"; sourceTree = "<group>"; };
</span><span class="cx">                 F4856CA21E6498A8009D7EE7 /* attachment-element.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "attachment-element.html"; sourceTree = "<group>"; };
</span><span class="cx">                 F4BFA68C1E4AD08000154298 /* DragAndDropPasteboardTests.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = DragAndDropPasteboardTests.mm; sourceTree = "<group>"; };
</span><span class="lines">@@ -1801,6 +1804,7 @@
</span><span class="cx">                 A16F66B81C40E9E100BD4D24 /* Resources */ = {
</span><span class="cx">                         isa = PBXGroup;
</span><span class="cx">                         children = (
</span><ins>+                                F4538EF01E846B4100B5C953 /* large-red-square.png */,
</ins><span class="cx">                                 F4C2AB211DD6D94100E06D5B /* enormous-video-with-sound.html */,
</span><span class="cx">                                 F415086C1DA040C10044BE9B /* play-audio-on-click.html */,
</span><span class="cx">                                 F4F137911D9B6832002BEC57 /* large-video-test-now-playing.html */,
</span></span></pre></div>
<a id="trunkToolsTestWebKitAPITestsWebKit2Cocoalargeredsquarepng"></a>
<div class="addfile"><h4>Added: trunk/Tools/TestWebKitAPI/Tests/WebKit2Cocoa/large-red-square.png (0 => 214331)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Tools/TestWebKitAPI/Tests/WebKit2Cocoa/large-red-square.png         (rev 0)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKit2Cocoa/large-red-square.png        2017-03-24 01:43:02 UTC (rev 214331)
</span><span class="lines">@@ -0,0 +1,132 @@
</span><ins>+\x89PNG
+
++IHDR\xD0\xD0\x9A8\xC4ysRGB\xAE\xCE\xE9iDOT\xE8(\xE8\xE8\xA0j        {\xEB\xE0@IDATx\xECܱ+\xC001\x{DFF4}|\x9EC,2@^\x9A\x873;\xB3g\xC00\xC00\xC00\xC00\xC00\xC00\xC00p\xDD\xC0\?\xEF\xEF#\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xF0+\xD0\xDD\xC0\xF7`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ
`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80
`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x8
0`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\
x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x8
1Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80
`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x
80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`
\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80
`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ
`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\
x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80
`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80
`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x8
0\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `
\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80
`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80
`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x
80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81
Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80
`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x8
0`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\
x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80
`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ
`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x
80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`
\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80a:@IDAT`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x
80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`
\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x
81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x8
0`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\
x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80
`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80
`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\xE0\xB1g\xC7\xC1\xFA\xB7&\xC8:̅`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80
`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC
00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\
x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\
xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x8
0`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\
xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x8
0`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC0
0\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x8
0`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\
xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80
`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC0
0\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\
x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0
l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80
\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0
]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\
x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x
81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0
\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xB2y\xAC\xE5
IDAT0Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x
806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l
\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\
x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0
]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x
84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x8
1`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\
xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80
`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC0
0\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\
x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC0
0\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\
x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC0
0\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xFF\xFF\xC76M@IDAT\xECܱ+\xC001\x{DFF4}|\x9EC,2@^\x9A\x873;\xB3g\xC00\xC00\xC00\xC00\xC00\xC00\xC00p\xDD\xC0\?\xEF\xEF#\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xF0+\xD0\xDD\xC0\xF7`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ
`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\
x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80
`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80
`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x8
0\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `
\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80
`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80
`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x
80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81
Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80
`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x8
0`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\
x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80
`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ
`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x
80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`
\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80
`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80
\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\
x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80
`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80
`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x8
0`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81
Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80
`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80
`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`o5\xEE\xE3@IDAT\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`
\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80
`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80
`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81
Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80
`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80
`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x8
0`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\
x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81Ѕ `\x80`\x80`\x80`\x80`\x80`\xE0\xB5g\xC7\xC1\xFA\xB7&\xC8:̅`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC0
0\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\
x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC0
0\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\
x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC0
0\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80
`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC0
0\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80
`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC0
0\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80
`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\x
C00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80
`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC0
0\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x8
0\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC
00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x80
6`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC
0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81
.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]
B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC006\xB9\x8A IDATЅ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x8
0``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\
xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x8
1+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC0
0Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\
xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\
x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0
\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x
80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC0
0\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x
80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00
\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80
`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC0
0\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+\xE8B0\xC00\xC00\xC00\xC00\xC00\xC00\xC0\xC0t!\x81`\x80`\x80`\x80`\x80`\x80`\x80``\xBA\x84\xC00\xC00\xC00\xC00\xC00\xC00\xC00\xB0]B`\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81.!0\xC00\xC00\xC00\xC00\xC00\xC00\xC0l\xC0@\x82`\x80`\x80`\x80`\x80`\x80`\x80`\x806`\xA0A0\xC00\xC00\xC00\xC00\xC00\xC00\xC00Ѕ `\x80`\x80`\x80`\x80`\x80`\x80`\x80\x81+G\xEAR.\xB4\x81\x99IEND\xAEB`\x82
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkToolsTestWebKitAPITestsiosDataInteractionTestsmm"></a>
<div class="modfile"><h4>Modified: trunk/Tools/TestWebKitAPI/Tests/ios/DataInteractionTests.mm (214330 => 214331)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Tools/TestWebKitAPI/Tests/ios/DataInteractionTests.mm        2017-03-24 01:40:50 UTC (rev 214330)
+++ trunk/Tools/TestWebKitAPI/Tests/ios/DataInteractionTests.mm        2017-03-24 01:43:02 UTC (rev 214331)
</span><span class="lines">@@ -33,6 +33,7 @@
</span><span class="cx"> #import "WKWebViewConfigurationExtras.h"
</span><span class="cx"> #import <MobileCoreServices/MobileCoreServices.h>
</span><span class="cx"> #import <UIKit/UIItemProvider_Private.h>
</span><ins>+#import <WebKit/WKPreferencesPrivate.h>
</ins><span class="cx"> #import <WebKit/WKWebViewConfigurationPrivate.h>
</span><span class="cx">
</span><span class="cx"> @implementation TestWKWebView (DataInteractionTests)
</span><span class="lines">@@ -251,6 +252,46 @@
</span><span class="cx"> EXPECT_TRUE([[dataInteractionSimulator finalSelectionRects] isEqualToArray:@[ makeCGRectValue(1, 201, 215, 174) ]]);
</span><span class="cx"> }
</span><span class="cx">
</span><ins>+TEST(DataInteractionTests, AttachmentElementItemProviders)
+{
+ RetainPtr<WKWebViewConfiguration> configuration = [WKWebViewConfiguration testwebkitapi_configurationWithTestPlugInClassName:@"BundleEditingDelegatePlugIn"];
+ [configuration _setAttachmentElementEnabled:YES];
+ auto webView = adoptNS([[TestWKWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 500) configuration:configuration.get()]);
+ [webView synchronouslyLoadTestPageNamed:@"attachment-element"];
+
+ NSString *injectedTypeIdentifier = @"org.webkit.data";
+ __block RetainPtr<NSString> injectedString;
+ auto dataInteractionSimulator = adoptNS([[DataInteractionSimulator alloc] initWithWebView:webView.get()]);
+ [dataInteractionSimulator setConvertItemProvidersBlock:^NSArray *(NSArray *originalItemProviders)
+ {
+ for (UIItemProvider *provider in originalItemProviders) {
+ NSData *injectedData = [provider copyDataRepresentationForTypeIdentifier:injectedTypeIdentifier error:nil];
+ if (!injectedData.length)
+ continue;
+ injectedString = adoptNS([[NSString alloc] initWithData:injectedData encoding:NSUTF8StringEncoding]);
+ break;
+ }
+ return originalItemProviders;
+ }];
+
+ [dataInteractionSimulator runFrom:CGPointMake(50, 50) to:CGPointMake(50, 400)];
+
+ EXPECT_WK_STREQ("hello", [injectedString UTF8String]);
+}
+
+TEST(DataInteractionTests, LargeImageToTargetDiv)
+{
+ auto testWebViewConfiguration = adoptNS([[WKWebViewConfiguration alloc] init]);
+ [[testWebViewConfiguration preferences] _setLargeImageAsyncDecodingEnabled:NO];
+
+ RetainPtr<TestWKWebView> webView = adoptNS([[TestWKWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 500) configuration:testWebViewConfiguration.get()]);
+ [webView synchronouslyLoadTestPageNamed:@"div-and-large-image"];
+
+ RetainPtr<DataInteractionSimulator> dataInteractionSimulator = adoptNS([[DataInteractionSimulator alloc] initWithWebView:webView.get()]);
+ [dataInteractionSimulator runFrom:CGPointMake(200, 400) to:CGPointMake(200, 150)];
+ EXPECT_WK_STREQ("PASS", [webView stringByEvaluatingJavaScript:@"target.textContent"].UTF8String);
+}
+
</ins><span class="cx"> } // namespace TestWebKitAPI
</span><span class="cx">
</span><span class="cx"> #endif // ENABLE(DATA_INTERACTION)
</span></span></pre>
</div>
</div>
</body>
</html>